# HG changeset patch # User John W. Eaton # Date 1269459941 14400 # Node ID e85fa73ac3a03a3830a5d924bc8e8d760ca6c354 # Parent f123146f1820c0cfb73aa6eb7915b7a0101e27f6 src/DLD-FUNCTIONS/config-module.awk: emit additions to EXTRA_DIST diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2010-03-24 John W. Eaton + + * DLD-FUNCTIONS/config-module.awk: Emit additions to EXTRA_DIST. + 2010-03-24 John W. Eaton * Makefile.am ($(srcdir)/DLD-FUNCTIONS/module.mk): diff --git a/src/DLD-FUNCTIONS/config-module.awk b/src/DLD-FUNCTIONS/config-module.awk --- a/src/DLD-FUNCTIONS/config-module.awk +++ b/src/DLD-FUNCTIONS/config-module.awk @@ -1,5 +1,11 @@ BEGIN { print "## DO NOT EDIT -- generated from module-files by config-module.awk"; + print "" + print "EXTRA_DIST += \\" + print " DLD-FUNCTIONS/config-module.sh \\" + print " DLD-FUNCTIONS/config-module.awk \\" + print " DLD-FUNCTIONS/module-files" + print "" nfiles = 0; } { files[++nfiles] = $1; @@ -14,6 +20,7 @@ printf (" DLD-FUNCTIONS/%s.la%s", basename, sep); } print "octlib_LTLIBRARIES += $(DLD_FUNCTIONS_LIBS)"; + print "" print "if AMCOND_ENABLE_DYNAMIC_LINKING"; for (i = 1; i <= nfiles; i++) { basename = files[i];