home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / PCTV2N6.ZIP / BEZIER.ZIP / BEZ < prev   
Encoding:
Text File  |  1991-09-08  |  929 b   |  27 lines

  1. # BEZ : Make file for BEZ.C 
  2. # To make program : NMAKE BEZ
  3.  
  4. # Linker and Resource Compiler: bez.exe contingent on bez.obj, bez.def, bez.res
  5. # Linker options as follows :
  6. # /A:16 : align on paragraphs
  7. # /NOD  : don't search default libraries (use only those in link response file)
  8. bez.exe: bez.obj bez.def bez.res
  9.     link /A:16 /NOD bez,,nul.map, libw slibcew, bez.def
  10.     rc bez.res
  11.  
  12. # Microsoft C Compiler : bez.obj contingent on bez.c, bez.h
  13. # Compiler options as follows :
  14. # -c  : compile only
  15. # -Gs : remove stack probe before function calls
  16. # -Gw : for MS Windows
  17. # -W3 : highest warning level (flags ANSI incompatibilities)
  18. # -AS : small model
  19. # -Zp : pack structures (required by MS Windows)
  20. # -Ze : enable extra-ANSI language extensions
  21. bez.obj: bez.c bez.h
  22.     cl -c -Gsw -W3 -AS -Zpe bez.c
  23.  
  24. # Resource Compiler : bez.res contingent on bez.rc, bez.h
  25. bez.res: bez.rc bez.h
  26.     rc -r -v bez.rc
  27.