summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/tree/order/makefile
blob: 2713b6ef938accf247d7da9c7be06ed36a545899 (plain)
1
2
3
4
5
6
7
8
9
10
11
dirs := element mixed

.PHONY: all $(dirs)

all: $(dirs)

$(dirs):
	@$(MAKE) -C $@ $(MAKECMDGOALS)

makefile: ;
% :: $(dirs) ;