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

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

1.11    ! millert     1: #      $OpenBSD: Makefile,v 1.10 1997/07/25 21:56:16 millert Exp $
        !             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.1       deraadt    10:
                     11: PROG=  ftp
1.7       millert    12: SRCS=  cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
1.6       millert    13:        stringlist.c util.c
1.5       millert    14:
                     15: LDADD+=        -ledit -ltermcap
1.8       deraadt    16: DPADD+=        ${LIBEDIT} ${LIBTERMCAP}
1.10      millert    17:
                     18: #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
1.1       deraadt    19:
                     20: .include <bsd.prog.mk>