X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/6e40b8d825ec1df59654022b2248147fc81c8594..bb3b912b0a43b8b740a05ad1d15686e68f8e3f39:/src/Makefile.am diff --git a/src/Makefile.am b/src/Makefile.am index 96211619..511b9058 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -17,13 +17,13 @@ AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS) AM_CPPFLAGS = -I$(top_srcdir)/lib -AM_YFLAGS = "-dv" - -LDADD = ../lib/libbison.a $(LIBINTL) - +BISON = ../tests/bison # Use our own Bison to build the parser. Of course, you ought to # 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_SCRIPTS = $(YACC_SCRIPT) @@ -51,7 +51,7 @@ bison_SOURCES = \ named-ref.c named-ref.h \ nullable.c nullable.h \ output.c output.h \ - parse-gram.h parse-gram.y \ + parse-gram.y \ print.c print.h \ print_graph.c print_graph.h \ print-xml.c print-xml.h \ @@ -84,8 +84,6 @@ yacc: $(AM_V_at)echo "exec '$(bindir)/bison' -y "'"$$@"' >>$@ $(AM_V_at)chmod a+x $@ -echo: - echo $(bison_SOURCES) $(noinst_HEADERS) # The following rule is not designed to be portable, # and relies on tools that not everyone has.