home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / audio / mcipuzzl / makefile next >
Makefile  |  1995-11-16  |  1KB  |  54 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <win32.mak>
  4.  
  5. !if "$(CPU)" == "i386" # .syms are useful for Win95
  6. SYM = mcipuzzl.sym
  7. !endif
  8.  
  9. all: mcipuzzl.exe $(SYM)
  10.  
  11. OBJS= mcipuzzl.obj puzzproc.obj puzzle.obj
  12.  
  13. OTHERCLOPTS=-DWIN32_LEAN_AND_MEAN -nologo -I. -I..\include
  14. OTHERRCOPTS=-DWIN32_LEAN_AND_MEAN -I. -I..\include
  15.  
  16.  
  17. # Update the resource if necessary
  18.  
  19. mcipuzzl.res: mcipuzzl.rc mcipuzzl.h mcipuzzl.rcv mcipuzzl.ico
  20.     $(rc) -r -DWIN32 $(OTHERRCOPTS) mcipuzzl.rc
  21.  
  22.  
  23. # Update the object file if necessary
  24.  
  25. mcipuzzl.obj: mcipuzzl.c mcipuzzl.h puzzle.h puzzproc.h
  26.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) mcipuzzl.c
  27.  
  28. puzzle.obj: puzzle.c puzzle.h
  29.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) puzzle.c
  30.  
  31. puzzproc.obj: puzzproc.c puzzproc.h puzzle.h
  32.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) puzzproc.c
  33.  
  34.  
  35. # Update the executable file if necessary, and if so, add the resource back in.
  36.  
  37. mcipuzzl.exe mcipuzzl.map:  $(OBJS) mcipuzzl.res
  38.     $(link) $(linkdebug) $(guilflags) -out:mcipuzzl.exe $(OBJS) mcipuzzl.res $(guilibs) \
  39.      winmm.lib vfw32.lib -map:$*.map
  40.     
  41. mcipuzzl.sym:    $*.map
  42.     mapsym $*.map
  43.  
  44. clean:
  45.     @if exist mcipuzzl.exe del mcipuzzl.exe
  46.     @if exist *.obj del *.obj
  47.     @if exist *.map del *.map
  48.     @if exist *.sym del *.sym
  49.     @if exist *.res del *.res
  50.     @if exist *.pdb del *.pdb
  51.     @if exist *.exp del *.exp
  52.     @if exist *.lib del *.lib
  53.  
  54.