summaryrefslogtreecommitdiff
path: root/usr.bin/ftp/Makefile
blob: e4ad344a9bb7f0b915811372259dc0a0a2960b09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#	$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>