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

ifeq ($(WITH_ZLIB),1)
dirs += compression
endif

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) ;