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