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 library.obj library-pskel.obj library-pimpl.obj \ library-sskel.obj library-simpl.obj $(root)\libxsde\xsde\xsde.lib driver.obj: driver.cxx library.hxx library-pimpl.hxx library-simpl.hxx library.obj: library.cxx library-pskel.obj: library-pskel.cxx library-pimpl.obj: library-pimpl.cxx library-sskel.obj: library-sskel.cxx library-simpl.obj: library-simpl.cxx library.cxx library.hxx \ library-pskel.cxx library-pskel.hxx library-pimpl.cxx library-pimpl.hxx \ library-sskel.cxx library-sskel.hxx library-simpl.cxx library-simpl.hxx \ : library.xsd $(root)\bin\xsde.exe cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \ --generate-parser --generate-serializer --generate-aggregate \ --generate-insertion XDR --generate-extraction XDR library.xsd # Test. # test: driver.exe library.xml .\driver.exe library.xml # Clean. # clean: -del library-pimpl.?xx library-pskel.?xx library-simpl.?xx \ library-sskel.?xx library.?xx library-pimpl.obj library-pskel.obj \ library-simpl.obj library-sskel.obj library.obj driver.obj driver.exe