diff options
Diffstat (limited to 'qt/makefile')
-rw-r--r-- | qt/makefile | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/qt/makefile b/qt/makefile deleted file mode 100644 index 4575b34..0000000 --- a/qt/makefile +++ /dev/null @@ -1,38 +0,0 @@ -# file : qt/makefile -# license : GNU GPL; see accompanying LICENSE file - -include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make - -all_dirs := common mysql sqlite pgsql oracle mssql -dirs := common - -# Database-specific tests are not run in the multi-database configuration. -# -ifneq ($(db_id),common) -dirs += $(db_id) -endif - -$(default): $(addprefix $(out_base)/,$(addsuffix /,$(dirs))) - -$(dist): export extra_dist := build.bat -$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(all_dirs))) - $(call meta-vctest,common/qt-common-qt4-mysql-vc10.sln,build.bat) - $(call meta-automake) - -$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(dirs))) - -ifeq ($(db_id),common) -$(foreach d,$(databases),$(eval $(call db-test-dir,$d,$(dirs)))) -endif - -$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(all_dirs))) - -$(call include,$(bld_root)/dist.make) -$(call include,$(bld_root)/meta/vctest.make) -$(call include,$(bld_root)/meta/automake.make) - -ifneq ($(filter $(MAKECMDGOALS),dist clean),) -$(foreach d,$(all_dirs),$(call import,$(src_base)/$d/makefile)) -else -$(foreach d,$(dirs),$(call import,$(src_base)/$d/makefile)) -endif |