NetBSD/usr.bin/ftp/Makefile

18 lines
367 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.9 1997/03/13 22:38:39 christos Exp $
1997-01-09 23:18:21 +03:00
# from: @(#)Makefile 8.2 (Berkeley) 4/3/94
1993-03-21 12:45:37 +03:00
# define SMALLFTP if editing is to be disabled
#SMALLFTP=yes
1993-03-21 12:45:37 +03:00
PROG= ftp
SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
util.c
.if defined(SMALLFTP)
CFLAGS+=-DSMALLFTP
.else
LDADD+= -ledit -ltermcap
.endif
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>