From a3495b2d17f8442d6f181508163124eec4d98b5b Mon Sep 17 00:00:00 2001 From: leo Date: Wed, 9 Aug 2000 13:35:23 +0000 Subject: [PATCH] smaller ed(1) --- distrib/utils/x_ed/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 distrib/utils/x_ed/Makefile diff --git a/distrib/utils/x_ed/Makefile b/distrib/utils/x_ed/Makefile new file mode 100644 index 000000000000..caacce0ea054 --- /dev/null +++ b/distrib/utils/x_ed/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/08/09 13:35:23 leo Exp $ +# Build an ed without crypt support + +PROG= ed +MKMAN= no + +SRCDIR= ${.CURDIR}/../../../bin/ed + +SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c + +CPPFLAGS+= -DBACKWARDS + +LDSTATIC?=-static + +all: ${PROG} + +.include + +.PATH: ${SRCDIR}