summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2013-03-11 20:47:37 (GMT)
committerEvan Martin <martine@danga.com>2013-03-11 20:47:37 (GMT)
commitecc876eb5152c182fc7f3eb768e98936bff9119c (patch)
treecf468307a6f8ee3ef8c4fa778c89b87888016bcc /doc
parenta3bf38cac72303bf6a288c26ccc71b1ba9de2b47 (diff)
parent5c132de2b75642edd2f1ead0da11689fcbc9d819 (diff)
downloadNinja-ecc876eb5152c182fc7f3eb768e98936bff9119c.zip
Ninja-ecc876eb5152c182fc7f3eb768e98936bff9119c.tar.gz
Ninja-ecc876eb5152c182fc7f3eb768e98936bff9119c.tar.bz2
Merge pull request #513 from fifoforlifo/master
Adding elapsed time (%e) to NINJA_STATUS.
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.asciidoc3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc
index c23a3e3..83340cb 100644
--- a/doc/manual.asciidoc
+++ b/doc/manual.asciidoc
@@ -222,6 +222,7 @@ Several placeholders are available:
`%f`:: The number of finished edges.
`%o`:: Overall rate of finished edges per second
`%c`:: Current rate of finished edges per second (average over builds specified by -j or its default)
+`%e`:: Elapsed time in seconds. _(Available since Ninja 1.2.)_
`%%`:: A plain `%` character.
The default progress status is `"[%s/%t] "` (note the trailing space
@@ -690,7 +691,7 @@ keys.
$variables are expanded) is passed directly to `sh -c` without
interpretation by Ninja. Each `rule` may have only one `command`
declaration. To specify multiple commands use `&&` (or similar) to
- concatenate operations.
+ concatenate operations.
`depfile`:: path to an optional `Makefile` that contains extra
_implicit dependencies_ (see <<ref_dependencies,the reference on