diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | Makefile.in | 4 |
3 files changed, 11 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2014-08-14 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (SUBDIRS): Put awklib after doc so that examples + get extracted when the doc changes. + 2014-08-13 Arnold D. Robbins <arnold@skeeve.com> * builtin.c (do_sub): Move initial allocation of the replacement diff --git a/Makefile.am b/Makefile.am index 9a5e1618..3d1c8837 100644 --- a/Makefile.am +++ b/Makefile.am @@ -61,10 +61,12 @@ EXTRA_DIST = \ # The order to do things in. # Build explicitly in "." in order to build gawk first, so # that `make check' without a prior `make' works. +# Build in awklib after in doc, since we want to extract +# sample files if doc/gawk.texi changed. SUBDIRS = \ . \ - awklib \ doc \ + awklib \ po \ extension \ test diff --git a/Makefile.in b/Makefile.in index 3948ff73..4d50757d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -467,10 +467,12 @@ EXTRA_DIST = \ # The order to do things in. # Build explicitly in "." in order to build gawk first, so # that `make check' without a prior `make' works. +# Build in awklib after in doc, since we want to extract +# sample files if doc/gawk.texi changed. SUBDIRS = \ . \ - awklib \ doc \ + awklib \ po \ extension \ test |