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
7PROG=	ftp
8SRCS=	cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
9	util.c
10
11.if defined(SMALLFTP)
12CFLAGS+=-DSMALLFTP
13.else
14LDADD+=	-ledit -ltermcap
15.endif
16
17.include <bsd.prog.mk>
18