a small build system with a focus on speed
Go to file
Evan Martin 4243257288 rename the build-file variable $sourcedir to $root
Confusingly, $sourcedir is the path to the root of the repository,
*not* the path to the src/ directory.
2015-11-17 14:42:12 -08:00
doc drop a [horizontal] definition table 2015-11-17 14:13:44 -08:00
misc Merge pull request #1047 from pykello/master 2015-11-11 21:46:33 -08:00
src Merge pull request #1007 from mikesep/aix 2015-11-11 17:19:00 -08:00
.clang-format Add a .clang-format file. 2014-04-15 22:08:21 -07:00
.gitignore Separate bootstrapped build from final build 2015-10-22 10:05:44 -04:00
.travis.yml switch travis to use new --bootstrap mode for building 2014-11-18 09:07:43 -08:00
bootstrap.py drop bootstrap.py 2014-11-18 08:15:37 -08:00
configure.py rename the build-file variable $sourcedir to $root 2015-11-17 14:42:12 -08:00
COPYING add copyrights 2011-02-06 11:02:57 -08:00
HACKING.md Make links point to org page 2015-11-11 11:53:15 -08:00
README drop more references to github/martine 2015-11-11 13:34:24 -08:00
RELEASING drop more references to github/martine 2015-11-11 13:34:24 -08:00

Ninja is a small build system with a focus on speed.
http://ninja-build.org/

See the manual -- http://ninja-build.org/manual.html or
doc/manual.asciidoc included in the distribution -- for background
and more details.

Binaries for Linux, Mac, and Windows are available at
  https://github.com/ninja-build/ninja/releases
Run './ninja -h' for Ninja help.

To build your own binary, on many platforms it should be sufficient to
just run `./configure.py --bootstrap`; for more details see HACKING.md.
(Also read that before making changes to Ninja, as it has advice.)

Installation is not necessary because the only required file is the
resulting ninja binary. However, to enable features like Bash
completion and Emacs and Vim editing modes, some files in misc/ must be
copied to appropriate locations.

If you're interested in making changes to Ninja, read HACKING.md first.