aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/hello/nmakefile
blob: 4044cb196d729bc5d4d9310282246f61499b6ea0 (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
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 hello.obj hello-pskel.obj hello-pimpl.obj \
$(root)\libxsde\xsde\xsde.lib

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

hello.cxx hello.hxx hello-pskel.cxx hello-pskel.hxx \
hello-pimpl.cxx hello-pimpl.hxx: hello.xsd
	$(root)\bin\xsde.exe cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
--generate-parser --generate-aggregate hello.xsd

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

# Clean.
#
clean:
	-del hello-pimpl.?xx hello-pskel.?xx hello.?xx hello-pimpl.obj \
hello-pskel.obj hello.obj driver.obj driver.exe