aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/makefile
blob: 38ccd04f58d985e3e333ea02d8bbe9f6db05c4a7 (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
25
26
27
28
29
30
31
32
33
34
35
36
root := ../../..

include $(root)/build/config.make

dirs := binary compositors

ifeq ($(XSDE_IOSTREAM),y)
ifeq ($(XSDE_EXCEPTIONS),y)

dirs += hello multiroot streaming

ifeq ($(XSDE_STL),y)
dirs += library wildcard filter
endif

endif
endif

ifeq ($(XSDE_STL),n)
ifeq ($(XSDE_EXCEPTIONS),n)
dirs += minimal
endif
endif


.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
%.make:: ;

%:: $(dirs) ;