changeset 10449:e85fa73ac3a0

src/DLD-FUNCTIONS/config-module.awk: emit additions to EXTRA_DIST
author John W. Eaton <jwe@octave.org>
date Wed, 24 Mar 2010 15:45:41 -0400
parents f123146f1820
children 91d1e64804e1
files src/ChangeLog src/DLD-FUNCTIONS/config-module.awk
diffstat 2 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Wed Mar 24 15:43:17 2010 -0400
+++ b/src/ChangeLog	Wed Mar 24 15:45:41 2010 -0400
@@ -1,3 +1,7 @@
+2010-03-24  John W. Eaton  <jwe@octave.org>
+
+	* DLD-FUNCTIONS/config-module.awk: Emit additions to EXTRA_DIST.
+
 2010-03-24  John W. Eaton  <jwe@octave.org>
 
 	* Makefile.am ($(srcdir)/DLD-FUNCTIONS/module.mk):
--- a/src/DLD-FUNCTIONS/config-module.awk	Wed Mar 24 15:43:17 2010 -0400
+++ b/src/DLD-FUNCTIONS/config-module.awk	Wed Mar 24 15:45:41 2010 -0400
@@ -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];