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

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

1.30    ! jca         1: #      $OpenBSD: Makefile,v 1.29 2015/10/12 16:39:07 deraadt Exp $
1.5       millert     2:
1.21      deraadt     3: # Define SMALL to disable command line editing and https support
1.7       millert     4: #CFLAGS+=-DSMALL
1.1       deraadt     5:
                      6: PROG=  ftp
1.25      martynas    7: SRCS=  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
1.5       millert     9:
1.27      jsing      10: LDADD+=        -ledit -lcurses -lutil -ltls -lssl -lcrypto
                     11: DPADD+=        ${LIBEDIT} ${LIBCURSES} ${LIBUTIL} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO}
1.10      millert    12:
                     13: #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
1.1       deraadt    14:
                     15: .include <bsd.prog.mk>