From 76bf5102423b4d1597b214f77764075f55b5eb7b Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Sun, 5 Apr 2009 22:13:06 +0200 Subject: [PATCH] Makefile: introduce $(BISON). * src/local.mk (BISON): New. (YACC): Use it. --- ChangeLog | 6 ++++++ src/local.mk | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 427b62da..7bf94c53 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-04-06 Akim Demaille + + Makefile: introduce $(BISON). + * src/local.mk (BISON): New. + (YACC): Use it. + 2009-04-06 Akim Demaille parser: handle %locations as %define locations. diff --git a/src/local.mk b/src/local.mk index 111f16e1..0ef2355e 100644 --- a/src/local.mk +++ b/src/local.mk @@ -24,7 +24,8 @@ LDADD = $(top_builddir)/lib/libbison.a $(LIBINTL) # Use our own Bison to build the parser. Of course, you ought to # keep a sane version of Bison nearby... -YACC = $(top_builddir)/tests/bison -y +BISON = $(top_builddir)/tests/bison +YACC = $(BISON) -y AM_YFLAGS = -dv --warnings=all,error --report=all bin_PROGRAMS = src/bison -- 2.47.2