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/build/config.make | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 dist/build/config.make (limited to 'dist/build/config.make') diff --git a/dist/build/config.make b/dist/build/config.make new file mode 100644 index 0000000..44f3c36 --- /dev/null +++ b/dist/build/config.make @@ -0,0 +1,30 @@ +# file : build/config.make +# author : Boris Kolpackov +# copyright : Copyright (c) 2008 Code Synthesis Tools CC +# license : GNU GPL v2 + exceptions; see accompanying LICENSE file + +# +# DO NOT edit this file. Use config/config.make instead. +# + +include $(root)/config/config.make + +# Strip user-specified parameters of leading/trailing whitespaces. +# +XSDE_PLATFORM := $(strip $(XSDE_PLATFORM)) +XSDE_ARCH_WIDTH := $(strip $(XSDE_ARCH_WIDTH)) +XSDE_BYTEORDER := $(strip $(XSDE_BYTEORDER)) +XSDE_STL := $(strip $(XSDE_STL)) +XSDE_IOSTREAM := $(strip $(XSDE_IOSTREAM)) +XSDE_EXCEPTIONS := $(strip $(XSDE_EXCEPTIONS)) +XSDE_LONGLONG := $(strip $(XSDE_LONGLONG)) +XSDE_SNPRINTF := $(strip $(XSDE_SNPRINTF)) +XSDE_PARSER_VALIDATION := $(strip $(XSDE_PARSER_VALIDATION)) +XSDE_SERIALIZER_VALIDATION := $(strip $(XSDE_SERIALIZER_VALIDATION)) +XSDE_REUSE_STYLE := $(strip $(XSDE_REUSE_STYLE)) +XSDE_POLYMORPHIC := $(strip $(XSDE_POLYMORPHIC)) +XSDE_PARSER_SMAP_BUCKETS := $(strip $(XSDE_PARSER_SMAP_BUCKETS)) +XSDE_PARSER_IMAP_BUCKETS := $(strip $(XSDE_PARSER_IMAP_BUCKETS)) +XSDE_SERIALIZER_SMAP_BUCKETS := $(strip $(XSDE_SERIALIZER_SMAP_BUCKETS)) +XSDE_SERIALIZER_SMAP_BUCKET_BUCKETS := $(strip $(XSDE_SERIALIZER_SMAP_BUCKET_BUCKETS)) +XSDE_SERIALIZER_IMAP_BUCKETS := $(strip $(XSDE_SERIALIZER_IMAP_BUCKETS)) -- cgit v1.1