summaryrefslogtreecommitdiff
path: root/subdirs.mk
blob: a39b038d55861cafc278bf6c768ffeed1d09e7bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- make -*-

export dir_symbol += -

nullstring :=
space := $(nullstring) # keep it to assign space

subdirs: $(SUBDIRS)

$(SUBDIRS):
	echo $(subst $(space),,$(dir_symbol))'|' $@ $(MAKECMDGOALS)
	$(MAKE) -C $@ $(MAKECMDGOALS)

.PHONY: $(SUBDIRS)