mirror of
https://gitlab.com/brendanhaines/cpu.git
synced 2024-11-09 21:14:57 -07:00
16 lines
242 B
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
|