diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-14 07:48:35 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-14 07:48:35 +0300 |
commit | 058370e159ba10507e7830ab4d83d5588542cf6b (patch) | |
tree | 82d5336fafe9b68e349ab79d5cacdf016afcf8ca | |
parent | 9d8bd17c58e8fc74d4ad80b199d5ea1d5cbd2bce (diff) | |
download | egawk-058370e159ba10507e7830ab4d83d5588542cf6b.tar.gz egawk-058370e159ba10507e7830ab4d83d5588542cf6b.tar.bz2 egawk-058370e159ba10507e7830ab4d83d5588542cf6b.zip |
Minor improvement in building - extract examples from doc.
-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 c44d10b5..5c2a7f11 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 |