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-15 11:17:34 +0300 |
commit | f6b764345406aae0e659c007cf99f33ff7469bf2 (patch) | |
tree | c2bdf1013df0b4d7119654b1d05f8706929e813a | |
parent | 1059680510215830da7e2eb91e72e4623d460d19 (diff) | |
download | egawk-f6b764345406aae0e659c007cf99f33ff7469bf2.tar.gz egawk-f6b764345406aae0e659c007cf99f33ff7469bf2.tar.bz2 egawk-f6b764345406aae0e659c007cf99f33ff7469bf2.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 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 |