home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / rpc / mazelord / makefile < prev    next >
Makefile  |  1994-01-17  |  443b  |  17 lines

  1. !include <ntwin32.mak>
  2.  
  3. all: maze.exe
  4.  
  5. # Update the resources if necessary
  6.  
  7. maze.res: maze.rc
  8.     rc -DWIN32 -r maze.rc
  9.  
  10. maze.exe: bitmap.obj draw.obj drones.obj initmaze.obj network.obj readsgrd.obj \
  11.     mazewnd.obj mazedlg.obj scorewnd.obj textwnd.obj topwnd.obj maze.res \
  12.         maze.obj
  13.   $(link) $(linkdebug) $(guiflags) -out:$*.exe $** $(guilibs) winmm.lib advapi32.lib
  14.  
  15. .c.obj:
  16.   $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  17.