| 1234567891011121314151617181920212223 | # Makefile for sub directories## mindepth makes sure we do not include this MakeileMAKEFILES = $(shell find . -mindepth 2 -name 'Makefile')DIRS = $(patsubst %/Makefile, %, $(MAKEFILES))# The sets of directories to do various things inBUILDDIRS = $(DIRS:%=build-%)CLEANDIRS = $(DIRS:%=clean-%)all: $(BUILDDIRS)$(DIRS): $(BUILDDIRS)$(BUILDDIRS):	$(MAKE) -C $(@:build-%=%)clean: $(CLEANDIRS)$(CLEANDIRS):	$(MAKE) -C $(@:clean-%=%) clean.PHONY: subdirs $(DIRS).PHONY: subdirs $(BUILDDIRS).PHONY: subdirs $(CLEANDIRS).PHONY: all clean
 |