home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / winsock / appletalk / makefile next >
Encoding:
Makefile  |  1996-07-05  |  262 b   |  14 lines

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