aboutsummaryrefslogtreecommitdiff
path: root/dist/tests/cxx/hybrid/makefile
blob: 3cd2d7d8e6441afbc972067e6680cc9f59d30cd0 (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
root := ../../..

include $(root)/build/config.make

dirs := sequences

ifeq ($(XSDE_POLYMORPHIC),y)
dirs += polymorphism/enumeration polymorphism/multischema
endif

ifeq ($(XSDE_STL),y)
ifeq ($(XSDE_STL_ITERATOR),y)
dirs += iterator
endif
endif

ifeq ($(XSDE_IOSTREAM),y)
dirs += built-in default enumeration list test-template union

ifeq ($(XSDE_CDR),y)
dirs += binary/cdr
endif

ifeq ($(XSDE_XDR),y)
dirs += binary/xdr
endif

ifeq ($(XSDE_PARSER_VALIDATION),y)
dirs += choice recursive
endif

endif # XSDE_IOSTREAM


.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
%.make:: ;

%:: $(dirs) ;