• Home
Name Date Size #Lines LOC

..--

ci/06-Sep-2024-1,156761

common/06-Sep-2024-668416

core/06-Sep-2024-42,96228,842

packaging/06-Sep-2024-8840

target/06-Sep-2024-9,3035,194

teams/06-Sep-2024-4,4123,155

tests/06-Sep-2024-1,148907

tools/06-Sep-2024-124,08897,263

.gitignoreD06-Sep-202442 76

Android.bpD06-Sep-20241.1 KiB3734

Changes.mdD06-Sep-202437.5 KiB976723

CleanSpec.mkD06-Sep-202439.2 KiB797434

Deprecation.mdD06-Sep-20243.4 KiB7058

OWNERSD06-Sep-2024276 85

PREUPLOAD.cfgD06-Sep-2024146 64

README.mdD06-Sep-20241 KiB2417

Usage.txtD06-Sep-20243.6 KiB8969

banchanHelp.shD06-Sep-20241.1 KiB3120

buildspec.mk.defaultD06-Sep-20244.3 KiB11599

cogsetup.shD06-Sep-20242.3 KiB7239

envsetup.shD06-Sep-202435.9 KiB1,182903

help.shD06-Sep-20243 KiB7253

navbar.mdD06-Sep-2024116 54

rbesetup.shD06-Sep-20242.7 KiB7857

shell_utils.shD06-Sep-20244.3 KiB153121

tapasHelp.shD06-Sep-2024804 2415

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