summaryrefslogtreecommitdiff
path: root/boost/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'boost/makefile')
-rw-r--r--boost/makefile38
1 files changed, 0 insertions, 38 deletions
diff --git a/boost/makefile b/boost/makefile
deleted file mode 100644
index 0aa6ef2..0000000
--- a/boost/makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-# file : boost/makefile
-# license : GNU GPL; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make
-
-all_dirs := common mysql sqlite pgsql oracle mssql
-dirs := common
-
-# Database-specific tests are not run in the multi-database configuration.
-#
-ifneq ($(db_id),common)
-dirs += $(db_id)
-endif
-
-$(default): $(addprefix $(out_base)/,$(addsuffix /,$(dirs)))
-
-$(dist): export extra_dist := build.bat
-$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(all_dirs)))
- $(call meta-vctest,common/boost-common-mysql-vc10.sln,build.bat)
- $(call meta-automake)
-
-$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(dirs)))
-
-ifeq ($(db_id),common)
-$(foreach d,$(databases),$(eval $(call db-test-dir,$d,$(dirs))))
-endif
-
-$(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