mirror of
https://gitlab.com/brendanhaines/cpu.git
synced 2024-12-26 19:16:48 -07:00
20 lines
302 B
Makefile
20 lines
302 B
Makefile
|
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
|