summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/tree/binary/boost/makefile
blob: 7c35f027f7b572fd5f107fef82deea5c385e395d (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
root := ../../../..

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


override XSDFLAGS += --generate-ostream             \
--hxx-prologue-file library-prologue.hxx            \
--generate-insertion boost::archive::text_oarchive  \
--generate-extraction boost::archive::text_iarchive


override LIBS += -lboost_serialization


# Build.
#
driver: driver.o library.o

library.o: library.cxx library.hxx boost-archive-insertion.hxx boost-archive-extraction.hxx
driver.o: driver.cxx library.hxx boost-archive-insertion.hxx boost-archive-extraction.hxx

library.cxx library.hxx: library.xsd


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


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