aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-08-18 13:23:36 +0200
committerDavid Robillard <d@drobilla.net>2018-09-29 14:46:38 +0200
commit591ccc10408497bb856431d37834a9eb37311742 (patch)
tree39b2124e8bfc500be09b1b5b34c7a7b38e8d6947 /Makefile
parent1e950679374a783311c21cd74e815fd8073339a5 (diff)
downloadchilbert-591ccc10408497bb856431d37834a9eb37311742.tar.gz
chilbert-591ccc10408497bb856431d37834a9eb37311742.tar.bz2
chilbert-591ccc10408497bb856431d37834a9eb37311742.zip
Clean up test runner targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 437ca31..ee64ced 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ test/%: test/%.cpp $(HEADERS)
FORCE:
-test/%.test: $(TESTS) FORCE
- @test/$*
+test/%.run: $(TESTS) FORCE
+ test/$*
-test: $(addsuffix .test, $(TESTS))
+test: $(addsuffix .run, $(TESTS))