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 / mixapp / makefile < prev    next >
Makefile  |  1996-01-11  |  3KB  |  90 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. APPVER=4.0
  4.  
  5. !include <win32.mak>
  6.  
  7. !if "$(CPU)" == "i386" # .syms are useful for Win95
  8. SYM = mixapp.sym
  9. !endif
  10.  
  11. all: mixapp.exe $(SYM)
  12.  
  13. OBJS=      mixapp.obj mainit.obj malines.obj mactrls.obj \
  14.            mameter.obj maswitch.obj mafader.obj malist.obj tlb.obj \
  15.            debug.obj macustom.obj manumber.obj maslider.obj matime.obj
  16.  
  17. OTHERCLOPTS=-DWIN32_LEAN_AND_MEAN -nologo -I. -I..\include
  18. OTHERRCOPTS=-DWIN32_LEAN_AND_MEAN -I. -I..\include
  19.  
  20.  
  21. # Update the resource if necessary
  22.  
  23. mixapp.res: mixapp.rc mixapp.h mixapp.rcv mixapp.ico
  24.     $(rc) -r -DWIN32 $(OTHERRCOPTS) mixapp.rc
  25.  
  26.  
  27. # Update the object file if necessary
  28.  
  29. mainit.obj: mainit.c mixapp.h debug.h
  30.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) mainit.c
  31.  
  32. mactrls.obj: mactrls.c mixapp.h debug.h
  33.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) mactrls.c
  34.  
  35. malines.obj: malines.c mixapp.h debug.h
  36.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) malines.c
  37.  
  38. mameter.obj: mameter.c muldiv32.h mixapp.h debug.h
  39.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) mameter.c
  40.  
  41. maswitch.obj: maswitch.c mixapp.h debug.h
  42.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) maswitch.c
  43.  
  44. mixapp.obj: mixapp.c mixapp.h debug.h
  45.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) mixapp.c
  46.  
  47. debug.obj: debug.c debug.h
  48.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) debug.c
  49.  
  50. malist.obj: malist.c mixapp.h debug.h
  51.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) malist.c
  52.  
  53. tlb.obj: tlb.c tlb.h
  54.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) tlb.c
  55.  
  56. mafader.obj: mafader.c muldiv32.h mixapp.h debug.h
  57.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) mafader.c
  58.  
  59. macustom.obj: macustom.c
  60.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) macustom.c
  61.  
  62. manumber.obj: manumber.c
  63.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) manumber.c
  64.  
  65. maslider.obj: maslider.c
  66.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) maslider.c
  67.  
  68. matime.obj: matime.c
  69.     $(cc) $(cdebug) $(cflags) $(cvars) $(OTHERCLOPTS) matime.c
  70.  
  71.  
  72. # Update the executable file if necessary, and if so, add the resource back in.
  73.  
  74. mixapp.exe mixapp.map:  $(OBJS) mixapp.res
  75.     $(link) $(linkdebug) $(guiflags) -out:mixapp.exe $(OBJS) mixapp.res \
  76.         $(guilibs) winmm.lib -map:$*.map
  77.     
  78. mixapp.sym:    $*.map
  79.     mapsym $*.map
  80.  
  81. clean:
  82.     @if exist mixapp.exe del mixapp.exe
  83.     @if exist *.obj del *.obj
  84.     @if exist *.map del *.map
  85.     @if exist *.sym del *.sym
  86.     @if exist *.res del *.res
  87.     @if exist *.pdb del *.pdb
  88.     @if exist *.exp del *.exp
  89.     @if exist *.lib del *.lib
  90.