home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / propsheet / comctl / wizard / makefile next >
Encoding:
Makefile  |  1995-02-03  |  590 b   |  24 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. TARGETOS=WIN95
  4. APPVER=4.0
  5.  
  6. !include <win32.mak>
  7.  
  8. all: wizard.exe
  9.  
  10. # Update the resource if necessary
  11.  
  12. wizard.res: wizard.rc wizard.h resource.h
  13.     $(rc) $(rcflags) $(rcvars) wizard.rc
  14.  
  15. # Update the object file if necessary
  16.  
  17. wizard.obj: wizard.c wizard.h
  18.     $(cc) $(cflags) $(cvars) $(cdebug) wizard.c
  19.  
  20. # Update the executable file if necessary, and if so, add the resource back in.
  21.  
  22. wizard.exe: wizard.obj wizard.res
  23.     $(link) $(linkdebug) $(guiflags) -out:wizard.exe wizard.obj wizard.res $(guilibs) comctl32.lib
  24.