aboutsummaryrefslogtreecommitdiff
path: root/dist/tests/cxx/parser/makefile
blob: 0b02e4db5a5685b5797b8d4d7e7a19c5357d09c1 (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
54
55
56
57
58
59
60
61
62
root := ../../..

include $(root)/build/config.make

dirs := generated-impl duplicate

ifeq ($(XSDE_IOSTREAM),y)
ifeq ($(XSDE_EXCEPTIONS),y)
dirs += \
built-in       \
recursive      \
test-template  \
union

ifeq ($(XSDE_REUSE_STYLE),tiein)
dirs += \
enumeration    \
list
endif

endif # EXCEPTIONS

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

dirs += reset

endif # IOSTREAM

ifeq ($(XSDE_PARSER_VALIDATION),y)
dirs += validation

ifeq ($(XSDE_IOSTREAM),y)

ifeq ($(XSDE_EXCEPTIONS),y)
dirs += error-handling/exceptions
else
dirs += error-handling/codes
endif

ifeq ($(XSDE_EXCEPTIONS),y)
dirs += name-clash/inheritance
endif

endif
endif


.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
%.make:: ;

%:: $(dirs) ;