Makefile revision 1.18
1#	$NetBSD: Makefile,v 1.18 1999/04/15 20:48:49 mcr Exp $
2#	from: @(#)Makefile	8.2 (Berkeley) 4/3/94
3
4PROG=	ftp
5SRCS=	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
12CPPFLAGS+= -DHAVE_TIMEGM	# system has timegm(3), a UTC version of mktime
13LDADD+=	-ledit -ltermcap -lutil
14DPADD+=	${LIBEDIT} ${LIBTERMCAP} ${LIBUTIL}
15LINKS=/usr/bin/ftp /usr/bin/pftp
16
17.include <bsd.prog.mk>
18