aboutsummaryrefslogtreecommitdiff
path: root/qt/mssql/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-01-14 09:43:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-01-20 15:45:46 +0200
commit0da5345276f1e655e5e099fdf6280466e3a5dda4 (patch)
tree51c61e4dfef993aa4a7d6b6e9735324e118c18a3 /qt/mssql/makefile
parente0849593316ba0f3e45545dad98ee9218d017184 (diff)
Date-time part of Qt profile implementation for SQL Server
Diffstat (limited to 'qt/mssql/makefile')
-rw-r--r--qt/mssql/makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/qt/mssql/makefile b/qt/mssql/makefile
new file mode 100644
index 0000000..22e3570
--- /dev/null
+++ b/qt/mssql/makefile
@@ -0,0 +1,37 @@
+# file : qt/mssql/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-mssql
+$(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))