xref: /dragonfly/bin/ed/Makefile (revision 333227be)
1# $FreeBSD: src/bin/ed/Makefile,v 1.18.2.1 2001/12/13 09:58:12 ru Exp $
2# $DragonFly: src/bin/ed/Makefile,v 1.6 2004/09/26 16:32:47 asmodai Exp $
3
4PROG=	ed
5SRCS=	buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
6
7WARNS?=	6
8
9LINKS=	${BINDIR}/ed ${BINDIR}/red
10MLINKS=	ed.1 red.1
11
12.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT)
13DISTRIBUTION=crypto
14CFLAGS+=-DDES
15DPADD=	${LIBCIPHER}
16LDADD=	-lcipher
17.endif
18
19.include <bsd.prog.mk>
20