a small build system with a focus on speed
Go to file
2015-08-19 08:43:58 -04:00
doc Document the change from #921 in the manual. 2015-06-18 17:28:20 -07:00
misc Add notes on using afl-fuzz to HACKING. 2015-03-19 10:41:28 -07:00
src Implement GetLoadAverage on AIX using libperfstat 2015-08-19 08:43:58 -04:00
.clang-format Add a .clang-format file. 2014-04-15 22:08:21 -07:00
.gitignore Merge pull request #703 from ovinn/master 2014-12-04 10:05:44 -08: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 Implement GetLoadAverage on AIX using libperfstat 2015-08-19 08:43:58 -04:00
COPYING add copyrights 2011-02-06 11:02:57 -08:00
HACKING.md fix typos, punctuation, redundant words in HACKING.md 2015-07-01 17:52:16 -07:00
README point people at more detailed build docs if they're on Windows 2015-06-30 15:29:15 -07:00
RELEASING make notes on how to update docs more detailed 2015-03-25 12:22:56 -07:00

Ninja is a small build system with a focus on speed.
http://martine.github.com/ninja/

See the manual -- http://martine.github.com/ninja/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/martine/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 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.