Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
common/ | 23-Mar-2024 | - | 513 | 301 | ||
core/ | 23-Mar-2024 | - | 34,298 | 22,761 | ||
packaging/ | 23-Mar-2024 | - | 85 | 37 | ||
target/ | 23-Mar-2024 | - | 6,950 | 3,431 | ||
tests/ | 23-Mar-2024 | - | 38 | 30 | ||
tools/ | 23-Mar-2024 | - | 80,883 | 62,110 | ||
Changes.md | D | 23-Mar-2024 | 27 KiB | 671 | 488 | |
CleanSpec.mk | D | 23-Mar-2024 | 36.1 KiB | 731 | 408 | |
Deprecation.md | D | 23-Mar-2024 | 3.4 KiB | 70 | 58 | |
OWNERS | D | 23-Mar-2024 | 287 | 12 | 9 | |
README.md | D | 23-Mar-2024 | 1 KiB | 24 | 17 | |
Usage.txt | D | 23-Mar-2024 | 3.6 KiB | 89 | 69 | |
buildspec.mk.default | D | 23-Mar-2024 | 4.3 KiB | 115 | 99 | |
envsetup.sh | D | 23-Mar-2024 | 45 KiB | 1,619 | 1,310 | |
help.sh | D | 23-Mar-2024 | 2.5 KiB | 64 | 46 | |
navbar.md | D | 23-Mar-2024 | 116 | 5 | 4 | |
rbesetup.sh | D | 23-Mar-2024 | 1.4 KiB | 37 | 27 | |
tapasHelp.sh | D | 23-Mar-2024 | 794 | 24 | 15 |
README.md
1# Android Make Build System 2 3This is the Makefile-based portion of the Android Build System. 4 5For documentation on how to run a build, see [Usage.txt](Usage.txt) 6 7For a list of behavioral changes useful for Android.mk writers see 8[Changes.md](Changes.md) 9 10For an outdated reference on Android.mk files, see 11[build-system.html](/core/build-system.html). Our Android.mk files look similar, 12but are entirely different from the Android.mk files used by the NDK build 13system. When searching for documentation elsewhere, ensure that it is for the 14platform build system -- most are not. 15 16This Makefile-based system is in the process of being replaced with [Soong], a 17new build system written in Go. During the transition, all of these makefiles 18are read by [Kati], and generate a ninja file instead of being executed 19directly. That's combined with a ninja file read by Soong so that the build 20graph of the two systems can be combined and run as one. 21 22[Kati]: https://github.com/google/kati 23[Soong]: https://android.googlesource.com/platform/build/soong/+/master 24