##############################################################################
#	COPYRIGHT 1986-1992 FTP SOFTWARE, INC.
#
# Makefile for ushout, ulisten
#
# Edit History:
#  23-Jul-92  rcq  created
#
##############################################################################

LIBS = snetlib.lib ssocket.lib spc.lib

all: ushout.exe ulisten.exe

CFLAGS = -Osa -Gs -W4

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

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

clean:
	del *.?o
	del *.map

cleanall: clean
	del *.exe