home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / PCGAMN6.ZIP / BACKGMMN next >
Text File  |  1986-09-08  |  452b  |  23 lines

  1. #  makefile for PC-Gammon IV produces BACKGMMN.EXE
  2. #
  3. backgmmn.exe: backgmmn.h   #alter backgmmn.h to force a total compile
  4.      cl -Fe$* bg0.c bg1.c bg2.c bg3.c -link ciao /EX
  5.      beep
  6.  
  7. bg0.obj: bg0.c
  8.      cl -c bg0.c
  9.  
  10. bg1.obj: bg1.c
  11.      cl -c bg1.c
  12.  
  13. bg2.obj: bg2.c
  14.      cl -c bg2.c
  15.  
  16. bg3.obj: bg3.c
  17.      cl -c bg3.c
  18.  
  19. backgmmn.exe: bg0.obj bg1.obj bg2.obj bg3.obj ciao.lib
  20.      cl -Fe$* bg0 bg1 bg2 bg3 -link ciao /EX
  21.      beep
  22.  
  23.