summaryrefslogtreecommitdiff
path: root/dist/examples/makefile
blob: 5b8947e30fcfa83aacd377281c4e4f38a4e60b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
dirs := cxx

.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
% :: $(dirs) ;