1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
test_dirs:=$(shell find . -maxdepth 1 -mindepth 1 -name ".arch-ids" -prune -o -type d -print) all: check: build @ for subdir in ${test_dirs}; do \ $(MAKE) -C $$subdir check || exit $$?;\ done build: @ for subdir in ${test_dirs}; do\ $(MAKE) -C $$subdir || exit $$?;\ done .PHONY: check all build #arch-tag: 0f9bfda9-6831-467e-ba80-bd32e1ea2306 |