[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / ftp

File: [local] / src / usr.bin / ftp / Makefile (download)

Revision 1.5, Mon Feb 3 01:02:31 1997 UTC (27 years, 4 months ago) by millert
Branch: MAIN
Changes since 1.4: +13 -4 lines

Sync with NetBSD

#	$NetBSD: Makefile,v 1.8 1997/01/19 14:19:02 lukem Exp $
#	from: @(#)Makefile	8.2 (Berkeley) 4/3/94

# define SMALLFTP if editing is to be disabled
#SMALLFTP=yes

PROG=	ftp
SRCS=	cmds.c cmdtab.c domacro.c fetch.c ftp.c main.c ruserpass.c util.c

.if defined(SMALLFTP)
CFLAGS+=-DSMALLFTP
.else
SRCS+=	complete.c
LDADD+=	-ledit -ltermcap
.endif

.include <bsd.prog.mk>