home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / winnt / switcher / makefile next >
Makefile  |  1995-02-03  |  421b  |  18 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. TARGETOS=WINNT
  4.  
  5. !include <ntwin32.mak>
  6.  
  7. all: switcher.exe
  8.  
  9. switcher.res: switcher.rc switcher.h
  10.     rc -r -fo switcher.res switcher.rc
  11.  
  12. switcher.obj: switcher.c switcher.h
  13.   $(cc) $(cdebug) $(cflags) $(cvars) switcher.c
  14.  
  15. switcher.exe: switcher.obj switcher.res
  16.   $(link) $(linkdebug) $(guiflags) -out:switcher.exe \
  17.   switcher.obj switcher.res $(guilibs)
  18.