diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -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 --------------------------------------------------------------------- |