You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
350 B
14 lines
350 B
# Nmake macros for building Windows 32-Bit apps
|
|
|
|
TARGETOS=WINNT
|
|
|
|
!include <ntwin32.mak>
|
|
|
|
all: snmputil.exe
|
|
|
|
snmputil.obj: snmputil.c
|
|
$(cc) $(cflags) $(cvars) $(cdebug) snmputil.c
|
|
|
|
snmputil.exe: snmputil.obj
|
|
$(link) $(linkdebug) $(conflags) -out:snmputil.exe snmputil.obj $(conlibsdll) \
|
|
advapi32.lib snmpapi.lib mgmtapi.lib
|