diff options
author | David Robillard <d@drobilla.net> | 2018-08-18 13:23:36 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-29 14:46:38 +0200 |
commit | 591ccc10408497bb856431d37834a9eb37311742 (patch) | |
tree | 39b2124e8bfc500be09b1b5b34c7a7b38e8d6947 | |
parent | 1e950679374a783311c21cd74e815fd8073339a5 (diff) | |
download | chilbert-591ccc10408497bb856431d37834a9eb37311742.tar.gz chilbert-591ccc10408497bb856431d37834a9eb37311742.tar.bz2 chilbert-591ccc10408497bb856431d37834a9eb37311742.zip |
Clean up test runner targets
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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)) |