aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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))