diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-08-17 15:47:08 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-08-17 15:47:08 +0200 |
commit | 92d5a40da433833380626b9678c4887568505b6d (patch) | |
tree | d84db4a7334213207d2a053e10605b835d891bd3 /test/Makefile | |
parent | 224bdefc223703884918235819fe3b246e568f74 (diff) |
for consistency allow the usage of 'make test' instead of './run-tests'
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/test/Makefile b/test/Makefile index f918f7d2e..da0a49b0c 100644 --- a/test/Makefile +++ b/test/Makefile @@ -6,16 +6,11 @@ ifndef NOISY .SILENT: endif -.PHONY: headers library clean veryclean all binary program doc -all clean veryclean binary program dirs: +.PHONY: headers library clean veryclean all binary program doc test +all clean veryclean binary program dirs test: $(MAKE) -C libapt $@ $(MAKE) -C interactive-helper $@ # Some very common aliases .PHONY: maintainer-clean dist-clean distclean pristine sanity maintainer-clean dist-clean distclean pristine sanity: veryclean - - -.PHONY: test -test: - ./libapt/run-tests |