diff options
author | Carl Worth <cworth@cworth.org> | 2010-09-17 12:10:54 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-09-17 12:16:10 -0700 |
commit | e6ba2c63c9ba3d8999bd2f1c5eac3c5bf7c14167 (patch) | |
tree | a8f6a53119f082e84283c9d4fd924862252d6d65 /Makefile | |
parent | 7a72999fad235deddb1364b8667f7012939ab385 (diff) |
test: Fix test suite to integrate with our non-recursive Makefile system.
This avoids "make test" emitting messages from three (3!) recursive
invocations of make. We change the invocations of the tests themselves
to occur directly from the shell script rather than having the shell
script invoke make again and using wildcards in the Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ all: # List all subdirectories here. Each contains its own Makefile.local -subdirs = compat completion emacs lib +subdirs = compat completion emacs lib test # We make all targets depend on the Makefiles themselves. global_deps = Makefile Makefile.config Makefile.local \ |