summaryrefslogtreecommitdiffstats
path: root/build.ninja
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2011-01-26 18:05:20 (GMT)
committerEvan Martin <martine@danga.com>2011-01-26 18:05:20 (GMT)
commit80c68f5f6966f1520390de6ab9775405de1cc608 (patch)
treeb2fa23c36df5c912a042cfd665a0226b551e8416 /build.ninja
parent0da4bca083624c8c10bf457f6ff84f6b6f5bfd95 (diff)
downloadNinja-80c68f5f6966f1520390de6ab9775405de1cc608.zip
Ninja-80c68f5f6966f1520390de6ab9775405de1cc608.tar.gz
Ninja-80c68f5f6966f1520390de6ab9775405de1cc608.tar.bz2
remove introductory comments from build file
It's not intended to be human-friendly, so don't pretend.
Diffstat (limited to 'build.ninja')
-rw-r--r--build.ninja32
1 files changed, 11 insertions, 21 deletions
diff --git a/build.ninja b/build.ninja
index 031d806..2ab2211 100644
--- a/build.ninja
+++ b/build.ninja
@@ -1,13 +1,12 @@
-# This file is used to build ninja itself, but it also serves as a
-# documented example.
+# This file is used to build ninja itself.
-# Note that it is an explicit non-goal of ninja to make it convenient
-# to write these build files by hand. For a real project, you'd generate
-# this build file. I was tempted to generate this file even for ninja
-# itself but I figured it'd be easier to bootstrap this way.
+# NOTE: it is an explicit non-goal of ninja to make it convenient to
+# write these files by hand. For a real project, you'd generate this
+# file from higher-level rules.
+
+# I was tempted to generate this file even for ninja itself but I
+# figured it'd be easier to bootstrap this way.
-# Most variables aren't magic at all; it's up to the rules to make use
-# of them.
builddir = build
cxx = g++
#cxx = /home/evanm/projects/src/llvm/Release+Asserts/bin/clang++
@@ -15,14 +14,10 @@ cflags = -g -Wall -Wno-deprecated -fno-exceptions -fvisibility=hidden -pipe
# -rdynamic is needed for backtrace()
ldflags = -g -rdynamic
-# bootstrap.sh generates a "config" file, which contains more build
-# flags.
+# bootstrap.sh generates a "config.ninja" file, which contains some
+# minor build customization for development purposes.
include config.ninja
-# Here we declare a "rule" named "cxx", which knows how to compile
-# C++ code. The variables indented below the rule are scoped to the
-# rule itself. The "command" and "depfile" variables in rule scope
-# are special; see the documentation.
rule cxx
depfile = $out.d
command = $cxx -MMD -MF $out.d $conf_cflags $cflags -c $in -o $out
@@ -36,9 +31,6 @@ rule link
command = $cxx $conf_ldflags $ldflags -o $out $in
description = LINK $out
-# These build rules build the ".o" files from the ".cc" files,
-# build "ninja.a" by linking the builddir's "ninja.o",
-# and build that "ninja.o" by compiling "ninja.cc".
build $builddir/build.o: cxx src/build.cc
build $builddir/build_log.o: cxx src/build_log.cc
build $builddir/eval_env.o: cxx src/eval_env.cc
@@ -65,8 +57,7 @@ build ninja_test: link $builddir/build_test.o $builddir/build_log_test.o \
ldflags = -g -rdynamic -lgtest -lgtest_main -lpthread
-# Generate a graph of the dependency tree (including the
-# graph generation itself in the resulting tree).
+# Generate a graph using the -g flag.
rule gendot
command = ./ninja -g all > $out
rule gengraph
@@ -75,6 +66,7 @@ rule gengraph
build $builddir/graph.dot: gendot ninja build.ninja
build graph.png: gengraph $builddir/graph.dot
+# Generate docs.
rule asciidoc
command = asciidoc -a toc $in
description = ASCIIDOC $in
@@ -82,6 +74,4 @@ rule asciidoc
build manual.html: asciidoc manual.asciidoc
build doc: phony || manual.html
-# Use the built-in phony rule and an order-only dependency
-# to make building "all" build all targets.
build all: phony || ninja ninja_test graph.png doc