diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 07:36:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 07:36:50 +0000 |
commit | e58cbdeb43a8203b2472a29ca98404ed89c6526e (patch) | |
tree | d57b6b7e2ffdec3f8b040a7f0fe18e22d112f90a /distrib/special/ftp | |
parent | cb4906f55fa7a49aa28397caa1074aa262893119 (diff) |
Use a Makefile.inc to share all the -Os and such options we use
Diffstat (limited to 'distrib/special/ftp')
-rw-r--r-- | distrib/special/ftp/Makefile | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/distrib/special/ftp/Makefile b/distrib/special/ftp/Makefile index f0c8266d982..6e09dbe0442 100644 --- a/distrib/special/ftp/Makefile +++ b/distrib/special/ftp/Makefile @@ -1,26 +1,14 @@ -# $OpenBSD: Makefile,v 1.7 2009/06/04 05:46:49 halex Exp $ +# $OpenBSD: Makefile,v 1.8 2009/10/28 07:36: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 -COPTS+=-Os CFLAGS+=-DSMALL -DINET6 -# 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 -I/usr/local/include -#LDADD += -L/usr/local/lib -lsocks - PROG= ftp SRCS= fetch.c ftp.c main.c small.c util.c -MAN= .PATH: ${.CURDIR}/../../../usr.bin/ftp LDADD+= -lcurses -lutil DPADD+= ${LIBCURSES} ${LIBUTIL} -#COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes - .include <bsd.prog.mk> |