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