cpu/testbench/Makefile

16 lines
242 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-08-11 00:21:00 -06:00
make -C basic_test verify
2021-08-11 00:18:46 -06:00
clean:
2021-08-11 00:21:00 -06:00
make -C basic_test clean
2021-08-11 00:18:46 -06:00
.SECONDARY:
.PHONY: all clean verify