aboutsummaryrefslogtreecommitdiff
path: root/boost/makefile
blob: 1debcf7c96f3de44d7221735bb35c2d1ac9de202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# file      : boost/makefile
# copyright : Copyright (c) 2009-2015 Code Synthesis Tools CC
# 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