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 / dbmon / makefile < prev    next >
Makefile  |  1995-02-03  |  258b  |  14 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. TARGETOS = WINNT
  4.  
  5. !include <ntwin32.mak>
  6.  
  7. all: dbmon.exe
  8.  
  9. dbmon.obj: dbmon.c
  10.     $(cc) $(cflags) $(cvars) dbmon.c
  11.  
  12. dbmon.exe: dbmon.obj
  13.     $(link) $(conflags) -out:dbmon.exe dbmon.obj $(conlibs)
  14.