home *** CD-ROM | disk | FTP | other *** search
/ Windows Shareware GOLD / NuclearComputingVol3No1.cdr / _bbs2 / f1246.zip / TERMITE < prev    next >
Text File  |  1990-09-20  |  620b  |  37 lines

  1. ##
  2. ## Make file for TERMITE.EXE
  3. ##
  4.  
  5. CARGS = -Gsw -Oas -W2 -Zpe -c
  6. LARGS = /NOD
  7.  
  8. ##
  9.  
  10. all: termite.exe
  11.  
  12. ##
  13.  
  14. termite.obj: termite.c termite.h fileopen.h
  15.     cl $(CARGS) termite.c
  16.  
  17. termtool.obj: termtool.c termite.h
  18.     cl $(CARGS) termtool.c
  19.  
  20. termite.res: termite.rc termite.h fileopen.h
  21.     rc -r termite.rc
  22.  
  23. ##
  24.  
  25. fileopen.obj: fileopen.c fileopen.h
  26.     cl $(CARGS) fileopen.c
  27.  
  28. ##
  29.  
  30. termite.exe:: termite.obj termtool.obj fileopen.obj termite.def
  31.     link $(LARGS) termite termtool fileopen, , , slibcew libw, termite.def
  32.     rc termite.res
  33.  
  34. termite.exe:: termite.res
  35.     rc termite.res
  36.  
  37.