aboutsummaryrefslogtreecommitdiff
path: root/build/meta/vc10proj-functions.make
blob: 5781de8938d914b1620198836967e411da810d34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# file      : build/meta/vc10proj-functions.make
# author    : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
# license   : GNU GPL v2; see accompanying LICENSE file

# Process VC++ project file template and write output to $(dist_prefix)/<path>.
# Where path is computed as difference between src_base and src_root.
#
# Arguments:
#
# $1 - template path, if doesn't start with /, assume relative to src_base
# $2 - output name (optional)
#
$(out_base)/%: meta-vc10proj = \
$(call meta-vc10proj-body,$(if $(filter /%,$1),$1,$(src_base)/$1),$(if \
$2,$2,$(notdir $1)),$(subst $(src_root),,$(src_base)))

# $1 - template
# $2 - output name
# $3 - difference between src_base and src_root with leading '\'
#
$(out_base)/%: meta-vc10proj-body = \
$(call message,meta $(dist_prefix)$3/$2,$(bld_root)/meta/vc10proj \
-o $(dist_prefix)$3/$2 $1)