mirror of
https://gitlab.com/brendanhaines/cpu.git
synced 2024-11-09 21:14:57 -07:00
18 lines
287 B
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 test_basic verify
|
|
make -C test_c verify
|
|
|
|
clean:
|
|
make -C test_basic clean
|
|
make -C test_c clean
|
|
|
|
.SECONDARY:
|
|
.PHONY: all clean verify
|