cpu/testbench/Makefile

16 lines
242 B
Makefile

all: verify
# BENCHES = $(filter-out common/, $(sort $(dir $(wildcard */))))
BENCHES = basic_test
$(info $$BENCHES is [${BENCHES}])
verify:
make -C basic_test verify
clean:
make -C basic_test clean
.SECONDARY:
.PHONY: all clean verify