From 6c63b913179127e09ed7d9da8920493ccceec6ce Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 2 Mar 2009 12:14:54 +0200 Subject: Add make support for creating binary distributions Two new make targets, dist and dist-win, were added that allow one to create a binary distribution from the current build. The dist target creates a UNIX distribution while dist-win -- Windows. The simplified build systems for the runtime library and examples that were kept separately are now part of the project (the dist/ subdirectory). --- dist/examples/cxx/parser/wildcard/nmakefile | 39 +++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 dist/examples/cxx/parser/wildcard/nmakefile (limited to 'dist/examples/cxx/parser/wildcard/nmakefile') diff --git a/dist/examples/cxx/parser/wildcard/nmakefile b/dist/examples/cxx/parser/wildcard/nmakefile new file mode 100644 index 0000000..c1f333b --- /dev/null +++ b/dist/examples/cxx/parser/wildcard/nmakefile @@ -0,0 +1,39 @@ +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 email-pskel.obj $(root)\libxsde\xsde\xsde.lib + +driver.obj: driver.cxx email-pskel.hxx +email-pskel.obj: email-pskel.cxx email-pskel.hxx + +email-pskel.cxx email-pskel.hxx: email.xsd + $(root)\bin\xsde.exe cxx-parser $(XSDFLAGS) $(EXTRA_XSDFLAGS) email.xsd + +# Test. +# +test: driver.exe email.xml + .\driver.exe email.xml + + +# Clean. +# +clean: + -del email-pskel.?xx email-pskel.obj driver.obj driver.exe + -- cgit v1.1