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 / mciplay / makefile next >
Makefile  |  1995-11-16  |  1KB  |  48 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 = mciplay.sym
  7. !endif
  8.  
  9. all: mciplay.exe $(SYM)
  10.  
  11. OBJS= mciplay.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. mciplay.res: mciplay.rc mciplay.h mciplay.rcv mciplay.ico
  20.     $(rc) -r -DWIN32 $(OTHERRCOPTS) mciplay.rc
  21.  
  22.  
  23.  
  24. # Update the object file if necessary
  25.  
  26. mciplay.obj: mciplay.c mciplay.h
  27.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) mciplay.c
  28.  
  29. # Update the executable file if necessary, and if so, add the resource back in.
  30.  
  31. mciplay.exe mciplay.map:  $(OBJS) mciplay.res
  32.     $(link) $(linkdebug) $(guilflags) -out:mciplay.exe $(OBJS) mciplay.res $(guilibs) \
  33.      winmm.lib vfw32.lib -map:$*.map
  34.     
  35. mciplay.sym:    $*.map
  36.     mapsym $*.map
  37.  
  38. clean:
  39.     @if exist mciplay.exe del mciplay.exe
  40.     @if exist *.obj del *.obj
  41.     @if exist *.map del *.map
  42.     @if exist *.sym del *.sym
  43.     @if exist *.res del *.res
  44.     @if exist *.pdb del *.pdb
  45.     @if exist *.exp del *.exp
  46.     @if exist *.lib del *.lib
  47.  
  48.