summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/tree/custom/comments/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/tree/custom/comments/makefile')
-rw-r--r--dist/examples/cxx/tree/custom/comments/makefile43
1 files changed, 43 insertions, 0 deletions
diff --git a/dist/examples/cxx/tree/custom/comments/makefile b/dist/examples/cxx/tree/custom/comments/makefile
new file mode 100644
index 0000000..963f262
--- /dev/null
+++ b/dist/examples/cxx/tree/custom/comments/makefile
@@ -0,0 +1,43 @@
+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 people.o xml-schema-custom.o dom-parse.o
+
+driver.o: driver.cxx dom-parse.hxx people.ixx people.hxx xml-schema.hxx xml-schema-custom.hxx
+people.o: people.cxx people.ixx people.hxx xml-schema.hxx xml-schema-custom.hxx
+xml-schema-custom.o: xml-schema.hxx xml-schema-custom.hxx
+dom-parse.o: dom-parse.cxx dom-parse.hxx
+
+people.cxx people.ixx people.hxx: people.xsd
+
+# Generate header for XML Schema namespace.
+#
+XML_SCHEMA_XSDFLAGS := --generate-xml-schema --generate-serialization \
+--custom-type anyType=/type_base \
+--hxx-epilogue '\#include "xml-schema-custom.hxx"'
+
+xml-schema.hxx:
+ $(XSD) cxx-tree $(XML_SCHEMA_XSDFLAGS) xml-schema.xsd
+
+
+# Test
+#
+.PHONY: test
+test: driver people.xml
+ ./driver people.xml
+
+
+# Clean.
+#
+.PHONY: clean
+clean:
+ rm -f xml-schema.hxx xml-schema-custom.o people.o people.?xx dom-parse.o driver.o driver