aboutsummaryrefslogtreecommitdiff
path: root/bin/ed/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ed/Makefile')
-rw-r--r--bin/ed/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/ed/Makefile b/bin/ed/Makefile
new file mode 100644
index 000000000000..40e06134e87d
--- /dev/null
+++ b/bin/ed/Makefile
@@ -0,0 +1,16 @@
+# $FreeBSD$
+
+.include <src.opts.mk>
+
+PACKAGE=runtime
+PROG= ed
+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 ${MK_OPENSSL} != "no" && ${MK_ED_CRYPTO} != "no"
+CFLAGS+=-DDES
+LIBADD= crypto
+.endif
+
+.include <bsd.prog.mk>