summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/tree/custom/contacts/makefile
blob: 845f6c3a56a0224a68c27ab00dd8d2789daa8bbd (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
root := ../../../..

include $(root)/build/cxx/rules.make
include $(root)/build/xsd/tree-rules.make


override XSDFLAGS += --generate-inline \
--hxx-epilogue '\#include "contacts-custom.hxx"'

ifneq ($(shell uname -o),Msys)
override XSDFLAGS += --custom-type contact=/contact_base
else
# Prevent MSYS from converting / to Windows path.
override XSDFLAGS += --custom-type contact=//contact_base
endif

# Build.
#
driver: driver.o contacts.o contacts-custom.o

contacts.o: contacts.cxx contacts.ixx contacts.hxx contacts-custom.hxx
driver.o: driver.cxx contacts.ixx contacts.hxx contacts-custom.hxx
contacts-custom.o: contacts-custom.cxx contacts.ixx contacts.hxx contacts-custom.hxx

contacts.cxx contacts.hxx contacts.ixx: contacts.xsd


# Test
#
.PHONY: test
test: driver contacts.xml
	./driver contacts.xml


# Clean.
#
.PHONY: clean
clean:
	rm -f contacts-custom.o contacts.o contacts.?xx driver.o driver