summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2013-04-10 16:43:07 (GMT)
committerEvan Martin <martine@danga.com>2013-04-10 16:43:07 (GMT)
commit6e5cd6f6c69644c67b0103e52d6171b7905ef42b (patch)
treeae812ed2a00737fddfa67911661b789a4b0215c1 /doc
parent13c715c24d9e1826c81a761594c0f26cab72833d (diff)
downloadNinja-6e5cd6f6c69644c67b0103e52d6171b7905ef42b.zip
Ninja-6e5cd6f6c69644c67b0103e52d6171b7905ef42b.tar.gz
Ninja-6e5cd6f6c69644c67b0103e52d6171b7905ef42b.tar.bz2
mention mtimes
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.asciidoc5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc
index d482b5d..9523bfd 100644
--- a/doc/manual.asciidoc
+++ b/doc/manual.asciidoc
@@ -285,8 +285,9 @@ Conceptual overview
~~~~~~~~~~~~~~~~~~~
Ninja evaluates a graph of dependencies between files, and runs
-whichever commands are necessary to make your build target up to date.
-If you are familiar with Make, Ninja is very similar.
+whichever commands are necessary to make your build target up to date
+as determined by file modification times. If you are familiar with
+Make, Ninja is very similar.
A build file (default name: `build.ninja`) provides a list of _rules_
-- short names for longer commands, like how to run the compiler --