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