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

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

1.15    ! millert     1: #      $OpenBSD: Makefile,v 1.14 1997/10/02 04:22:39 imp 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.14      imp         9: .if (defined(USE_SOCKS) && ${USE_SOCKS} == "YES")
                     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.5       millert    17:
1.15    ! millert    18: LDADD+=        -ledit -lcurses
        !            19: DPADD+=        ${LIBEDIT} ${LIBCURSES}
1.10      millert    20:
                     21: #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
1.1       deraadt    22:
                     23: .include <bsd.prog.mk>