aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/makefile
blob: 4e089393958c5e7f86c842002cb021d54922dc7c (plain)
1
2
3
4
5
6
7
8
9
10
11
dirs := hybrid parser serializer

.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
% :: $(dirs) ;