2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-10 11:22:12 +00:00

Merged from Version_1_33_1

[SVN r31949]
This commit is contained in:
Douglas Gregor
2005-12-08 03:23:02 +00:00
parent faa2086e15
commit 595ddde2cd
4 changed files with 12 additions and 11 deletions

View File

@@ -756,8 +756,8 @@ project tennis
subprojects, so that every definition made in a parent project
is always available to its children. The loading order of any
other projects is unspecified. Even if one project refers to
another via <link
linkend="bbv2.advanced.projects.relationships.useprojectrule"><functionname>use-project</functionname></link>,
another via <xref
linkend="bbv2.advanced.projects.relationships.useprojectrule"><functionname>use-project</functionname></xref>,
or a target reference, no specific order should be assumed.
</para>
@@ -810,22 +810,22 @@ bjam --help project.<replaceable>rulename</replaceable>
</row>
<row>
<entry><link linkend=
"bbv2.advanced.projects.relationships.useprojectrule">use-project</link></entry>
<entry><xref linkend=
"bbv2.advanced.projects.relationships.useprojectrule">use-project</xref></entry>
<entry>Make another project known so that it can be referred to by symbolic ID.</entry>
</row>
<row>
<entry><link linkend=
"bbv2.advanced.projects.relationships.buildprojectrule">build-project</link></entry>
<entry><xref linkend=
"bbv2.advanced.projects.relationships.buildprojectrule">build-project</xref></entry>
<entry>Cause another project to be built when this one is built.</entry>
</row>
<row>
<entry><link linkend=
"bbv2.reference.buildprocess.explict">explicit</link></entry>
<entry><xref linkend=
"bbv2.reference.buildprocess.explict">explicit</xref></entry>
<entry>State that a target should be built only by explicit
request.</entry>

View File

@@ -114,8 +114,7 @@ and linked it.
</para>
<para>In the subsequent sections, we will extend this example, and review
all the mechanisms in detail. The complete code is available in <ulink url=
"../../tools/build/v2/example/customization">example/customization</ulink>
all the mechanisms in detail. The complete code is available in <filename>example/customization</filename>
directory.
</para>

View File

@@ -162,7 +162,7 @@ boost-build <replaceable>/path/to/boost.build</replaceable> ;
<para><emphasis role="bold">N.B.</emphasis>
When <command>bjam</command> is invoked from anywhere in the Boost
directory tree <emphasis>other than</emphasis> the Boost.Build root
and its subdirectories, <ulink url="../../tools/build">Boost.Build
and its subdirectories, <ulink url="../../tools/build/index.html">Boost.Build
v1</ulink> is used by default. To override the default and use
Boost.Build v2, you have to add the <option>--v2</option> command
line option to all <command>bjam</command> invocations.</para>

View File

@@ -28,6 +28,8 @@ rule resource-compile ( target : sources * : properties * )
create-empty-object $(target) : $(sources[1]) ;
case "SOLARIS" :
create-empty-object $(target) : $(sources[1]) ;
case "KFREEBSD" :
create-empty-object $(target) : $(sources[1]) ;
case "LINUX" :
create-empty-object $(target) : $(sources[1]) ;
case "*" :