cpu/testbench/Makefile

18 lines
287 B
Makefile

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