large restructure
This commit is contained in:
19
testbench/Makefile
Normal file
19
testbench/Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
Reference in New Issue
Block a user