diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-03-22 13:55:18 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-04-10 18:46:46 +0200 |
commit | 15c6024da6a15e2d6e3302e4df375092959edbe2 (patch) | |
tree | 713362e41b768cce1b9dd6566963a892d0a39d3c /common/makefile | |
parent | 31d4f4c0a03013fc8989213de5259e632fe45898 (diff) |
Add changelog test
Diffstat (limited to 'common/makefile')
-rw-r--r-- | common/makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/common/makefile b/common/makefile index e6eca1e..3eb05e2 100644 --- a/common/makefile +++ b/common/makefile @@ -9,6 +9,7 @@ access \ auto \ blob \ callback \ +changelog \ circular/single \ circular/multiple \ composite \ @@ -54,6 +55,8 @@ wrapper thread_tests := threads cxx11_tests := session/custom +no_dist_tests := changelog include + default := $(out_base)/ dist := $(out_base)/.dist test := $(out_base)/.test @@ -73,7 +76,7 @@ $(default): $(addprefix $(out_base)/,$(addsuffix /,$(build_tests))) name := common $(dist): name := $(name) -$(dist): export dirs := $(filter-out include,$(tests)) +$(dist): export dirs := $(filter-out $(no_dist_tests),$(tests)) $(dist): export thread_dirs := $(thread_tests) $(dist): export cxx11_dirs := $(cxx11_tests) $(dist): export extra_dist := test.bat $(call vc9slns,$(name)) \ |