blob: ec8d69f07b9ad28bead4c3761e5d86719f0f612d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $OpenBSD: Makefile,v 1.13 1997/09/21 11:49:09 deraadt Exp $
# 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
LDADD+= -ledit -ltermcap
DPADD+= ${LIBEDIT} ${LIBTERMCAP}
#COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
.include <bsd.prog.mk>
|