aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/m4
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2001-09-18 14:55:52 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2001-09-18 14:55:52 +0000
commite98bffde506fcb006ebfb80e80efb6930ae64ea2 (patch)
tree4fdbff0d36391337b2ca896d3ed86f37c82dc485 /usr.bin/m4
parent1c8517dad818525a08358a0eddf1665bba5eb886 (diff)
downloadsrc-e98bffde506fcb006ebfb80e80efb6930ae64ea2.tar.gz
src-e98bffde506fcb006ebfb80e80efb6930ae64ea2.zip
Import OpenBSD m4 as of today.
Notes
Notes: svn path=/vendor/OpenBSD/dist/; revision=83618
Diffstat (limited to 'usr.bin/m4')
-rw-r--r--usr.bin/m4/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/usr.bin/m4/Makefile b/usr.bin/m4/Makefile
new file mode 100644
index 000000000000..0d3c0f59b3aa
--- /dev/null
+++ b/usr.bin/m4/Makefile
@@ -0,0 +1,18 @@
+# $OpenBSD: Makefile,v 1.8 2001/09/18 14:55:52 espie Exp $
+
+# -DEXTENDED
+# if you want the paste & spaste macros.
+
+PROG= m4
+CFLAGS+=-DEXTENDED
+CDIAGFLAGS=-W -Wall -Wstrict-prototypes \
+ -Wno-unused -Wno-char-subscripts -Wno-sign-compare
+# No optimization for m88k
+.if (${MACHINE_ARCH} == "m88k")
+CFLAGS+=-O0
+.endif
+
+SRCS= eval.c expr.c look.c main.c misc.c gnum4.c trace.c
+MAN= m4.1
+
+.include <bsd.prog.mk>