summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/tree/custom/double/makefile
blob: 948027902c1decb4e18031eade70f64dd1e3af2d (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
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