Home | History | Annotate | Line # | Download | only in ftp
Makefile revision 1.16
      1 #	$NetBSD: Makefile,v 1.16 1998/07/22 16:06:27 lukem Exp $
      2 #	from: @(#)Makefile	8.2 (Berkeley) 4/3/94
      3 
      4 PROG=	ftp
      5 SRCS=	cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
      6 	util.c
      7 
      8 # Uncomment the following to provide defaults for gate-ftp operation
      9 #
     10 #CPPFLAGS+=-DGATE_SERVER=\"ftp-gw.host\" # -DGATE_PORT=21
     11 
     12 LDADD+=	-ledit -ltermcap -lutil
     13 DPADD+=	${LIBEDIT} ${LIBTERMCAP} ${LIBUTIL}
     14 
     15 .include <bsd.prog.mk>
     16