diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-03-06 10:24:11 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-03-06 10:24:11 +0100 |
commit | 4538829ab86b5a1cd4e845e7eab165029c9d6d46 (patch) | |
tree | bbadf39aed0610c8f8f7b41fefff47773b8ac205 /build-0.3/meta/vc8proj-functions.make | |
parent | 23d41842168ac1a1580111b9c5c73500ceee3d57 (diff) | |
parent | aad5ad9bf0c02aa4e79bc6b7d6c934612fff4026 (diff) |
Update upstream source from tag 'upstream/4.2.0'
Update to upstream version '4.2.0'
with Debian dir 1b38df7bbcf313223de3c50107ac0255090fe647
Diffstat (limited to 'build-0.3/meta/vc8proj-functions.make')
-rw-r--r-- | build-0.3/meta/vc8proj-functions.make | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/build-0.3/meta/vc8proj-functions.make b/build-0.3/meta/vc8proj-functions.make deleted file mode 100644 index 695405c..0000000 --- a/build-0.3/meta/vc8proj-functions.make +++ /dev/null @@ -1,27 +0,0 @@ -# file : build/meta/vc8proj-functions.make -# copyright : Copyright (c) 2009-2012 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) -# $3-8 - optional pairs of additional varibales and values $3=$4, $5=$6, etc -# -# -$(out_base)/%: meta-vc8proj = \ -$(call meta-vc8proj-body,$(if $(filter /%,$1),$1,$(src_base)/$1),$(if \ -$2,$2,$(notdir $1)),$(subst $(src_root),,$(src_base)),$3,$4,$5,$6,$7,$8) - -# $1 - template -# $2 - output name -# $3 - difference between src_base and src_root with leading '\' -# $4-9 - additional varibales -# -$(out_base)/%: meta-vc8proj-body = \ -$(call message,meta $(dist_prefix)$3/$2,$(if $4,$4='$5'; export $4; )$(if \ -$6,$6='$7'; export $6; )$(if $8,$8='$9'; export $8; )$(bld_root)/meta/vc9proj \ --o $(dist_prefix)$3/$2 $1) |