bootstrap: Added phony rule for bootstrapManifest.

This is for stageMain and prevents build.ninja.in from being
accidentally deleted.

Change-Id: I9675874c61c3db0bf34c47498968623b8c183e95
1 file changed
tree: 24f90b3455cc1fd91bc7f49ec8c6180f85061024
  1. bootstrap/
  2. bpfmt/
  3. bpmodify/
  4. choosestage/
  5. deptools/
  6. gotestmain/
  7. parser/
  8. pathtools/
  9. proptools/
  10. tests/
  11. .gitignore
  12. .travis.fix-fork.sh
  13. .travis.install-ninja.sh
  14. .travis.yml
  15. Blueprints
  16. bootstrap.bash
  17. build.ninja.in
  18. context.go
  19. context_test.go
  20. CONTRIBUTING.md
  21. doc.go
  22. LICENSE
  23. live_tracker.go
  24. mangle.go
  25. module_ctx.go
  26. ninja_defs.go
  27. ninja_strings.go
  28. ninja_strings_test.go
  29. ninja_writer.go
  30. ninja_writer_test.go
  31. package_ctx.go
  32. README.md
  33. scope.go
  34. singleton_ctx.go
  35. splice_modules_test.go
  36. unpack.go
  37. unpack_test.go
README.md

Blueprint Build System

Build Status

Blueprint is a meta-build system that reads in Blueprints files that describe modules that need to be built, and produces a Ninja manifest describing the commands that need to be run and their dependencies. Where most build systems use built-in rules or a domain-specific language to describe the logic for converting module descriptions to build rules, Blueprint delegates this to per-project build logic written in Go. For large, heterogenous projects this allows the inherent complexity of the build logic to be maintained in a high-level language, while still allowing simple changes to individual modules by modifying easy to understand Blueprints files.