blob: 735185cc29f35f7b6b1b15ecf0befec9f1ab8a49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile,v 1.10 1997/07/25 21:56:16 millert Exp $
# $NetBSD: Makefile,v 1.12 1997/07/20 09:45:35 lukem Exp $
# from: @(#)Makefile 8.2 (Berkeley) 4/3/94
# define SMALL to disable command line editing
#CFLAGS+=-DSMALL
PROG= ftp
SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
stringlist.c util.c
LDADD+= -ledit -ltermcap
DPADD+= ${LIBEDIT} ${LIBTERMCAP}
#COPTS+= -Wall -Wconversion -Wstrict-prototypes -Wmissing-prototypes
.include <bsd.prog.mk>
|