summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/tree/custom/double/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/tree/custom/double/makefile')
-rw-r--r--dist/examples/cxx/tree/custom/double/makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/dist/examples/cxx/tree/custom/double/makefile b/dist/examples/cxx/tree/custom/double/makefile
new file mode 100644
index 0000000..9480279
--- /dev/null
+++ b/dist/examples/cxx/tree/custom/double/makefile
@@ -0,0 +1,42 @@
+root := ../../../..
+
+include $(root)/build/cxx/rules.make
+include $(root)/build/xsd/tree-rules.make
+
+
+override XSDFLAGS += --generate-inline --generate-serialization \
+--extern-xml-schema xml-schema.xsd
+
+
+# Build.
+#
+driver: driver.o order.o double-custom.o
+
+driver.o: driver.cxx order.ixx order.hxx xml-schema.hxx double-custom.hxx
+order.o: order.cxx order.ixx order.hxx xml-schema.hxx double-custom.hxx
+double-custom.o: xml-schema.hxx double-custom.hxx
+
+order.cxx order.ixx order.hxx: order.xsd
+
+# Generate header for XML Schema namespace.
+#
+XML_SCHEMA_XSDFLAGS := --generate-xml-schema --generate-serialization \
+--custom-type double=double \
+--hxx-epilogue '\#include "double-custom.hxx"'
+
+xml-schema.hxx:
+ $(XSD) cxx-tree $(XML_SCHEMA_XSDFLAGS) xml-schema.xsd
+
+
+# Test
+#
+.PHONY: test
+test: driver
+ ./driver
+
+
+# Clean.
+#
+.PHONY: clean
+clean:
+ rm -f xml-schema.hxx double-custom.o order.o order.?xx driver.o driver