home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 2.ddi / CHESS.ZIP / MAKEFILE < prev    next >
Encoding:
Text File  |  1992-06-10  |  1.3 KB  |  61 lines

  1. #
  2. # ObjectWindows - (C) Copyright 1992 by Borland International
  3. #
  4.  
  5. MODEL = l
  6.  
  7. !if !$d(BCROOT)
  8. !include "..\bcroot.inc"
  9. !endif
  10.  
  11. !include "..\makefile.inc"
  12.  
  13. OBJS = wchess.obj talk.obj board.obj display.obj info.obj small.obj \
  14. timelib.obj movgen.obj search.obj evalu.obj saverest.obj edit.obj \
  15. colors.obj drag.obj pvalue.obj
  16.  
  17. wchess.exe: turboc.cfg wchess.rsp $(OBJS) wchess.res
  18.      $(TLINK) $(LFLAGS) @wchess.rsp
  19.      $(RC) -30 -K wchess.res wchess.exe
  20.  
  21. wchess.res: wchess.rc bpawn.bmp brook.bmp bkngt.bmp bbishop.bmp bqueen.bmp bking.bmp wpawn.bmp wrook.bmp wkngt.bmp wbishop.bmp wqueen.bmp wking.bmp pmask.bmp rmask.bmp ktmask.bmp bmask.bmp qmask.bmp kmask.bmp bkbrush.bmp
  22.  
  23. wchess.rsp: makefile ..\makefile.inc turboc.cfg
  24.        copy &&!
  25. /c $(BCLIBDIR)\c0w$(MODEL)+
  26. .\wchess.obj+
  27. .\talk.obj+
  28. .\board.obj+
  29. .\display.obj+
  30. .\info.obj+
  31. .\small.obj+
  32. .\timelib.obj+
  33. .\movgen.obj+
  34. .\search.obj+
  35. .\evalu.obj+
  36. .\saverest.obj+
  37. .\edit.obj+
  38. .\colors.obj+
  39. .\drag.obj+
  40. .\pvalue.obj
  41. wchess
  42. wchess
  43. $(BCROOT)\lib\bwcc.lib+
  44. $(OWLLIBS)+
  45. $(STDLIBS)
  46. .\wchess.def
  47. ! wchess.rsp
  48.  
  49. turboc.cfg: makefile ..\makefile.inc
  50.     echo -I$(INCLUDE) >turboc.cfg
  51.  
  52. clean:
  53.     del *.obj
  54.     del *.exe
  55.     del *.res
  56.     del *.dll
  57.     del *.map
  58.     del *.sym
  59.         del turboc.cfg
  60.  
  61.