summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/parser/makefile
blob: b778cbd9ae00906b8e9b4ddea41f32d94528d506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
dirs := generated hello library mixin mixed multiroot performance \
polymorphism polyroot wildcard

.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
% :: $(dirs) ;