diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-10-21 15:01:08 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-10-21 15:01:08 +0200 |
commit | 3b5e1a089dc3f1193ddc73747524aa24fcab3899 (patch) | |
tree | e2a8ac790028e5f38b5f5deb58969302f37d2ac8 | |
parent | 54b630ec92718b620e53997958003ea978fb9006 (diff) | |
download | egawk-3b5e1a089dc3f1193ddc73747524aa24fcab3899.tar.gz egawk-3b5e1a089dc3f1193ddc73747524aa24fcab3899.tar.bz2 egawk-3b5e1a089dc3f1193ddc73747524aa24fcab3899.zip |
Fix 'make distcheck' to not kvetch about version.c.
-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) |