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

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

dirs =

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

!if "$(XSDE_STL)" == "y"
dirs = $(dirs) custom
!endif

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

!if "$(XSDE_XDR)" == "y"
dirs = $(dirs) xdr
!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 $@"