cpu/testbench/Makefile

20 lines
302 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:
@for d in $(BENCHES); do \
make -C $d verify; \
done
clean:
@for d in $(BENCHES); do \
make -C $d clean; \
done
.SECONDARY:
.PHONY: all clean verify