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

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

dirs = sequences

!if "$(XSDE_POLYMORPHIC)" == "y"
dirs = $(dirs) polymorphism\enumeration polymorphism\multischema
!endif

!if "$(XSDE_STL)" == "y"
!if "$(XSDE_STL_ITERATOR)" == "y"
dirs = $(dirs) iterator
!endif
!endif

!if "$(XSDE_IOSTREAM)" == "y"
dirs = $(dirs) built-in default enumeration list test-template union pattern

!if "$(XSDE_ENCODING)" == "iso8859-1"
dirs = $(dirs) iso8859-1
!endif

!if "$(XSDE_PARSER_VALIDATION)" == "y"
dirs = $(dirs) choice recursive clone

!if "$(XSDE_CDR)" == "y"
dirs = $(dirs) binary/cdr
!endif

!if "$(XSDE_XDR)" == "y"
dirs = $(dirs) binary/xdr
!endif
!endif

!endif # XSDE_IOSTREAM


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

gen test:
	@for %i in ( $(dirs) ) do \
@cmd /c "echo entering %i && cd %i && $(MAKE) /nologo /f nmakefile $@" || exit 1

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