aboutsummaryrefslogtreecommitdiff
path: root/dist/tests/cxx/parser/validation/built-in/nmakefile
blob: 21e0040d10a932b8caa214ce5581443c5805c469 (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
root = ..\..\..\..\..

!include $(root)\build\config.nmake

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

!if "$(XSDE_IOSTREAM)" == "y"
!if "$(XSDE_EXCEPTIONS)" == "y"
!if "$(XSDE_REUSE_STYLE)" == "tiein"
dirs = $(dirs) any-type
!endif
!endif
!endif

!if "$(XSDE_LONGLONG)" == "y"
dirs = $(dirs) long-long
!else
dirs = $(dirs) long
!endif

all:
	@for %i in ( $(dirs) ) do \
@cmd /c "cd %i & $(MAKE) /nologo /f nmakefile"

gen test clean cleanobj:
	@for %i in ( $(dirs) ) do \
@cmd /c "cd %i & $(MAKE) /nologo /f nmakefile $@"