diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-07-21 23:17:37 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-07-21 23:17:37 +0200 |
commit | 702df9ae55150c8b8671a9fb200793b78d75aa78 (patch) | |
tree | f5050cb73c69794f4fa15fc6263d689a277ef1e3 /qt/pgsql/makefile | |
parent | f5a9d565dad28df86490b392cd5b4d763ab2a248 (diff) |
Add Qt profile tests for PostgreSQL
Diffstat (limited to 'qt/pgsql/makefile')
-rw-r--r-- | qt/pgsql/makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/qt/pgsql/makefile b/qt/pgsql/makefile new file mode 100644 index 0000000..21f4fd3 --- /dev/null +++ b/qt/pgsql/makefile @@ -0,0 +1,37 @@ +# file : qt/pgsql/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-pgsql +$(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)) |