blob: a9c170f7f1cd53cf2d6e5fbe2b7917dbcc6b4a73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
ALL_DIRS ?= $(filter-out Makefile%, $(wildcard *))
VERIFY_DIRS = $(addprefix verif-,$(ALL_DIRS))
CLEAN_DIRS = $(addprefix clean-,$(ALL_DIRS))
.PHONY: all
all: $(VERIFY_DIRS)
.PHONY: clean
clean: $(CLEAN_DIRS)
.PHONY: verif-%
verif-%:
cd $* && make all
.PHONY: clean-%
clean-%:
cd $* && make clean
|