Fix another typo.
[dragonfly/vkernel-mp.git] / bin / ed / Makefile
blobed185fd9c12744a81760094f8c35372a9bfe7e73
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.8 2005/09/06 20:55:17 dillon Exp $
4 PROG= ed
5 SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
7 LINKS= ${BINDIR}/ed ${BINDIR}/red
8 MLINKS= ed.1 red.1
10 .if exists(${.CURDIR}/../../secure) && !defined(NO_CRYPT)
11 DISTRIBUTION=crypto
12 CFLAGS+=-DDES
13 DPADD= ${LIBCIPHER}
14 LDADD= -lcipher
15 .endif
17 .include <bsd.prog.mk>