[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.6, Mon Feb 3 01:05:31 1997 UTC (27 years, 4 months ago) by millert
Branch: MAIN
Changes since 1.5: +3 -1 lines

Add back ``-r'' option and fix strncpy() usage and other nits because
I'm anal.  Closer to KNF now.

#	$OpenBSD: Makefile,v 1.6 1997/02/03 01:05:31 millert Exp $
#	$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 \
	stringlist.c util.c

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

.include <bsd.prog.mk>