aboutsummaryrefslogtreecommitdiff
path: root/tracer/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tracer/makefile')
-rw-r--r--tracer/makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/tracer/makefile b/tracer/makefile
index 731573a..3d40a9a 100644
--- a/tracer/makefile
+++ b/tracer/makefile
@@ -18,13 +18,22 @@ clean := $(out_base)/.clean
$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests)))
+$(dist): name := $(notdir $(src_base))
$(dist): export dirs := $(tests)
+$(dist): export extra_dist := $(name)-vc9.sln $(name)-vc10.sln tests.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,$(src_root)/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))