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

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

1.18    ! todd        1: #      $OpenBSD: Makefile,v 1.17 2000/09/03 18:41:23 espie Exp $
1.5       millert     2:
1.11      millert     3: # Define SMALL to disable command line editing
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
                     11: LDADD += -lsocks5
                     12: .endif
1.1       deraadt    13:
                     14: PROG=  ftp
1.7       millert    15: SRCS=  cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
1.6       millert    16:        stringlist.c util.c
1.16      itojun     17:
                     18: CPPFLAGS+= -DINET6
1.5       millert    19:
1.15      millert    20: LDADD+=        -ledit -lcurses
                     21: DPADD+=        ${LIBEDIT} ${LIBCURSES}
1.10      millert    22:
                     23: #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
1.1       deraadt    24:
                     25: .include <bsd.prog.mk>