xref: /openbsd/usr.bin/ftp/Makefile (revision bb1c3b3f)
1#	$OpenBSD: Makefile,v 1.35 2021/02/16 16:27:34 naddy Exp $
2
3# Define SMALL to disable command line editing and some other features,
4# NOSSL to disable https support.
5#CFLAGS+=-DSMALL
6
7PROG=	ftp
8SRCS=	cmds.c cmdtab.c complete.c cookie.c domacro.c fetch.c ftp.c \
9	list.c main.c ruserpass.c small.c stringlist.c util.c
10
11LDADD+=	-ledit -lcurses -ltls -lssl -lcrypto
12DPADD+=	${LIBEDIT} ${LIBCURSES} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO}
13
14#COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
15
16.include <bsd.prog.mk>
17