aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/hello/makefile
blob: 9b2130d27c5cb4e3f81976260e0870740de54934 (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
root := ../../../..

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

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

ifeq ($(XSDE_ENCODING),iso8859-1)
EXTRA_XSDFLAGS += --char-encoding iso8859-1
endif

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-parser-val
endif

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

ifeq ($(XSDE_POLYMORPHIC),y)
EXTRA_XSDFLAGS += --runtime-polymorphic
endif

driver: driver.o hello.o hello-pskel.o hello-pimpl.o \
$(root)/libxsde/xsde/libxsde.a

driver.o: driver.cxx hello.hxx hello-pimpl.hxx
hello.o: hello.cxx
hello-pskel.o: hello-pskel.cxx
hello-pimpl.o: hello-pimpl.cxx

.PRECIOUS: %.hxx %.cxx %-pskel.hxx %-pskel.cxx %-pimpl.hxx %-pimpl.cxx
%.hxx %.cxx %-pskel.hxx %-pskel.cxx %-pimpl.hxx %-pimpl.cxx: %.xsd
	$(root)/bin/xsde cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
--generate-parser --generate-aggregate $<


# Generate.
#
.PHONY: gen
gen: hello.hxx


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

# Clean.
#
.PHONY: clean cleanobj
cleanobj:
	rm -f hello-pimpl.o hello-pskel.o hello.o driver.o driver

clean: cleanobj
	rm -f hello-pimpl.?xx hello-pskel.?xx hello.?xx