aboutsummaryrefslogtreecommitdiff
path: root/dist/tests/cxx/parser/validation/nmakefile
blob: e8a2501d50c923a9714e8d4c22a1a190b696e368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
root = ..\..\..\..

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

dirs = built-in

!if "$(XSDE_IOSTREAM)" == "y"
!if "$(XSDE_EXCEPTIONS)" == "y"
dirs = $(dirs) all any attribute choice restriction sequence
!endif
!endif

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