[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / ftp

Annotation of src/usr.bin/ftp/Makefile, Revision 1.37

1.36      op          1: #      $OpenBSD: Makefile,v 1.35 2021/02/16 16:27:34 naddy Exp $
1.32      jasper      2:
1.34      sthen       3: # Define SMALL to disable command line editing and some other features,
                      4: # NOSSL to disable https support.
1.7       millert     5: #CFLAGS+=-DSMALL
1.1       deraadt     6:
                      7: PROG=  ftp
1.33      florian     8: SRCS=  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
1.5       millert    10:
1.35      naddy      11: LDADD+=        -ledit -lcurses -ltls -lssl -lcrypto
                     12: DPADD+=        ${LIBEDIT} ${LIBCURSES} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO}
1.33      florian    13:
                     14: #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
1.1       deraadt    15:
                     16: .include <bsd.prog.mk>