xref: /openbsd/usr.bin/ftp/Makefile (revision e189ddde)
1#	$OpenBSD: Makefile,v 1.13 1997/09/21 11:49:09 deraadt Exp $
2
3# Define SMALL to disable command line editing
4#CFLAGS+=-DSMALL
5
6# Uncomment the following to provide defaults for gate-ftp operation
7#CFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21
8
9# Uncomment the following for socks5 support.
10#CFLAGS += -DSOCKS -include /usr/local/include/socks.h
11#LDADD += -lsocks5
12
13PROG=	ftp
14SRCS=	cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
15	stringlist.c util.c
16
17LDADD+=	-ledit -ltermcap
18DPADD+=	${LIBEDIT} ${LIBTERMCAP}
19
20#COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
21
22.include <bsd.prog.mk>
23