Commit 859ba57b authored by Russ Cox's avatar Russ Cox

make acid build with bison.

ask for bison explicitly in cc, gc to try to
avoid problems with other yaccs that
might be installed.

R=r
DELTA=29  (10 added, 2 deleted, 17 changed)
OCL=22110
CL=22113
parent 4dee747f
......@@ -10,7 +10,6 @@ LIB=\
HFILES=\
cc.h\
y.tab.h\
compat.h\
YFILES=\
cc.y\
......@@ -28,10 +27,8 @@ OFILES=\
funct.$O\
sub.$O\
com64.$O\
compat.$O\
dpchk.$O\
omachcap.$O\
compat.$O\
$(LIB): $(OFILES)
ar rsc $(LIB) $(OFILES)
......@@ -39,7 +36,7 @@ $(LIB): $(OFILES)
$(OFILES): $(HFILES)
y.tab.h: $(YFILES)
yacc $(YFLAGS) $(YFILES)
bison -y $(YFLAGS) $(YFILES)
y.tab.c: y.tab.h
test -f y.tab.c && touch y.tab.c
......
......@@ -34,7 +34,7 @@ $(LIB): $(OFILES)
$(OFILES): $(HFILES)
y.tab.h: $(YFILES)
yacc $(YFLAGS) $(YFILES)
bison -y $(YFLAGS) $(YFILES)
y.tab.c: y.tab.h
test -f y.tab.c && touch y.tab.c
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment