Home | History | Annotate | Line # | Download | only in ftp
Makefile revision 1.22
      1 #	$NetBSD: Makefile,v 1.22 1999/10/01 07:58:02 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 CPPFLAGS+= -DINET6
     16 
     17 main.o:	ftp_var.h
     18 
     19 .include <bsd.prog.mk>
     20