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