From: Akim Demaille Date: Sat, 15 Dec 2001 16:31:04 +0000 (+0000) Subject: Make `make distcheck' work. X-Git-Tag: before-m4-back-end~128 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/1a4648ff0d72c384f6fbfc46d9f23bbb28ca9300 Make `make distcheck' work. * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses system.h which uses libgettext.h. --- diff --git a/ChangeLog b/ChangeLog index 21c7c473..bbca444b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2001-12-15 Akim Demaille + + Make `make distcheck' work. + + * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses + system.h which uses libgettext.h. + 2001-12-15 Akim Demaille * src/nullable.c (set_nullable): Useless rules must be skipped, diff --git a/TODO b/TODO index b80c259c..62622a61 100644 --- a/TODO +++ b/TODO @@ -1,12 +1,9 @@ -*- outline -*- -* src/reader.c -Check and cleanup for CPP-out code. [ok] - -* src/output.c -Check and cleanup for CPP-out code. [ok] -** %%input-line is not correct at this time. [ok] -Rely with bison.simple. +* tokendefs +This muscle should not exist: the information it contains should be +available from the rest of bison. Once the information public, get +rid of it. * Broken options ?. ** %no-lines [ok] @@ -33,9 +30,9 @@ Removing warnings when compiling. (gcc-warnings). [ok] Find the best graph parameters. [] * doc/bison.texinfo -** Update +** Update informations about ERROR_VERBOSE. [] -** Add explainations about +** Add explainations about skeleton muscles. [] %skeleton. [] diff --git a/lib/Makefile.am b/lib/Makefile.am index 4fc4e488..e873c8f3 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -21,7 +21,13 @@ CFLAGS = @CFLAGS@ $(WARNING_CFLAGS) noinst_LIBRARIES = libbison.a -INCLUDES = -I.. -I$(srcdir) -I$(top_srcdir)/src -I../intl +# libintl.h in is build/intl, libgettext.h in src/intl/, +# config.h in build/., and system.h is in src/src/. +INCLUDES = -I$(top_builddir)/intl \ + -I$(top_builddir) \ + -I$(top_srcdir)/ \ + -I$(top_srcdir)/intl \ + -I$(top_srcdir)/lib # Heck, we are still using an old version of Automake which does not # understand LIBOBJ additions using $objext...