##############################################################################
#	COPYRIGHT 1986-1991 FTP SOFTWARE, INC.
#
# Makefile for SNMP Library Sample Program
#
# Edit History
#  12-Nov-92	rcq	created
#
##############################################################################

SOBJS = snmpqry.so

LIBS =  ssnmpsys.lib snetlib.lib spc.lib sconfig.lib

all: snmpqry.exe

#NOTE: the SNMP Library functions uses lots of stack space!
snmpqry.exe: snmpqry.so
	link snmpqry.so,,, $(LIBS) /stack:8000;

clean:
	del *.?o
	del *.map
	del *.cod

cleanall: clean
	del *.exe
