artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be48121
)
generate the parser directly instead of fucking around
author
espie
<espie@openbsd.org>
Tue, 4 Jul 2017 08:39:57 +0000
(08:39 +0000)
committer
espie
<espie@openbsd.org>
Tue, 4 Jul 2017 08:39:57 +0000
(08:39 +0000)
usr.bin/m4/Makefile
patch
|
blob
|
history
diff --git
a/usr.bin/m4/Makefile
b/usr.bin/m4/Makefile
index
a6ee09c
..
75e0562
100644
(file)
--- a/
usr.bin/m4/Makefile
+++ b/
usr.bin/m4/Makefile
@@
-1,4
+1,4
@@
-# $OpenBSD: Makefile,v 1.1
4 2017/06/17 01:55:16 bcallah
Exp $
+# $OpenBSD: Makefile,v 1.1
5 2017/07/04 08:39:57 espie
Exp $
# -DEXTENDED
# if you want the paste & spaste macros.
@@
-15,7
+15,7
@@
SRCS= eval.c expr.c look.c main.c misc.c gnum4.c trace.c tokenizer.l parser.y
MAN= m4.1
parser.c parser.h: parser.y
- ${YACC} -
d ${.ALLSRC} && mv y.tab.c parser.c && mv y.tab.h parser.h
+ ${YACC} -
o parser.c -d ${.ALLSRC}
tokenizer.o: parser.h