aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile13
1 files changed, 4 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 808c71f..0cf7eb6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,10 @@
-TEST += bitfield
-TEST += option
-TEST += timer
-TEST += log
-TEST += owning_mutex
-TEST += latch
+TEST = $(wildcard test/*.cc)
# -- INTERNALS -----------------------------------------------------------------
-BINS = $(TEST:%=build/%)
-DEPS = $(TEST:%=build/%.d)
-RUNS = $(TEST:%=run/%)
+BINS = $(TEST:test/%.cc=build/%)
+DEPS = $(TEST:test/%.cc=build/%.d)
+RUNS = $(TEST:test/%.cc=run/%)
# -- FLAGS ---------------------------------------------------------------------