mirror of
https://gitlab.com/brendanhaines/cpu.git
synced 2024-12-25 18:46:53 -07:00
disable non-functional test_c
This commit is contained in:
parent
7ab99bb5ff
commit
a9c5f815ba
|
@ -1,17 +1,18 @@
|
|||
all: verify
|
||||
|
||||
# BENCHES = $(filter-out common/, $(sort $(dir $(wildcard */))))
|
||||
BENCHES = basic_test
|
||||
BENCH ?= $(sort $(dir $(wildcard test_*/)))
|
||||
|
||||
$(info $$BENCHES is [${BENCHES}])
|
||||
# override bench to disable test_c
|
||||
BENCH = test_basic
|
||||
|
||||
verify:
|
||||
make -C test_basic verify
|
||||
make -C test_c verify
|
||||
$(foreach dir, $(BENCH), make -C $(dir) verify;)
|
||||
|
||||
clean:
|
||||
make -C test_basic clean
|
||||
make -C test_c clean
|
||||
$(foreach dir, $(BENCH), make -C $(dir) clean;)
|
||||
|
||||
help:
|
||||
$(info BENCH options: [${BENCH}])
|
||||
|
||||
.SECONDARY:
|
||||
.PHONY: all clean verify
|
||||
.PHONY: all clean verify help
|
||||
|
|
Loading…
Reference in New Issue
Block a user