home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / v / vol1n7.zip / GAME.MAK < prev    next >
Text File  |  1993-02-25  |  759b  |  45 lines

  1. # IBM Developer's Workframe/2 Make File Creation run at 22:29:40 on 02/25/93
  2.  
  3. # Make File Creation run in directory:
  4. #   C:\GAME\VOL1N7;
  5.  
  6. .SUFFIXES:
  7.  
  8. .SUFFIXES: .c .rc
  9.  
  10. ALL: GAME.EXE \
  11.      GAME.RES
  12.  
  13. game.exe:  \
  14.   dialog.res \
  15.   files.OBJ \
  16.   GAME.OBJ \
  17.   GAME.RES \
  18.   HEXES.OBJ \
  19.   menu.OBJ \
  20.   TARGET.OBJ \
  21.   GAME.MAK
  22.    @REM @<<GAME.@0
  23.      /CO /ST:8192 /NOL /BAT /PM:PM +
  24.      files.OBJ +
  25.      GAME.OBJ +
  26.      HEXES.OBJ +
  27.      menu.OBJ +
  28.      TARGET.OBJ
  29.      game.exe
  30.      
  31.      
  32.      ;
  33. <<
  34.    LINK386.EXE @GAME.@0
  35.    RC dialog.res game.exe
  36.    RC GAME.RES game.exe
  37.  
  38. {.}.rc.res:
  39.    RC -r .\$*.RC
  40.  
  41. {.}.c.obj:
  42.    ICC.EXE /Ss /Q /Kbcap /V"Volume 1, Issue 7 - April 1993" /Ti /O /Gm /Gs /C .\$*.c
  43.  
  44. !include GAME.DEP
  45.