diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2023-12-13 21:57:53 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-01-23 21:20:44 +0300 |
commit | fc3fb39c90ab7fe5fccbe3f3bc0eb2645157bb96 (patch) | |
tree | 6c8c1bfb5fe89f7378b92ac066b4ca8ecfd25228 /qt/mysql/makefile | |
parent | 02367faedb16b6186e8852de47e5b749dc48c2df (diff) |
Switch to build2
Diffstat (limited to 'qt/mysql/makefile')
-rw-r--r-- | qt/mysql/makefile | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/qt/mysql/makefile b/qt/mysql/makefile deleted file mode 100644 index ea036fa..0000000 --- a/qt/mysql/makefile +++ /dev/null @@ -1,46 +0,0 @@ -# file : qt/mysql/makefile -# license : GNU GPL; see accompanying LICENSE file - -include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make - -tests := \ -basic \ -date-time \ -template - -$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests))) - -$(dist): name := qt-mysql -$(dist): export dirs := $(tests) -$(dist): export extra_dist := test.bat \ -$(name)-qt4-vc8.sln \ -$(name)-qt4-vc9.sln $(name)-qt5-vc9.sln \ -$(name)-qt4-vc10.sln $(name)-qt5-vc10.sln \ -$(name)-qt4-vc11.sln $(name)-qt5-vc11.sln \ -$(name)-qt4-vc12.sln $(name)-qt5-vc12.sln -$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(tests))) - $(call meta-automake) - $(call meta-vc8sln1,$(name)-qt4,-qt4) - $(call meta-vc9sln1,$(name)-qt4,-qt4) - $(call meta-vc9sln1,$(name)-qt5,-qt5) - $(call meta-vc10sln1,$(name)-qt4,-qt4) - $(call meta-vc10sln1,$(name)-qt5,-qt5) - $(call meta-vc11sln1,$(name)-qt4,-qt4) - $(call meta-vc11sln1,$(name)-qt5,-qt5) - $(call meta-vc12sln1,$(name)-qt4,-qt4) - $(call meta-vc12sln1,$(name)-qt5,-qt5) - # Can't have Qt-version specific tests. - $(call meta-vctest,$(name)-qt4-vc10.sln,test.bat) - -$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests))) -$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(tests))) - -$(call include,$(bld_root)/meta/vc8sln.make) -$(call include,$(bld_root)/meta/vc9sln.make) -$(call include,$(bld_root)/meta/vc10sln.make) -$(call include,$(bld_root)/meta/vc11sln.make) -$(call include,$(bld_root)/meta/vc12sln.make) -$(call include,$(bld_root)/meta/vctest.make) -$(call include,$(bld_root)/meta/automake.make) - -$(foreach t,$(tests),$(call import,$(src_base)/$t/makefile)) |