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_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_VALIDATION_PARSER)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
!endif

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

library-driver.obj: library-driver.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-driver.cxx: library.xsd
	$(root)\bin\xsde.exe cxx-parser $(XSDFLAGS) $(EXTRA_XSDFLAGS) library.xsd


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


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