aboutsummaryrefslogtreecommitdiff
path: root/dist/tests/cxx/parser/nmakefile
blob: b4e6d498d13a70c2f679c1f8d26268a1f6ef9273 (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
root = ..\..\..

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

dirs = generated-impl duplicate

!if "$(XSDE_IOSTREAM)" == "y"
!if "$(XSDE_EXCEPTIONS)" == "y"
dirs = $(dirs) built-in recursive test-template union

!if "$(XSDE_REUSE_STYLE)" == "tiein"
dirs = $(dirs) enumeration list
!endif

!endif # EXCEPTIONS

!if "$(XSDE_POLYMORPHIC)" == "y"
!if "$(XSDE_REUSE_STYLE)" == "tiein"
dirs = $(dirs) polymorphism
!endif
!endif

dirs = $(dirs) reset

!endif # IOSTREAM

!if "$(XSDE_PARSER_VALIDATION)" == "y"
dirs = $(dirs) validation

!if "$(XSDE_IOSTREAM)" == "y"

!if "$(XSDE_EXCEPTIONS)" == "y"
dirs = $(dirs) error-handling\exceptions
!else
dirs = $(dirs) error-handling\codes
!endif

!if "$(XSDE_EXCEPTIONS)" == "y"
dirs = $(dirs) name-clash\inheritance
!endif

!endif
!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 $@"