aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/nmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/hybrid/nmakefile')
-rw-r--r--dist/examples/cxx/hybrid/nmakefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/dist/examples/cxx/hybrid/nmakefile b/dist/examples/cxx/hybrid/nmakefile
new file mode 100644
index 0000000..5d0b337
--- /dev/null
+++ b/dist/examples/cxx/hybrid/nmakefile
@@ -0,0 +1,31 @@
+root = ..\..\..
+
+!include $(root)\build\config.nmake
+
+dirs = compositors
+
+!if "$(XSDE_IOSTREAM)" == "y"
+!if "$(XSDE_EXCEPTIONS)" == "y"
+
+dirs = $(dirs) hello multiroot streaming
+
+!if "$(XSDE_STL)" == "y"
+dirs = $(dirs) library wildcard filter
+!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 $@"