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

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

1.12    ! millert     1: #      $OpenBSD: Makefile,v 1.11 1997/09/04 04:37:12 millert Exp $
1.11      millert     2: #      $NetBSD: Makefile,v 1.13 1997/08/18 10:20:13 lukem Exp $
1.5       millert     3: #      from: @(#)Makefile      8.2 (Berkeley) 4/3/94
                      4:
1.11      millert     5: # Define SMALL to disable command line editing
1.7       millert     6: #CFLAGS+=-DSMALL
1.11      millert     7:
                      8: # Uncomment the following to provide defaults for gate-ftp operation
                      9: #CFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21
1.12    ! millert    10:
        !            11: # Uncomment the following for socks5 support.
        !            12: #CFLAGS += -DSOCKS -include /usr/local/include/socks.h
        !            13: #LDADD += -lsocks5
1.1       deraadt    14:
                     15: PROG=  ftp
1.7       millert    16: SRCS=  cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
1.6       millert    17:        stringlist.c util.c
1.5       millert    18:
                     19: LDADD+=        -ledit -ltermcap
1.8       deraadt    20: DPADD+=        ${LIBEDIT} ${LIBTERMCAP}
1.10      millert    21:
                     22: #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
1.1       deraadt    23:
                     24: .include <bsd.prog.mk>