diff options
author | Akira TAGOH <akira@tagoh.org> | 2011-02-25 20:33:36 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2011-02-25 20:33:36 +0900 |
commit | 25253b0af1b9fb822b64b52f4c0df3c3b3503ad1 (patch) | |
tree | b4bd57021d45cf34b4f4b81638b0d95666a4df37 | |
parent | 779d2729aa6d2172e67ea5c2f61f0c4b09161172 (diff) |
ensure tests is entered at the end
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 57ed402..d573765 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,11 +1,14 @@ NULL = AUTOMAKE_OPTIONS = dist-bzip2 -SUBDIRS = build_tools hieroglyph devices src lib tests +SUBDIRS = build_tools hieroglyph devices src lib if ENABLE_PLUGINS SUBDIRS += plugins endif +# to ensure "tests" is last entry. +SUBDIRS += tests + ACLOCAL_AMFLAGS = \ -I m4macros \ $(NULL) |