summaryrefslogtreecommitdiff
path: root/build-0.3/meta/vctest-functions.make
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2024-03-06 10:24:46 +0100
committerJörg Frings-Fürst <debian@jff.email>2024-03-06 10:24:46 +0100
commit372a0e99c2f61543d9e14d9933b59d9d1f4cb26e (patch)
treebbadf39aed0610c8f8f7b41fefff47773b8ac205 /build-0.3/meta/vctest-functions.make
parent23d41842168ac1a1580111b9c5c73500ceee3d57 (diff)
parent4538829ab86b5a1cd4e845e7eab165029c9d6d46 (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'build-0.3/meta/vctest-functions.make')
-rw-r--r--build-0.3/meta/vctest-functions.make28
1 files changed, 0 insertions, 28 deletions
diff --git a/build-0.3/meta/vctest-functions.make b/build-0.3/meta/vctest-functions.make
deleted file mode 100644
index e67945b..0000000
--- a/build-0.3/meta/vctest-functions.make
+++ /dev/null
@@ -1,28 +0,0 @@
-# file : build/meta/vctest-functions.make
-# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
-# license : GNU GPL v2; see accompanying LICENSE file
-
-# Process VC++ solution and test template and write output to
-# $(dist_prefix)/<path>. Where path is computed as difference
-# between src_base and src_root.
-#
-# Arguments:
-#
-# $1 - solution path, if doens't start with /, assume relative to
-# dist_prefix/<path>
-# $2 - template path, if doesn't start with /, assume relative to src_base
-# $3 - output name (optional)
-#
-$(out_base)/%: meta-vctest = \
-$(call meta-vctest-body,$1,$(if $(filter /%,$2),$2,$(src_base)/$2),$(if \
-$3,$3,$(notdir $2)),$(subst $(src_root),,$(src_base)))
-
-# $1 - solution
-# $2 - template
-# $3 - output name
-# $4 - difference between src_base and src_root with leading '\'
-#
-$(out_base)/%: meta-vctest-body = \
-$(call message,meta $(dist_prefix)$4/$3,$(bld_root)/meta/vctest \
--r $(dist_prefix) -b $(dist_prefix)$4 -t $2 -o $(dist_prefix)$4/$3 \
-$(if $(filter /%,$1),$1,$(dist_prefix)$4/$1))