summaryrefslogtreecommitdiff
path: root/bin/ed/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ed/Makefile')
-rw-r--r--bin/ed/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/bin/ed/Makefile b/bin/ed/Makefile
index 7da27f20079f..8ec24393675d 100644
--- a/bin/ed/Makefile
+++ b/bin/ed/Makefile
@@ -1,8 +1,15 @@
-# $Id: Makefile,v 1.10 1994/12/18 15:15:10 jkh Exp $
+# $Id: Makefile,v 1.10.4.3 1996/11/24 09:31:31 joerg Exp $
PROG= ed
-SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
+SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
LINKS= ${BINDIR}/ed ${BINDIR}/red
MLINKS= ed.1 red.1
+.if exists(../../secure) && !defined(NOCRYPT) && !defined(NOSECURE)
+DISTRIBUTION=des
+CFLAGS+=-DDES
+LDADD+= -L${CIPHEROBJDIR} -lcipher
+DPADD+= ${CIPHEROBJDIR}/libcipher.a
+.endif
+
.include <bsd.prog.mk>