diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-17 14:19:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-17 14:19:54 +0000 |
commit | 77bc28544a42e71898ee5d334a382497d29e3357 (patch) | |
tree | d7e0407cbc6940ee8841aaabb52b74589b2c8805 /distrib/special/ftp | |
parent | f1e4bed8bad1667ab5c41e9cd3341928a07959a8 (diff) |
generalize Todd's work for ftp/pppd/rsh to ramdisks and miniroots on all
architectures.
Diffstat (limited to 'distrib/special/ftp')
-rw-r--r-- | distrib/special/ftp/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/distrib/special/ftp/Makefile b/distrib/special/ftp/Makefile new file mode 100644 index 00000000000..0dcf6cd3c14 --- /dev/null +++ b/distrib/special/ftp/Makefile @@ -0,0 +1,26 @@ +# $OpenBSD: Makefile,v 1.1 1997/09/17 14:19:49 deraadt Exp $ +# $NetBSD: Makefile,v 1.13 1997/08/18 10:20:13 lukem Exp $ +# from: @(#)Makefile 8.2 (Berkeley) 4/3/94 + +# Define SMALL to disable command line editing +CFLAGS+=-DSMALL + +# Uncomment the following to provide defaults for gate-ftp operation +#CFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21 + +# Uncomment the following for socks5 support. +#CFLAGS += -DSOCKS -include /usr/local/include/socks.h +#LDADD += -lsocks5 + +PROG= ftp +SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \ + stringlist.c util.c +MAN= +.PATH: ${.CURDIR}/../../../usr.bin/ftp + +LDADD+= -ltermcap +DPADD+= ${LIBTERMCAP} + +#COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes + +.include <bsd.prog.mk> |