##############################################################################
#	COPYRIGHT 1986-1992 FTP SOFTWARE, INC.
#
# Makefile for alarm and listen
#
# Edit History:
# 21-Jul-92  rcq  don't qualify libraries (use env var)
##############################################################################

LIBS = snetlib.lib spc.lib

# disable stack checking because of asynch upcalls in LISTEN.C
CFLAGS = -Osa -Gs -W4

all: alarm.exe listen.exe

alarm.exe: alarm.so
	link alarm.so,,, $(LIBS) /stack:3000;

listen.exe: listen.so
	link listen.so,,, $(LIBS) /map;

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

cleanall: clean
	del *.exe
