1# $OpenBSD: Makefile,v 1.37 2023/06/28 17:36:51 op 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