aboutsummaryrefslogtreecommitdiff
path: root/tracer/transaction/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tracer/transaction/makefile')
-rw-r--r--tracer/transaction/makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/tracer/transaction/makefile b/tracer/transaction/makefile
index fd1d698..12ca226 100644
--- a/tracer/transaction/makefile
+++ b/tracer/transaction/makefile
@@ -38,10 +38,16 @@ $(out_base)/: $(driver)
# Dist
#
-$(dist): data_dist := $(cxx_tun) test.std
+$(dist): sources := $(cxx_tun)
+$(dist): data_dist := test.std
+$(dist): export name := $(notdir $(src_base))
+$(dist): export extra_dist := $(data_dist) $(name)-vc9.vcproj \
+$(name)-vc10.vcxproj $(name)-vc10.vcxproj.filters
$(dist):
- $(call dist-data,$(data_dist))
- $(call meta-automake,$(src_root)/tracer/template/Makefile.am)
+ $(call dist-data,$(sources) $(headers) $(data_dist))
+ $(call meta-automake,../template/Makefile.am)
+ $(call meta-vc9proj,../template/template-vc9.vcproj,$(name)-vc9.vcproj)
+ $(call meta-vc10proj,../template/template-vc10.vcxproj,$(name)-vc10.vcxproj)
# Test.
#
@@ -69,6 +75,8 @@ endif
# How to.
#
$(call include,$(bld_root)/dist.make)
+$(call include,$(bld_root)/meta/vc9proj.make)
+$(call include,$(bld_root)/meta/vc10proj.make)
$(call include,$(bld_root)/meta/automake.make)
$(call include,$(bld_root)/cxx/cxx-d.make)