aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/parser/generated/nmakefile
blob: c801757d6ff972204e670af070af4ae25cec2c24 (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
71
72
73
74
75
76
77
78
79
root = ..\..\..\..

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

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

EXTRA_XSDFLAGS = --generate-print-impl --generate-test-driver

# If you are basing your own code on this example and make changes
# to the sample implementation and/or test driver, make sure you
# remove this option or your changes will be lost forever.
#
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --force-overwrite

!if "$(XSDE_ENCODING)" == "iso8859-1"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --char-encoding iso8859-1
!endif

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

!if "$(XSDE_IOSTREAM)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-iostream
!endif

!if "$(XSDE_EXCEPTIONS)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-exceptions
!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

!if "$(XSDE_POLYMORPHIC)" == "y"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --runtime-polymorphic
!endif

library-pdriver.exe: library-pdriver.obj library-pskel.obj library-pimpl.obj $(root)\libxsde\xsde\xsde.lib

library-pdriver.obj: library-pdriver.cxx library-pimpl.hxx library-pskel.hxx
library-pimpl.obj: library-pimpl.cxx library-pimpl.hxx library-pskel.hxx
library-pskel.obj: library-pskel.cxx library-pskel.hxx


library-pskel.hxx library-pskel.cxx \
library-pimpl.hxx library-pimpl.cxx \
library-pdriver.cxx: library.xsd
	$(root)\bin\xsde.exe cxx-parser $(XSDFLAGS) $(EXTRA_XSDFLAGS) library.xsd


# Generate.
#
gen: library-pdriver.cxx


# Test.
#
test: library-pdriver.exe library.xml
	.\library-pdriver.exe library.xml


# Clean.
#
cleanobj:
	-del library-pdriver.obj library-pimpl.obj library-pskel.obj library-pdriver.exe

clean: cleanobj
	-del library-pdriver.?xx library-pimpl.?xx library-pskel.?xx