aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-08-11 19:35:53 +0200
committerDavid Robillard <d@drobilla.net>2018-09-29 14:46:19 +0200
commit16ec07372eaa92e361f66687d6da2d7e5541c0aa (patch)
treea1256b9a1b55f98cd3988059cebee4554e8f96a2 /Makefile
parentfdcdfdc94293f8259f082081a11fc004fc5f8fc9 (diff)
downloadchilbert-16ec07372eaa92e361f66687d6da2d7e5541c0aa.tar.gz
chilbert-16ec07372eaa92e361f66687d6da2d7e5541c0aa.tar.bz2
chilbert-16ec07372eaa92e361f66687d6da2d7e5541c0aa.zip
Flesh out bitvec tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f24d237..58def9b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
CXXFLAGS += -I. -std=c++14 -Wall -Wextra -Wno-unused-parameter
HEADERS = $(wildcard chilbert/*.hpp)
-TESTS = test/test_fsb
+TESTS = test/test_bitvec
all: $(TESTS)
@@ -13,7 +13,7 @@ test/%: test/%.cpp $(HEADERS)
FORCE:
-test/%.test: test/test_fsb FORCE
+test/%.test: $(TESTS) FORCE
@test/$*
test: $(addsuffix .test, $(TESTS))