home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / snmp / snmputil / makefile next >
Makefile  |  1997-10-15  |  491b  |  21 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. TARGETOS=WINNT
  4.  
  5. !include <ntwin32.mak>
  6.  
  7. !if "$(CPU)" == "i386"
  8. cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
  9. !else
  10. cflags = $(cflags) -D_CRTAPI1= -D_CRTAPI2=
  11. !endif
  12.  
  13. all: snmputil.exe
  14.  
  15. snmputil.obj: snmputil.c
  16.     $(cc) $(cflags) $(cvars) $(cdebug) snmputil.c
  17.  
  18. snmputil.exe: snmputil.obj
  19.     $(link) $(linkdebug) $(conflags) -out:snmputil.exe snmputil.obj $(conlibsdll) \
  20.     advapi32.lib snmpapi.lib mgmtapi.lib
  21.