• Home
Name
Date
Size
#Lines
LOC

..--

common/03-May-2024-562330

core/03-May-2024-39,25126,178

orchestrator/03-May-2024-542370

packaging/03-May-2024-8537

target/03-May-2024-9,1895,068

tests/03-May-2024-776655

tools/03-May-2024-93,79072,457

.gitignoreD03-May-202436 65

Changes.mdD03-May-202430.2 KiB756551

CleanSpec.mkD03-May-202438.2 KiB779426

Deprecation.mdD03-May-20243.4 KiB7058

METADATAD03-May-2024326 98

OWNERSD03-May-202437 21

PREUPLOAD.cfgD03-May-2024116 32

README.mdD03-May-20241 KiB2417

Usage.txtD03-May-20243.6 KiB8969

banchanHelp.shD03-May-20241.1 KiB3120

buildspec.mk.defaultD03-May-20244.3 KiB11599

envsetup.shD03-May-202456.1 KiB1,9661,594

finalize_branch_for_release.shD03-May-2024594 286

help.shD03-May-20242.9 KiB7051

navbar.mdD03-May-2024116 54

rbesetup.shD03-May-20242.9 KiB8362

tapasHelp.shD03-May-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