home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 7.ddi / SWAT.ZIP / MAKEFILE < prev    next >
Encoding:
Text File  |  1992-06-10  |  840 b   |  42 lines

  1. #
  2. # ObjectWindows - (C) Copyright 1992 by Borland International
  3. #
  4.  
  5. !if !$d(BCROOT)
  6. !include "..\bcroot.inc"
  7. !endif
  8.  
  9. !include "..\makefile.inc"
  10.  
  11. !if $d(swat2)
  12. swatRES = swat2.res
  13. !else
  14. swatRES = swat.res
  15. !endif
  16.  
  17. swat.exe: turboc.cfg swat.obj $(swatRES)
  18.      $(TLINK) $(LFLAGS) $(BCLIBDIR)\c0w$(MODEL) swat,swat,,@&&!
  19. $(OWLLIBS) $(STDLIBS)
  20. !,$(OWLROOT)\lib\owl.def
  21.      $(RC) -30 -K $(swatRES) swat.exe
  22.  
  23. swat.res : swat.rc board.bmp live.bmp dead.bmp gameover.bmp critter.ico\
  24.          malet.cur maletdow.cur
  25.  
  26. swat2.res : swat2.rc board2.bmp live2.bmp dead2.bmp gameove2.bmp critter2.ico\
  27.          malet2.cur maletdo2.cur
  28.  
  29. turboc.cfg: makefile ..\makefile.inc
  30.     echo -I$(INCLUDE) >turboc.cfg
  31.  
  32. clean:
  33.     del *.obj
  34.     del *.exe
  35.     del *.res
  36.     del *.dll
  37.     del *.lib
  38.     del *.map
  39.     del *.sym
  40.         del turboc.cfg
  41.  
  42.