aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/parser/wildcard/nmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/parser/wildcard/nmakefile')
-rw-r--r--dist/examples/cxx/parser/wildcard/nmakefile39
1 files changed, 39 insertions, 0 deletions
diff --git a/dist/examples/cxx/parser/wildcard/nmakefile b/dist/examples/cxx/parser/wildcard/nmakefile
new file mode 100644
index 0000000..c1f333b
--- /dev/null
+++ b/dist/examples/cxx/parser/wildcard/nmakefile
@@ -0,0 +1,39 @@
+root = ..\..\..\..
+
+!include $(root)\build\cxx\rules.nmake
+
+# Build.
+#
+EXTRA_CPPFLAGS = /I$(root)\libxsde
+
+!if "$(XSDE_LONGLONG)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
+!endif
+
+!if "$(XSDE_PARSER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+!endif
+
+!if "$(XSDE_POLYMORPHIC)" == "y"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --runtime-polymorphic
+!endif
+
+driver.exe: driver.obj email-pskel.obj $(root)\libxsde\xsde\xsde.lib
+
+driver.obj: driver.cxx email-pskel.hxx
+email-pskel.obj: email-pskel.cxx email-pskel.hxx
+
+email-pskel.cxx email-pskel.hxx: email.xsd
+ $(root)\bin\xsde.exe cxx-parser $(XSDFLAGS) $(EXTRA_XSDFLAGS) email.xsd
+
+# Test.
+#
+test: driver.exe email.xml
+ .\driver.exe email.xml
+
+
+# Clean.
+#
+clean:
+ -del email-pskel.?xx email-pskel.obj driver.obj driver.exe
+