aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/nmakefile
blob: 70d4dfe620fcf24a321c2f0421df7a5c4d04d286 (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
root = ..\..\..

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

dirs = binary compositors custom

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

dirs = $(dirs) hello multiroot streaming

!if "$(XSDE_STL)" == "y"
dirs = $(dirs) library wildcard filter
!endif

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

!endif
!endif

!if "$(XSDE_STL)" == "n"
!if "$(XSDE_EXCEPTIONS)" == "n"
dirs = $(dirs) minimal
!endif
!endif

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

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