mirror of
https://github.com/boostorg/build.git
synced 2026-02-15 13:02:11 +00:00
22 lines
544 B
Plaintext
22 lines
544 B
Plaintext
# Copyright (C) Vladimir Prus 2002. Permission to copy, use, modify, sell and
|
|
# distribute this software is granted provided this copyright notice appears in
|
|
# all copies. This software is provided "as is" without express or implied
|
|
# warranty, and with no claim as to its suitability for any purpose.
|
|
|
|
rule boost-build ( )
|
|
{
|
|
return "V2 (Milestone 2)" ;
|
|
}
|
|
rule jam ( )
|
|
{
|
|
local v = [ modules.peek : JAM_VERSION ] ;
|
|
return $(v:J=.) ;
|
|
}
|
|
|
|
|
|
rule print ( )
|
|
{
|
|
ECHO "Boost.Build" [ boost-build ] ;
|
|
ECHO "Boost.Jam" [ jam ] ;
|
|
}
|