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

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

1.13    ! deraadt     1: #      $OpenBSD: Makefile,v 1.12 1997/09/05 03:53:23 millert 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:
                      9: # Uncomment the following for socks5 support.
                     10: #CFLAGS += -DSOCKS -include /usr/local/include/socks.h
                     11: #LDADD += -lsocks5
1.1       deraadt    12:
                     13: PROG=  ftp
1.7       millert    14: SRCS=  cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
1.6       millert    15:        stringlist.c util.c
1.5       millert    16:
                     17: LDADD+=        -ledit -ltermcap
1.8       deraadt    18: DPADD+=        ${LIBEDIT} ${LIBTERMCAP}
1.10      millert    19:
                     20: #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
1.1       deraadt    21:
                     22: .include <bsd.prog.mk>