• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

common/22-Nov-2023-532317

core/22-Nov-2023-30,68519,776

packaging/22-Nov-2023-8537

target/22-Nov-2023-8,6234,616

tests/22-Nov-2023-187156

tools/22-Nov-2023-62,72546,728

.gitD01-Jan-19700

.gitignoreD22-Nov-202336 65

Android.bpD22-Nov-20231.9 KiB5047

Changes.mdD22-Nov-202329.6 KiB725527

CleanSpec.mkD22-Nov-202337.5 KiB763421

Deprecation.mdD22-Nov-20233.4 KiB7058

METADATAD22-Nov-2023300 98

OWNERSD22-Nov-202337 21

PREUPLOAD.cfgD22-Nov-2023116 32

README.mdD22-Nov-20231 KiB2417

Usage.txtD22-Nov-20233.6 KiB8969

banchanHelp.shD22-Nov-20231.1 KiB3120

buildspec.mk.defaultD22-Nov-20234.3 KiB11599

envsetup.shD22-Nov-202352.1 KiB1,8491,496

help.shD22-Nov-20232.7 KiB6849

navbar.mdD22-Nov-2023116 54

rbesetup.shD22-Nov-20232.7 KiB8060

tapasHelp.shD22-Nov-2023794 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