diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-07-08 14:54:20 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-07-08 14:54:20 +0200 |
commit | 7b31bf12b9f517e2a9795d63a1701cdf23279d5a (patch) | |
tree | bee55e48487f8e5f94c79098012f846b232a5b47 /libcommon/makefile | |
parent | 9d516749457284f093306b5e4673cec1818c3d53 (diff) |
Add support for Visual Studio 2005
Diffstat (limited to 'libcommon/makefile')
-rw-r--r-- | libcommon/makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libcommon/makefile b/libcommon/makefile index cade0e7..e1fc2db 100644 --- a/libcommon/makefile +++ b/libcommon/makefile @@ -9,16 +9,18 @@ dirs := common $(default): $(addprefix $(out_base)/,$(addsuffix /,$(dirs))) $(dist): export dirs := $(dirs) -$(dist): export extra_dist := $(call vc9slns,libcommon) \ -$(call vc10slns,libcommon) $(call vc11slns,libcommon) +$(dist): export extra_dist := $(call vc8slns,libcommon) \ +$(call vc9slns,libcommon) $(call vc10slns,libcommon) $(call vc11slns,libcommon) $(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(dirs))) $(call meta-automake) + $(call meta-vc8slns,libcommon) $(call meta-vc9slns,libcommon) $(call meta-vc10slns,libcommon) $(call meta-vc11slns,libcommon) $(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(dirs))) +$(call include,$(bld_root)/meta/vc8sln.make) $(call include,$(bld_root)/meta/vc9sln.make) $(call include,$(bld_root)/meta/vc10sln.make) $(call include,$(bld_root)/meta/vc11sln.make) |