summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/tree/compression/makefile
blob: f55c6ad59fcdd7f3308535d965fc2d7adb7242bd (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 --generate-serialization

override LIBS += -lz

# Build.
#
driver: driver.o library.o compressed-format-target.o compressed-input-source.o

library.o: library.cxx library.hxx
driver.o: driver.cxx library.hxx compressed-format-target.hxx \
compressed-input-source.hxx
compressed-format-target.o: compressed-format-target.cxx
compressed-input-source.o: compressed-input-source.cxx

library.cxx library.hxx: library.xsd


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


# Clean.
#
.PHONY: clean
clean:
	rm -f library.o library.?xx driver.o compressed-format-target.o \
compressed-input-source.o driver out.xml.gz