aboutsummaryrefslogtreecommitdiff
path: root/examples/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/makefile')
-rw-r--r--examples/makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/makefile b/examples/makefile
index 17bf301..339dae9 100644
--- a/examples/makefile
+++ b/examples/makefile
@@ -16,12 +16,13 @@ $(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(examples)))
$(dist): export dirs := $(examples)
$(dist): export extra_dist := test.bat examples-vc9.sln examples-vc10.sln \
-examples-vc11.sln
+examples-vc11.sln examples-vc12.sln
$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(examples)))
$(call meta-automake)
$(call meta-vc9sln,examples-vc9.sln)
$(call meta-vc10sln,examples-vc10.sln)
$(call meta-vc11sln,examples-vc11.sln)
+ $(call meta-vc12sln,examples-vc12.sln)
$(call meta-vctest,examples-vc9.sln,test.bat)
$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(examples)))
@@ -29,6 +30,7 @@ $(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(examples)))
$(call include,$(bld_root)/meta/vc9sln.make)
$(call include,$(bld_root)/meta/vc10sln.make)
$(call include,$(bld_root)/meta/vc11sln.make)
+$(call include,$(bld_root)/meta/vc12sln.make)
$(call include,$(bld_root)/meta/vctest.make)
$(call include,$(bld_root)/meta/automake.make)