aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-10 11:35:20 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-10 11:35:20 +0200
commited24158b4d247dff58162c97f04cbc4011579600 (patch)
tree6e9ba4ab126f64af1d710cda804782e158d1c7a0 /makefile
parentf8eea05c337019bdc669d786e50d015f0cca14a2 (diff)
Add automated build and test scripts for Windows
Diffstat (limited to 'makefile')
-rw-r--r--makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/makefile b/makefile
index 213bab2..9748e4e 100644
--- a/makefile
+++ b/makefile
@@ -19,22 +19,25 @@ clean := $(out_base)/.clean
$(default): $(addprefix $(out_base)/,$(addsuffix /,$(dirs)))
-$(dist): data_dist := GPLv2 LICENSE README version tester.bat
+$(dist): data_dist := GPLv2 LICENSE README version test.bat tester.bat \
+mysql-driver.bat mysql.options
$(dist): exec_dist := bootstrap tester.in
-$(dist): export extra_dist := $(data_dist) $(exec_dist)
+$(dist): export extra_dist := $(data_dist) $(exec_dist) build.bat
$(dist): export version = $(shell cat $(src_root)/version)
$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(all_dirs)))
$(call dist-data,$(data_dist))
$(call dist-exec,$(exec_dist))
$(call dist-dir,m4)
+ $(call meta-vctest,tracer/tracer-vc10.sln,build.bat)
$(call meta-automake)
- $(call meta-autoconf)
+ $(call meta-autoconf)
$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(dirs)))
$(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)
$(call include,$(bld_root)/meta/autoconf.make)