aboutsummaryrefslogtreecommitdiff
path: root/boost/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'boost/makefile')
-rw-r--r--boost/makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/boost/makefile b/boost/makefile
new file mode 100644
index 0000000..8ab4602
--- /dev/null
+++ b/boost/makefile
@@ -0,0 +1,38 @@
+# file : boost/makefile
+# author : Boris Kolpackov <boris@codesynthesis.com>
+# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+# license : GNU GPL; see accompanying LICENSE file
+
+include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make
+
+all_dirs := common mysql
+dirs := common
+
+ifeq ($(db_id),mysql)
+dirs += mysql
+endif
+
+default := $(out_base)/
+dist := $(out_base)/.dist
+test := $(out_base)/.test
+clean := $(out_base)/.clean
+
+$(default): $(addprefix $(out_base)/,$(addsuffix /,$(dirs)))
+
+$(dist): export extra_dist := build.bat
+$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(all_dirs)))
+ $(call meta-vctest,common/common-mysql-vc10.sln,build.bat)
+ $(call meta-automake)
+
+$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(dirs)))
+$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(all_dirs)))
+
+$(call include,$(bld_root)/dist.make)
+$(call include,$(bld_root)/meta/vctest.make)
+$(call include,$(bld_root)/meta/automake.make)
+
+ifneq ($(filter $(MAKECMDGOALS),dist clean),)
+$(foreach d,$(all_dirs),$(call import,$(src_base)/$d/makefile))
+else
+$(foreach d,$(dirs),$(call import,$(src_base)/$d/makefile))
+endif