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