rename testbench to tests
This commit is contained in:
18
tests/Makefile
Normal file
18
tests/Makefile
Normal file
@@ -0,0 +1,18 @@
|
||||
all: verify
|
||||
|
||||
BENCH ?= $(sort $(dir $(wildcard test_*/)))
|
||||
|
||||
# override bench to disable test_c
|
||||
BENCH = test_basic
|
||||
|
||||
verify:
|
||||
$(foreach dir, $(BENCH), make -C $(dir) verify;)
|
||||
|
||||
clean:
|
||||
$(foreach dir, $(BENCH), make -C $(dir) clean;)
|
||||
|
||||
help:
|
||||
$(info BENCH options: [${BENCH}])
|
||||
|
||||
.SECONDARY:
|
||||
.PHONY: all clean verify help
|
Reference in New Issue
Block a user