mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-21 02:03:03 +00:00
maint: rely on Automake for parsers.
* Makefile.am (AM_YFLAGS): Automake looks for "-d" alone. Move other options in here. (BISON): New. (YACC): Use it. (bison_SOURCES): Now that automake can see `-d' in AM_YFLAGS, we can rely on it to compile and ship the parser header files. Based on commit737406a32cand commit3d6ca33908.
This commit is contained in:
@@ -17,13 +17,13 @@
|
|||||||
|
|
||||||
AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
|
AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/lib
|
AM_CPPFLAGS = -I$(top_srcdir)/lib
|
||||||
AM_YFLAGS = "-dv"
|
BISON = ../tests/bison
|
||||||
|
|
||||||
LDADD = ../lib/libbison.a $(LIBINTL)
|
|
||||||
|
|
||||||
# Use our own Bison to build the parser. Of course, you ought to
|
# Use our own Bison to build the parser. Of course, you ought to
|
||||||
# keep a sane version of Bison nearby...
|
# keep a sane version of Bison nearby...
|
||||||
YACC = ../tests/bison -y --warnings=all,error --report=all
|
YACC = $(BISON) -y
|
||||||
|
AM_YFLAGS = -d -v --warnings=all,error --report=all
|
||||||
|
|
||||||
|
LDADD = ../lib/libbison.a $(LIBINTL)
|
||||||
|
|
||||||
bin_PROGRAMS = bison
|
bin_PROGRAMS = bison
|
||||||
bin_SCRIPTS = $(YACC_SCRIPT)
|
bin_SCRIPTS = $(YACC_SCRIPT)
|
||||||
@@ -51,7 +51,7 @@ bison_SOURCES = \
|
|||||||
named-ref.c named-ref.h \
|
named-ref.c named-ref.h \
|
||||||
nullable.c nullable.h \
|
nullable.c nullable.h \
|
||||||
output.c output.h \
|
output.c output.h \
|
||||||
parse-gram.h parse-gram.y \
|
parse-gram.y \
|
||||||
print.c print.h \
|
print.c print.h \
|
||||||
print_graph.c print_graph.h \
|
print_graph.c print_graph.h \
|
||||||
print-xml.c print-xml.h \
|
print-xml.c print-xml.h \
|
||||||
|
|||||||
Reference in New Issue
Block a user