aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/binary/custom/nmakefile
blob: b53db8e44308031547181042fb0b28b2c6799f38 (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
root = ..\..\..\..\..

!include $(root)\build\cxx\rules.nmake

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

!if "$(XSDE_STL)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-stl
!endif

!if "$(XSDE_LONGLONG)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif

!if "$(XSDE_PARSER_VALIDATION)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
!endif

!if "$(XSDE_REUSE_STYLE)" == "mixin"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --reuse-style-mixin
!endif

driver.exe: driver.obj library.obj library-pskel.obj library-pimpl.obj \
library-sskel.obj library-simpl.obj exceptions.obj orawstream.obj \
irawstream.obj $(root)\libxsde\xsde\xsde.lib

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

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

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

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

# Test.
#
test: driver.exe library.xml
	.\driver.exe library.xml

# Clean.
#
clean:
	-del 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.obj library-pskel.obj library-simpl.obj \
library-sskel.obj library.obj irawstream.obj orawstream.obj exceptions.obj \
driver.obj driver.exe