home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / io / fwatch / makefile < prev    next >
Makefile  |  1997-06-05  |  297b  |  12 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <win32.mak>
  4.  
  5. all: fwatch.exe
  6.  
  7. fwatch.obj: fwatch.c
  8.     $(cc) $(cflags) $(cdebug) $(cvars) fwatch.c -D_WIN32_WINNT=0x0400
  9.  
  10. fwatch.exe: fwatch.obj
  11.     $(link) $(ldebug) $(conflags) -out:fwatch.exe fwatch.obj $(conlibs) user32.lib
  12.