diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-24 21:58:57 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-24 21:58:57 +0000 |
commit | d3b74921b9b1a46deab7fc4cc540fbaff91ebca3 (patch) | |
tree | 7ea0aaa234029a4ce78f07e61091ba742a60a409 /test/Makefile | |
parent | ae91936353df4d1ce8dfbe5d37e729ef85d0b1b2 (diff) |
test/Makefile: make "make compile" install headers first
test/regex/Makefile: remove superfluous oprions
test/regex/tst-regex2.c: reformat, simplify, and make error messages
more informative
test/test-skeleton.c: kill child test process on ^C
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index f38427e41..728845bdf 100644 --- a/test/Makefile +++ b/test/Makefile @@ -44,7 +44,10 @@ test check all: run run: subdirs_run -compile: subdirs_compile +compile: $(top_builddir)/$(LOCAL_INSTALL_PATH) subdirs_compile + +$(top_builddir)/$(LOCAL_INSTALL_PATH): + $(Q)$(MAKE) -C $(top_builddir) $(LOCAL_INSTALL_PATH) tags: ctags -R |