summaryrefslogtreecommitdiff
path: root/tools/build/v2/test/prebuilt/ext/jamfile3.jam
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/v2/test/prebuilt/ext/jamfile3.jam')
-rw-r--r--tools/build/v2/test/prebuilt/ext/jamfile3.jam46
1 files changed, 0 insertions, 46 deletions
diff --git a/tools/build/v2/test/prebuilt/ext/jamfile3.jam b/tools/build/v2/test/prebuilt/ext/jamfile3.jam
deleted file mode 100644
index a373a5fb21..0000000000
--- a/tools/build/v2/test/prebuilt/ext/jamfile3.jam
+++ /dev/null
@@ -1,46 +0,0 @@
-
-# This Jamfile is the same as Jamfile2, except that
-# it tries to access prebuilt targets using absolute
-# paths. It used to be broken on Windows.
-
-import os ;
-
-local dll-suffix = so ;
-local prefix = "" ;
-if [ os.name ] in CYGWIN NT
-{
- if [ MATCH ^(gcc) : $toolset ]
- {
- dll-suffix = dll ;
- }
- else
- {
- dll-suffix = lib ;
- }
-}
-else
-{
- prefix = "lib" ;
-}
-if [ MATCH ^(darwin) : $toolset ]
-{
- dll-suffix = dylib ;
-}
-
-project ext ;
-
-# Assumed bjam was invoked from the project root
-local pwd = [ PWD ] ;
-
-lib a :
- : <file>$(pwd)/ext/debug/$(prefix)a.$(dll-suffix) <variant>debug
- :
- : <include>debug
- ;
-
-lib a :
- : <file>$(pwd)/ext/release/$(prefix)a.$(dll-suffix) <variant>release
- :
- : <include>release
- ;
-