aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/hello
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/hybrid/hello')
-rw-r--r--dist/examples/cxx/hybrid/hello/makefile49
-rw-r--r--dist/examples/cxx/hybrid/hello/nmakefile47
2 files changed, 96 insertions, 0 deletions
diff --git a/dist/examples/cxx/hybrid/hello/makefile b/dist/examples/cxx/hybrid/hello/makefile
new file mode 100644
index 0000000..f184264
--- /dev/null
+++ b/dist/examples/cxx/hybrid/hello/makefile
@@ -0,0 +1,49 @@
+root := ../../../..
+
+include $(root)/build/cxx/rules.make
+
+# Build.
+#
+EXTRA_CPPFLAGS := -I$(root)/libxsde
+
+ifeq ($(XSDE_STL),n)
+EXTRA_XSDFLAGS += --no-stl
+endif
+
+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
+
+driver: driver.o hello.o hello-pskel.o hello-pimpl.o \
+$(root)/libxsde/xsde/libxsde.a
+
+driver.o: driver.cxx hello.hxx hello-pimpl.hxx
+hello.o: hello.cxx
+hello-pskel.o: hello-pskel.cxx
+hello-pimpl.o: hello-pimpl.cxx
+
+.PRECIOUS: %.hxx %.cxx %-pskel.hxx %-pskel.cxx %-pimpl.hxx %-pimpl.cxx
+%.hxx %.cxx %-pskel.hxx %-pskel.cxx %-pimpl.hxx %-pimpl.cxx: %.xsd
+ $(root)/bin/xsde cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
+--generate-parser --generate-aggregate $<
+
+# Test.
+#
+.PHONY: test
+test: driver hello.xml
+ ./driver hello.xml
+
+# Clean.
+#
+.PHONY: clean
+clean:
+ rm -f hello-pimpl.?xx hello-pskel.?xx hello.?xx hello-pimpl.o \
+hello-pskel.o hello.o driver.o driver
diff --git a/dist/examples/cxx/hybrid/hello/nmakefile b/dist/examples/cxx/hybrid/hello/nmakefile
new file mode 100644
index 0000000..4044cb1
--- /dev/null
+++ b/dist/examples/cxx/hybrid/hello/nmakefile
@@ -0,0 +1,47 @@
+root = ..\..\..\..
+
+!include $(root)\build\cxx\rules.nmake
+
+# Build.
+#
+EXTRA_CPPFLAGS = /I$(root)\libxsde
+
+!if "$(XSDE_STL)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-stl
+!endif
+
+!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
+
+driver.exe: driver.obj hello.obj hello-pskel.obj hello-pimpl.obj \
+$(root)\libxsde\xsde\xsde.lib
+
+driver.obj: driver.cxx hello.hxx hello-pimpl.hxx
+hello.obj: hello.cxx
+hello-pskel.obj: hello-pskel.cxx
+hello-pimpl.obj: hello-pimpl.cxx
+
+hello.cxx hello.hxx hello-pskel.cxx hello-pskel.hxx \
+hello-pimpl.cxx hello-pimpl.hxx: hello.xsd
+ $(root)\bin\xsde.exe cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
+--generate-parser --generate-aggregate hello.xsd
+
+# Test.
+#
+test: driver.exe hello.xml
+ .\driver.exe hello.xml
+
+# Clean.
+#
+clean:
+ -del hello-pimpl.?xx hello-pskel.?xx hello.?xx hello-pimpl.obj \
+hello-pskel.obj hello.obj driver.obj driver.exe