aboutsummaryrefslogtreecommitdiff
path: root/pgsql/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-07-08 14:54:20 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-07-08 14:54:20 +0200
commit7b31bf12b9f517e2a9795d63a1701cdf23279d5a (patch)
treebee55e48487f8e5f94c79098012f846b232a5b47 /pgsql/makefile
parent9d516749457284f093306b5e4673cec1818c3d53 (diff)
Add support for Visual Studio 2005
Diffstat (limited to 'pgsql/makefile')
-rw-r--r--pgsql/makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/pgsql/makefile b/pgsql/makefile
index 7dd15da..9508e43 100644
--- a/pgsql/makefile
+++ b/pgsql/makefile
@@ -17,9 +17,11 @@ $(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests)))
$(dist): name := pgsql
$(dist): export dirs := $(tests)
-$(dist): export extra_dist := $(name)-vc9.sln $(name)-vc10.sln $(name)-vc11.sln test.bat
+$(dist): export extra_dist := $(name)-vc8.sln $(name)-vc9.sln \
+$(name)-vc10.sln $(name)-vc11.sln test.bat
$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(tests)))
$(call meta-automake)
+ $(call meta-vc8sln,$(name)-vc8.sln)
$(call meta-vc9sln,$(name)-vc9.sln)
$(call meta-vc10sln,$(name)-vc10.sln)
$(call meta-vc11sln,$(name)-vc11.sln)
@@ -28,6 +30,7 @@ $(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(tests)))
$(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)