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

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

1.33    ! florian     1: #      $OpenBSD: Makefile,v 1.30 2016/05/06 22:06:09 jca Exp $
1.32      jasper      2:
1.33    ! florian     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.33    ! florian     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.33    ! florian    12:
        !            13: #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
1.1       deraadt    14:
                     15: .include <bsd.prog.mk>