summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/tree/makefile
blob: bf2b98d171dfdfd2850699634b39e0478777ca34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dirs := binary caching custom hello library messaging mixed multiroot \
performance polymorphism streaming wildcard

ifeq ($(WITH_DBXML),1)
dirs += dbxml
endif

ifeq ($(WITH_XQILLA),1)
dirs += xpath
endif

.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
% :: $(dirs) ;