diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-11-08 13:42:45 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-11-08 14:46:52 +0200 |
commit | 20c2f6cde170e1a8703858e17530fcf68e4efbe4 (patch) | |
tree | eedd06f8b8a0caf9c5699611d5945297120f6ee5 /boost/oracle/makefile | |
parent | 1c9bf613aba99ca70a53b5f8f90e49225c7a56f1 (diff) |
Add tests for Oracle support of the Boost profile
Diffstat (limited to 'boost/oracle/makefile')
-rw-r--r-- | boost/oracle/makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/boost/oracle/makefile b/boost/oracle/makefile new file mode 100644 index 0000000..929fa8b --- /dev/null +++ b/boost/oracle/makefile @@ -0,0 +1,36 @@ +# file : boost/oracle/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 + +tests := \ +date-time \ +template + +default := $(out_base)/ +dist := $(out_base)/.dist +test := $(out_base)/.test +clean := $(out_base)/.clean + +$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests))) + +$(dist): name := boost-oracle +$(dist): export dirs := $(tests) +$(dist): export extra_dist := $(name)-vc9.sln $(name)-vc10.sln test.bat +$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(tests))) + $(call meta-automake) + $(call meta-vc9sln,$(name)-vc9.sln) + $(call meta-vc10sln,$(name)-vc10.sln) + $(call meta-vctest,$(name)-vc10.sln,test.bat) + +$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests))) +$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(tests))) + +$(call include,$(bld_root)/meta/vc9sln.make) +$(call include,$(bld_root)/meta/vc10sln.make) +$(call include,$(bld_root)/meta/vctest.make) +$(call include,$(bld_root)/meta/automake.make) + +$(foreach t,$(tests),$(call import,$(src_base)/$t/makefile)) |