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

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

1.10    ! millert     1: #      $OpenBSD: Makefile,v 1.9 1997/04/10 00:17:06 millert Exp $
        !             2: #      $NetBSD: Makefile,v 1.12 1997/07/20 09:45:35 lukem Exp $
1.5       millert     3: #      from: @(#)Makefile      8.2 (Berkeley) 4/3/94
                      4:
1.7       millert     5: # define SMALL to disable command line editing
                      6: #CFLAGS+=-DSMALL
1.1       deraadt     7:
                      8: PROG=  ftp
1.7       millert     9: SRCS=  cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
1.6       millert    10:        stringlist.c util.c
1.5       millert    11:
                     12: LDADD+=        -ledit -ltermcap
1.8       deraadt    13: DPADD+=        ${LIBEDIT} ${LIBTERMCAP}
1.10    ! millert    14:
        !            15: #COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
1.1       deraadt    16:
                     17: .include <bsd.prog.mk>