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

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


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


# 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