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

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

1.25    ! martynas    1: #      $OpenBSD: Makefile,v 1.24 2009/01/05 18:51:49 martynas 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.11      millert     5:
                      6: # Uncomment the following to provide defaults for gate-ftp operation
                      7: #CFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21
1.12      millert     8:
1.17      espie       9: .if (defined(USE_SOCKS) && ${USE_SOCKS:L} == "yes")
1.14      imp        10: CFLAGS += -DSOCKS -I/usr/local/include
1.24      martynas   11: LDADD += -L/usr/local/lib -lsocks
1.14      imp        12: .endif
1.1       deraadt    13:
                     14: PROG=  ftp
1.25    ! martynas   15: SRCS=  cmds.c cmdtab.c complete.c cookie.c domacro.c fetch.c ftp.c \
        !            16:        list.c main.c ruserpass.c small.c stringlist.c util.c
1.16      itojun     17:
                     18: CPPFLAGS+= -DINET6
1.5       millert    19:
1.21      deraadt    20: LDADD+=        -ledit -lcurses -lutil -lssl -lcrypto
1.19      fgsch      21: DPADD+=        ${LIBEDIT} ${LIBCURSES} ${LIBUTIL}
1.20      tedu       22: LDSTATIC= ${STATIC}
1.10      millert    23:
                     24: #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
1.1       deraadt    25:
                     26: .include <bsd.prog.mk>