aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/parser/mixed/nmakefile
blob: d25c2ae00c3ebefa80e46884be8923d26710fade (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
root = ..\..\..\..

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

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

!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_POLYMORPHIC)" == "y"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --runtime-polymorphic
!endif

driver.exe: driver.obj text-pskel.obj $(root)\libxsde\xsde\xsde.lib

driver.obj: driver.cxx text-pskel.hxx anchor.hxx
text-pskel.obj: text-pskel.cxx text-pskel.hxx anchor.hxx

text-pskel.hxx text-pskel.cxx: text.xsd text.map
	$(root)\bin\xsde.exe cxx-parser $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
--type-map text.map text.xsd


# Generate.
#
gen: text-pskel.hxx


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


# Clean.
#
cleanobj:
	-del text-pskel.obj driver.obj driver.exe

clean: cleanobj
	-del text-pskel.?xx