blob: b8917deac294476352bdaae9e25153627e8f7a82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $OpenBSD: Makefile,v 1.15 1998/07/24 00:10:54 millert 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
.if (defined(USE_SOCKS) && ${USE_SOCKS} == "YES")
CFLAGS += -DSOCKS -I/usr/local/include
LDADD += -lsocks5
.endif
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 -lcurses
DPADD+= ${LIBEDIT} ${LIBCURSES}
#COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
.include <bsd.prog.mk>
|