aboutsummaryrefslogtreecommitdiff
path: root/dist/tests/cxx/parser/validation/built-in/makefile
blob: 2b5fabd2d84a8031a1b7bf092da02f155e0949df (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
root := ../../../../..

include $(root)/build/config.make

dirs := binary boolean byte date-time float int integer qname short \
string uri

ifeq ($(XSDE_IOSTREAM),y)
ifeq ($(XSDE_EXCEPTIONS),y)
ifeq ($(XSDE_REUSE_STYLE),tiein)
dirs += any-type
endif
endif
endif

ifeq ($(XSDE_LONGLONG),y)
dirs += long-long
else
dirs += long
endif

.PHONY: all $(dirs)

all: $(dirs)

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

makefile: ;
%.make:: ;

%:: $(dirs) ;