aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/parser/hello
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/parser/hello')
-rw-r--r--dist/examples/cxx/parser/hello/makefile50
-rw-r--r--dist/examples/cxx/parser/hello/nmakefile47
2 files changed, 97 insertions, 0 deletions
diff --git a/dist/examples/cxx/parser/hello/makefile b/dist/examples/cxx/parser/hello/makefile
new file mode 100644
index 0000000..d31ecff
--- /dev/null
+++ b/dist/examples/cxx/parser/hello/makefile
@@ -0,0 +1,50 @@
+root := ../../../..
+
+include $(root)/build/cxx/rules.make
+
+# Build.
+#
+EXTRA_CPPFLAGS := -I$(root)/libxsde
+
+ifeq ($(XSDE_LONGLONG),n)
+EXTRA_XSDFLAGS += --no-long-long
+endif
+
+ifeq ($(XSDE_PARSER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-validation
+endif
+
+ifeq ($(XSDE_REUSE_STYLE),mixin)
+EXTRA_XSDFLAGS += --reuse-style-mixin
+endif
+
+ifeq ($(XSDE_REUSE_STYLE),none)
+EXTRA_XSDFLAGS += --reuse-style-none
+endif
+
+ifeq ($(XSDE_POLYMORPHIC),y)
+EXTRA_XSDFLAGS += --runtime-polymorphic
+endif
+
+driver: driver.o hello-pskel.o $(root)/libxsde/xsde/libxsde.a
+
+driver.o: driver.cxx hello-pskel.hxx
+hello-pskel.o: hello-pskel.cxx hello-pskel.hxx
+
+.PRECIOUS: %-pskel.hxx %-pskel.cxx
+%-pskel.hxx %-pskel.cxx: %.xsd
+ $(root)/bin/xsde cxx-parser $(XSDFLAGS) $(EXTRA_XSDFLAGS) $<
+
+# Test.
+#
+.PHONY: test
+test: driver hello.xml
+ ./driver hello.xml
+
+
+# Clean.
+#
+.PHONY: clean
+clean:
+ rm -f hello-pskel.?xx hello-pskel.o driver.o driver
+
diff --git a/dist/examples/cxx/parser/hello/nmakefile b/dist/examples/cxx/parser/hello/nmakefile
new file mode 100644
index 0000000..e8b6ccf
--- /dev/null
+++ b/dist/examples/cxx/parser/hello/nmakefile
@@ -0,0 +1,47 @@
+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_REUSE_STYLE)" == "mixin"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --reuse-style-mixin
+!endif
+
+!if "$(XSDE_REUSE_STYLE)" == "none"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --reuse-style-none
+!endif
+
+!if "$(XSDE_POLYMORPHIC)" == "y"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --runtime-polymorphic
+!endif
+
+driver.exe: driver.obj hello-pskel.obj $(root)\libxsde\xsde\xsde.lib
+
+driver.obj: driver.cxx hello-pskel.hxx
+hello-pskel.obj: hello-pskel.cxx hello-pskel.hxx
+
+hello-pskel.cxx hello-pskel.hxx: hello.xsd
+ $(root)\bin\xsde.exe cxx-parser $(XSDFLAGS) $(EXTRA_XSDFLAGS) hello.xsd
+
+# Test.
+#
+test: driver.exe hello.xml
+ .\driver.exe hello.xml
+
+
+# Clean.
+#
+clean:
+ -del hello-pskel.?xx hello-pskel.obj driver.obj driver.exe
+