summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/tree/custom/comments/makefile
blob: 4c231c62ef717eb52078cbf5c0e7428b74ae419f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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),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