summaryrefslogtreecommitdiffstats
path: root/doc/manual.asciidoc
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2013-09-12 02:14:12 (GMT)
committerEvan Martin <martine@danga.com>2013-09-12 02:15:28 (GMT)
commit63d5b1013cafb2db95687cf446eb5bb68cf6a27a (patch)
treef25d3219f9eb5e874fafed41a4042b2592ac5675 /doc/manual.asciidoc
parent045d00847b191da46faf1c1b91368a252412bb17 (diff)
parent6f7ea464bb9161ce2e15deb97977886de152c12d (diff)
downloadNinja-63d5b1013cafb2db95687cf446eb5bb68cf6a27a.zip
Ninja-63d5b1013cafb2db95687cf446eb5bb68cf6a27a.tar.gz
Ninja-63d5b1013cafb2db95687cf446eb5bb68cf6a27a.tar.bz2
v1.4.0v1.4.0
Diffstat (limited to 'doc/manual.asciidoc')
-rw-r--r--doc/manual.asciidoc8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc
index 4ceec26..6b2296f 100644
--- a/doc/manual.asciidoc
+++ b/doc/manual.asciidoc
@@ -1,7 +1,7 @@
Ninja
=====
Evan Martin <martine@danga.com>
-v1.3.0, May 2013
+v1.4.0, September 2013
Introduction
@@ -55,7 +55,7 @@ Here are the design goals of Ninja:
higher-level build systems have different opinions about how code
should be built; for example, should built objects live alongside
the sources or should all build output go into a separate directory?
- Is there an "package" rule that builds a distributable package of
+ Is there a "package" rule that builds a distributable package of
the project? Sidestep these decisions by trying to allow either to
be implemented, rather than choosing, even if that results in
more verbosity.
@@ -589,6 +589,7 @@ rule cc
command = cl /showIncludes -c $in /Fo$out
----
+[[ref_pool]]
Pools
~~~~~
@@ -669,6 +670,9 @@ A file is a series of declarations. A declaration can be one of:
+include _path_+. The difference between these is explained below
<<ref_scope,in the discussion about scoping>>.
+6. A pool declaration, which looks like +pool _poolname_+. Pools are explained
+ <<ref_pool, in the section on pools>>.
+
Lexical syntax
~~~~~~~~~~~~~~