diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-10 21:04:26 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-10 21:04:26 +0000 |
commit | 0a61763bce8f6ba7e4aa80526a73b0eb9330f856 (patch) | |
tree | 17c53c936affe6f437b9c3828f6d34cb7dc71e0f | |
parent | fb8e82bd105d52db5665ffad2d37c43309f593fa (diff) |
Build a small version of ftp for alpha install floppy, shave a few bytes.
-rw-r--r-- | distrib/alpha/Makefile | 4 | ||||
-rw-r--r-- | distrib/alpha/ramdisk/raminst.conf | 4 | ||||
-rw-r--r-- | distrib/alpha/special/ftp/Makefile | 26 |
3 files changed, 30 insertions, 4 deletions
diff --git a/distrib/alpha/Makefile b/distrib/alpha/Makefile index 957667357bd..7d08958da61 100644 --- a/distrib/alpha/Makefile +++ b/distrib/alpha/Makefile @@ -1,5 +1,5 @@ -# $OpenBSD: Makefile,v 1.2 1997/05/11 18:43:33 millert Exp $ +# $OpenBSD: Makefile,v 1.3 1997/09/10 21:04:22 millert Exp $ -SUBDIR= ramdisk +SUBDIR= special ramdisk .include <bsd.subdir.mk> diff --git a/distrib/alpha/ramdisk/raminst.conf b/distrib/alpha/ramdisk/raminst.conf index f71c60fa235..26d0cb4e092 100644 --- a/distrib/alpha/ramdisk/raminst.conf +++ b/distrib/alpha/ramdisk/raminst.conf @@ -1,10 +1,10 @@ # -# $OpenBSD: raminst.conf,v 1.7 1997/07/09 15:12:56 millert Exp $ +# $OpenBSD: raminst.conf,v 1.8 1997/09/10 21:04:24 millert Exp $ # # ram.conf - unified binary for the RAM disk # -srcdirs bin sbin usr.bin usr.sbin +srcdirs distrib/alpha/special bin sbin usr.bin usr.sbin srcdirs gnu/usr.bin sys/arch/alpha/stand progs cat chmod chown cp dd df disklabel ed grep expr fsck_ffs ftp diff --git a/distrib/alpha/special/ftp/Makefile b/distrib/alpha/special/ftp/Makefile new file mode 100644 index 00000000000..8cf18040885 --- /dev/null +++ b/distrib/alpha/special/ftp/Makefile @@ -0,0 +1,26 @@ +# $OpenBSD: Makefile,v 1.1 1997/09/10 21:04:25 millert 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> |