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_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