aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/evolution/makefile
blob: b03df825ec88bf7be181136e9862655612098f97 (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
root := ../../../..

include $(root)/build/config.make

dirs :=

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

ifeq ($(XSDE_POLYMORPHIC),y)
dirs += ignore passthrough
endif

endif
endif
endif

.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
%.make:: ;

%:: $(dirs) ;