Added warning about forthcoming shift/reduce conflict

This commit is contained in:
em 1984-06-21 11:13:28 +00:00
parent df2d12c52d
commit 8a90593fc0

View file

@ -11,6 +11,11 @@ LEXLIB=-lln
cgg: bootgram.o
cc $(LDFLAGS) bootgram.o $(LIBS) $(LEXLIB) -o cgg
bootgram.c: bootgram.y
@echo expect 1 shift/reduce conflict
yacc bootgram.y
mv y.tab.c bootgram.c
install: cgg
cp cgg ../../lib/cgg