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

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

1.17    ! espie       1: #      $OpenBSD: Makefile,v 1.16 1999/12/08 12:57:06 itojun 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: # not really used at this moment
                     19: CPPFLAGS+= -DINET6
1.5       millert    20:
1.15      millert    21: LDADD+=        -ledit -lcurses
                     22: DPADD+=        ${LIBEDIT} ${LIBCURSES}
1.10      millert    23:
                     24: #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
1.1       deraadt    25:
                     26: .include <bsd.prog.mk>