aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/evolution/nmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/hybrid/evolution/nmakefile')
-rw-r--r--dist/examples/cxx/hybrid/evolution/nmakefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/dist/examples/cxx/hybrid/evolution/nmakefile b/dist/examples/cxx/hybrid/evolution/nmakefile
new file mode 100644
index 0000000..61d6546
--- /dev/null
+++ b/dist/examples/cxx/hybrid/evolution/nmakefile
@@ -0,0 +1,27 @@
+root = ..\..\..\..
+
+!include $(root)\build\config.nmake
+
+dirs =
+
+!if "$(XSDE_IOSTREAM)" == "y"
+!if "$(XSDE_EXCEPTIONS)" == "y"
+
+!if "$(XSDE_STL)" == "y"
+dirs = $(dirs) ignore passthrough
+!endif
+
+!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 $@"