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/makefile49
1 files changed, 0 insertions, 49 deletions
diff --git a/dist/examples/cxx/tree/custom/comments/makefile b/dist/examples/cxx/tree/custom/comments/makefile
deleted file mode 100644
index 442ab86..0000000
--- a/dist/examples/cxx/tree/custom/comments/makefile
+++ /dev/null
@@ -1,49 +0,0 @@
-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 \
---hxx-epilogue '\#include "xml-schema-custom.hxx"'
-
-ifneq ($(shell uname -o 2>&1),Msys)
-XML_SCHEMA_XSDFLAGS += --custom-type anyType=/type_base
-else
-# Prevent MSYS from converting / to Windows path.
-XML_SCHEMA_XSDFLAGS += --custom-type anyType=//type_base
-endif
-
-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