aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/binary/custom/makefile
blob: c0e57ad5a76a9eb68386f04724640cab2a996437 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
root := ../../../../..

include $(root)/build/cxx/rules.make

# Build.
#
EXTRA_CPPFLAGS := -I$(root)/libxsde

ifeq ($(XSDE_STL),n)
EXTRA_XSDFLAGS += --no-stl
endif

ifeq ($(XSDE_LONGLONG),n)
EXTRA_XSDFLAGS += --no-long-long
endif

ifeq ($(XSDE_PARSER_VALIDATION),n)
EXTRA_XSDFLAGS += --suppress-validation
endif

ifeq ($(XSDE_REUSE_STYLE),mixin)
EXTRA_XSDFLAGS += --reuse-style-mixin
endif

driver: driver.o library.o library-pskel.o library-pimpl.o \
library-sskel.o library-simpl.o exceptions.o orawstream.o \
irawstream.o $(root)/libxsde/xsde/libxsde.a

driver.o: driver.cxx library.hxx library-pimpl.hxx library-simpl.hxx
exceptions.o: exceptions.cxx
orawstream.o: orawstream.cxx xml-schema.hxx
irawstream.o: irawstream.cxx xml-schema.hxx
library.o: library.cxx library.hxx
library-pskel.o: library-pskel.cxx library-pskel.hxx
library-pimpl.o: library-pimpl.cxx library-pskel.hxx
library-simpl.o: library-simpl.cxx library-simpl.hxx
library-simpl.o: library-simpl.cxx library-simpl.hxx

library.hxx: xml-schema.hxx
library-pskel.hxx: xml-schema-pskel.hxx
library-pimpl.hxx: xml-schema-pskel.hxx
library-sskel.hxx: xml-schema-sskel.hxx
library-simpl.hxx: xml-schema-sskel.hxx

.PRECIOUS: %.hxx %.cxx %-pskel.hxx %-pskel.cxx %-pimpl.hxx %-pimpl.cxx \
%-sskel.hxx %-sskel.cxx %-simpl.hxx %-simpl.cxx

xml-schema%hxx xml-schema-pskel%hxx xml-schema-sskel%hxx:
	$(root)/bin/xsde cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
--generate-parser --generate-serializer --generate-xml-schema xml-schema.xsd

%.hxx %.cxx %-pskel.hxx %-pskel.cxx %-pimpl.hxx %-pimpl.cxx \
%-sskel.hxx %-sskel.cxx %-simpl.hxx %-simpl.cxx: %.xsd
	$(root)/bin/xsde cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
--options-file options $<

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

# Clean.
#
.PHONY: clean
clean:
	rm -f xml-schema.hxx xml-schema-pskel.hxx xml-schema-sskel.hxx \
library-pimpl.?xx library-pskel.?xx library-simpl.?xx library-sskel.?xx \
library.?xx library-pimpl.o library-pskel.o library-simpl.o library-sskel.o \
library.o irawstream.o orawstream.o exceptions.o driver.o driver