home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / dbmsg / mapi / simplemapi / makefile next >
Makefile  |  1994-01-17  |  727b  |  27 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <ntwin32.mak>
  4.  
  5. cflags=$(cflags) -DDEVL=1
  6.  
  7. all: MapiApp.exe
  8.  
  9. # Update the resource if necessary
  10.  
  11. MapiApp.res: MapiApp.rc MapiApp.h MapiApp.ico
  12.     $(rc) $(rcvars) -r MapiApp.rc
  13.  
  14. # Update the object files if necessary
  15.  
  16. MapiApp.obj: MapiApp.c MapiApp.h
  17.     $(cc) $(cdebug) $(cflags) $(cvars) MapiApp.c
  18.  
  19. Mapinit.obj: Mapinit.c MapiApp.h
  20.     $(cc) $(cdebug) $(cflags) $(cvars) Mapinit.c
  21.  
  22. # Update the executable file if necessary, and if so, add the resource back in.
  23.  
  24. MapiApp.exe: MapiApp.obj Mapinit.obj MapiApp.res makefile
  25.     $(link) $(linkdebug)  $(guiflags) -out:MapiApp.exe\
  26.     MapiApp.obj Mapinit.obj MapiApp.res version.lib $(guilibsmt)
  27.