# 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