diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | Makefile.in | 2 |
3 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2011-10-21 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (distcleancheck_listfiles): Added, per advice from + Stefano Lattarini <stefano.lattarini@gmail.com>. + 2011-10-21 Stefano Lattarini <stefano.lattarini@gmail.com> * configure.ac (AM_C_PROTOTYPES): Remove call to this macro. diff --git a/Makefile.am b/Makefile.am index 13ba6bd8..4a1340a1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -114,6 +114,8 @@ gawk_SOURCES = $(base_sources) eval.c profile.c pgawk_SOURCES = $(base_sources) eval_p.c profile_p.c dgawk_SOURCES = $(base_sources) eval_d.c profile.c cmd.h command.y debug.c +distcleancheck_listfiles = version.c + # Get extra libs as needed, Automake will supply LIBINTL and SOCKET_LIBS. LDADD = $(LIBSIGSEGV) $(LIBINTL) $(SOCKET_LIBS) dgawk_LDADD = $(LDADD) @LIBREADLINE@ diff --git a/Makefile.in b/Makefile.in index c06dac6f..db5c2ae7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -173,7 +173,6 @@ am__relativize = \ DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print -distcleancheck_listfiles = find . -type f -print # Directory for gawk's data files. Automake supplies datadir. pkgdatadir = $(datadir)/awk @@ -387,6 +386,7 @@ base_sources = \ gawk_SOURCES = $(base_sources) eval.c profile.c pgawk_SOURCES = $(base_sources) eval_p.c profile_p.c dgawk_SOURCES = $(base_sources) eval_d.c profile.c cmd.h command.y debug.c +distcleancheck_listfiles = version.c # Get extra libs as needed, Automake will supply LIBINTL and SOCKET_LIBS. LDADD = $(LIBSIGSEGV) $(LIBINTL) $(SOCKET_LIBS) |