blob: c934af385c6dc30a44ff01aaae694704e4132f2f [file] [log] [blame]
# ---- Test patterns for project striVe ----
.SUFFIXES:
.SILENT: clean all
PATTERNS = gpio mem uart perf hkspi sysctrl xbar
all: ${PATTERNS}
for i in ${PATTERNS}; do \
( cd $$i && make -f Makefile $${i}.vcd &> verify.log && grep Monitor verify.log) ; \
done
clean: ${PATTERNS}
for i in ${PATTERNS}; do \
( cd $$i && make clean ) ; \
done
.PHONY: clean all