diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-03-27 18:15:35 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-03-27 18:15:35 +0200 |
commit | 313dad7d1952138908194d67f9b3bb5ca12c952a (patch) | |
tree | 5dc6e124ff6b47cffe8b282178bb71e9a600d605 | |
parent | c27e3041b27fe978c8e7e647b5afaf667fd594ee (diff) | |
download | egawk-313dad7d1952138908194d67f9b3bb5ca12c952a.tar.gz egawk-313dad7d1952138908194d67f9b3bb5ca12c952a.tar.bz2 egawk-313dad7d1952138908194d67f9b3bb5ca12c952a.zip |
Make sure that 'make check' builds in extension.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 6 | ||||
-rw-r--r-- | Makefile.in | 6 |
3 files changed, 9 insertions, 8 deletions
@@ -1,3 +1,8 @@ +2013-03-27 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (SUBDIRS): Move extension back into the middle of + the list so that `make check' without a prior `make' works. + 2013-03-20 Arnold D. Robbins <arnold@skeeve.com> For systems where libc is borked (MirBSD, maybe others). diff --git a/Makefile.am b/Makefile.am index 844fa2cf..1f1929a9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -67,15 +67,13 @@ distcleancheck_listfiles = \ # The order to do things in. # Build explicitly in "." in order to build gawk first, so # that `make check' without a prior `make' works. -# -# Put 'extension' last, in case building the extensions is not supported. SUBDIRS = \ . \ awklib \ doc \ po \ - test \ - extension + extension \ + test # what to make and install bin_PROGRAMS = gawk diff --git a/Makefile.in b/Makefile.in index 0e6723ce..3b9963da 100644 --- a/Makefile.in +++ b/Makefile.in @@ -398,15 +398,13 @@ distcleancheck_listfiles = \ # The order to do things in. # Build explicitly in "." in order to build gawk first, so # that `make check' without a prior `make' works. -# -# Put 'extension' last, in case building the extensions is not supported. SUBDIRS = \ . \ awklib \ doc \ po \ - test \ - extension + extension \ + test include_HEADERS = gawkapi.h |