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

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

1.31    ! kmos        1: # Define SMALL to disable command line editing
1.7       millert     2: #CFLAGS+=-DSMALL
1.1       deraadt     3:
                      4: PROG=  ftp
1.31    ! kmos        5: SRCS=  cmd.c file.c ftp.c http.c main.c progressmeter.c url.c util.c xmalloc.c
1.5       millert     6:
1.27      jsing       7: LDADD+=        -ledit -lcurses -lutil -ltls -lssl -lcrypto
                      8: DPADD+=        ${LIBEDIT} ${LIBCURSES} ${LIBUTIL} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO}
1.1       deraadt     9:
                     10: .include <bsd.prog.mk>