blob: 4746b1e850ec68f811952590a418962829b9d705 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.33 2019/05/16 12:44:17 florian Exp $
# Define SMALL to disable command line editing and https support
#CFLAGS+=-DSMALL
PROG= ftp
SRCS= cmds.c cmdtab.c complete.c cookie.c domacro.c fetch.c ftp.c \
list.c main.c ruserpass.c small.c stringlist.c util.c
LDADD+= -ledit -lcurses -lutil -ltls -lssl -lcrypto
DPADD+= ${LIBEDIT} ${LIBCURSES} ${LIBUTIL} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO}
#COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
.include <bsd.prog.mk>
|