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

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

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

.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
% :: $(dirs) ;