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

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

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