diff --git a/doc/src/reference.xml b/doc/src/reference.xml index 6edd377e4..b004580ea 100644 --- a/doc/src/reference.xml +++ b/doc/src/reference.xml @@ -1949,6 +1949,7 @@ import path : native make : native-path make-path ; + diff --git a/doc/src/tasks.xml b/doc/src/tasks.xml index 9803afa4f..13a3ae312 100644 --- a/doc/src/tasks.xml +++ b/doc/src/tasks.xml @@ -495,12 +495,12 @@ boost-test(test-type) path Custom commands - When you use most of main target rules, Boost.Build automatically figures - what commands to run and it what order. As soon as you want to use new + For most main target rules, Boost.Build automatically figures out + the commands to run. When you want to use new file types or support new tools, one approach is to extend Boost.Build to - smoothly support them, as documented in . - However, if there is only a single place where the new tool is used, it - might be easier to just explicitly specify the commands to run. + support them smoothly, as documented in . + However, if the new tool is only used in a single place, it + might be easier just to specify the commands to run explicitly. @@ -511,8 +511,8 @@ boost-test(test-type) path of source file, by running a command you specify. The notfile rule allows you to run an arbitrary command, without creating any files. And finaly, the generate - rule allows you to describe transformation using - Boost.Build's virtual targets. This is higher-level than file names that + rule allows you to describe a transformation using + Boost.Build's virtual targets. This is higher-level than the file names that the make rule operates with and allows you to create more than one target, create differently named targets depending on properties or use more than one tool. @@ -532,8 +532,8 @@ boost-test(test-type) path them to become accessible. --> - Suppose you want to create file file.out from file - file.in by running command + Suppose you want to create the file file.out from + the file file.in by running the command in2out. Here is how you would do this in Boost.Build: make file.out : file.in : @in2out ;