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

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

1.6     ! millert     1: #      $OpenBSD: Makefile,v 1.8 1997/01/19 14:19:02 lukem Exp $
1.5       millert     2: #      $NetBSD: Makefile,v 1.8 1997/01/19 14:19:02 lukem Exp $
                      3: #      from: @(#)Makefile      8.2 (Berkeley) 4/3/94
                      4:
                      5: # define SMALLFTP if editing is to be disabled
                      6: #SMALLFTP=yes
1.1       deraadt     7:
                      8: PROG=  ftp
1.6     ! millert     9: SRCS=  cmds.c cmdtab.c domacro.c fetch.c ftp.c main.c ruserpass.c \
        !            10:        stringlist.c util.c
1.5       millert    11:
                     12: .if defined(SMALLFTP)
                     13: CFLAGS+=-DSMALLFTP
                     14: .else
                     15: SRCS+= complete.c
                     16: LDADD+=        -ledit -ltermcap
                     17: .endif
1.1       deraadt    18:
                     19: .include <bsd.prog.mk>