home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / CONTRAST.ZIP / CONTRAST.MAK < prev    next >
Text File  |  1991-01-14  |  1KB  |  30 lines

  1.  
  2. ALL:CONTRAST.EXE CONTRAST.HLP
  3.  
  4. CONTRAST.HLP:CONTRAST.IPF
  5.         IPFC CONTRAST.IPF
  6.  
  7. # options: /Alfw recommended model for multi-threaded app
  8. #          /c  compile only
  9. #          /Fs produce source listing file
  10. #          /G2 produce 286 code
  11. #          /Gc function-calling sequence
  12. #          /Gs removes stack probes
  13. #          /Gw PM application
  14. #          /Od disable optimisation
  15. #          /Os optimisation for code size - does best at speed as well
  16. #          /W3 warning level 3
  17. #          /Zi prepare for CodeView
  18. CONTRAST.OBJ: CONTRAST.C CONTRAST.H
  19.         CL /Alfw /c /Fs /G2 /Gc /Gs /Gw /Os /W3 CONTRAST.C
  20.  
  21. CONTRAST.RES: CONTRAST.RC CONTRAST.ICO CONTRAST.H
  22.         RC -r CONTRAST.RC
  23.  
  24. # options: /A:16 align on 16 byte boundaries
  25. #          /CO link for CodeView
  26. #          /NOD don't use default libraries
  27. CONTRAST.EXE: CONTRAST.OBJ CONTRAST.DEF CONTRAST.RES
  28.         LINK CONTRAST.OBJ /A:16 ,,, /NOD LLIBCMT.LIB OS2.LIB, CONTRAST.DEF
  29.         RC CONTRAST.RES
  30.