diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-10 11:35:20 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-10 11:35:20 +0200 |
commit | ed24158b4d247dff58162c97f04cbc4011579600 (patch) | |
tree | 6e9ba4ab126f64af1d710cda804782e158d1c7a0 /makefile | |
parent | f8eea05c337019bdc669d786e50d015f0cca14a2 (diff) |
Add automated build and test scripts for Windows
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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) |