summaryrefslogtreecommitdiff
path: root/tools/build/v2/test/echo_args.jam
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/v2/test/echo_args.jam')
-rw-r--r--tools/build/v2/test/echo_args.jam20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/build/v2/test/echo_args.jam b/tools/build/v2/test/echo_args.jam
deleted file mode 100644
index 0f6956e462..0000000000
--- a/tools/build/v2/test/echo_args.jam
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 2001 Dave Abrahams
-# Distributed under the Boost Software License, Version 1.0.
-# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
-
-rule echo_args ( a b ? c ? : d + : e * )
-{
- ECHO a= $(a) b= $(b) c= $(c) ":" d= $(d) ":" e= $(e) ;
-}
-
-rule echo_varargs ( a b ? c ? : d + : e * : * )
-{
- ECHO a= $(a) b= $(b) c= $(c) ":" d= $(d) ":" e= $(e)
- ": rest= "$(4[1]) $(4[2])
- ": "$(5[1]) $(5[2])
- ": "$(6[1]) $(6[2])
- ": "$(7[1]) $(7[2])
- ": "$(8[1]) $(8[2])
- ": "$(9[1]) $(9[2]) ;
-}
-