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

FLIBS = sftp.lib snetlib.lib spc.lib

# disable stack checking for speed (and possible asynch routines)
CFLAGS = -Osa -Gs -Zi -Fc

all: ftp_put.exe

ftp_put.exe: ftp_put.so
	link ftp_put.so,,, ${FLIBS}, /NOE/NOI/CO/stack:4000

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

