aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/parser/makefile
blob: c28608971606caceca62fd3c30e453e1680bf9b3 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
root := ../../..

include $(root)/build/config.make

dirs :=

ifneq ($(XSDE_REUSE_STYLE),none)
dirs += generated
endif

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

dirs += hello

ifneq ($(XSDE_REUSE_STYLE),none)
dirs += library multiroot

ifeq ($(XSDE_POLYMORPHIC),y)
dirs += polymorphism polyroot
endif

endif

ifeq ($(XSDE_REUSE_STYLE),tiein)
dirs += mixed wildcard
endif

endif
endif
endif

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


.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
%.make:: ;

%:: $(dirs) ;