diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-04-11 18:22:24 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-04-22 18:52:23 +0200 |
commit | 3150aa68bf21483bbeb947030992fe8909efbc77 (patch) | |
tree | 98828b4ff91c6938e06bdb42a12d331fc0b4f701 /qt/sqlite/makefile | |
parent | 26f3245189b3f5d4a96587953ac1d33f45465f1d (diff) |
Add qt/basic and qt/date-time SQLite tests
Diffstat (limited to 'qt/sqlite/makefile')
-rw-r--r-- | qt/sqlite/makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/qt/sqlite/makefile b/qt/sqlite/makefile new file mode 100644 index 0000000..3f40007 --- /dev/null +++ b/qt/sqlite/makefile @@ -0,0 +1,37 @@ +# file : qt/sqlite/makefile +# author : Constantin Michael <constantin@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 := \ +basic \ +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 := qt-sqlite +$(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)) |