summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/tree/custom/makefile
blob: 584f599fed61927488c2a681b240f1bf3900978e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
dirs := comments contacts double mixed taxonomy wildcard

ifeq ($(WITH_BOOST),1)
dirs += calendar
endif

.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
% :: $(dirs) ;