cpu/testbench/Makefile

18 lines
287 B
Makefile
Raw Normal View History

2021-08-11 00:18:46 -06:00
all: verify
# BENCHES = $(filter-out common/, $(sort $(dir $(wildcard */))))
BENCHES = basic_test
$(info $$BENCHES is [${BENCHES}])
verify:
2021-09-08 23:44:45 -06:00
make -C test_basic verify
2021-09-08 23:43:15 -06:00
make -C test_c verify
2021-08-11 00:18:46 -06:00
clean:
2021-09-08 23:44:45 -06:00
make -C test_basic clean
2021-09-08 23:43:15 -06:00
make -C test_c clean
2021-08-11 00:18:46 -06:00
.SECONDARY:
.PHONY: all clean verify