commit | 6d81498baf23c839c22cee00b15723d2863ca373 | [log] [tgz] |
---|---|---|
author | Anton Hansson <hansson@google.com> | Mon Nov 26 18:12:05 2018 +0000 |
committer | Anton Hansson <hansson@google.com> | Mon Nov 26 18:12:05 2018 +0000 |
tree | 92804c6d23118438105c609ca05e370c734b2212 | |
parent | 5d218a123f01aa47528fc05306b32dbae65ee50b [diff] |
Improve consistency of indentation in Makefile Only use one consecutive tab in make rules and use spaces for any additional indentation. This should generally prevent tabs from appearing on the cmdline. This cl is the result of 3 regex replaces: \\\n\t\t([^\t]) -> \\\n\t \1 \\\n\t\t\t([^\t]) -> \\\n\t \1 \\\n\t\t\t\t([^\t]) -> \\\n\t \1 Test: make mainline_system_arm64 Change-Id: Ic3f72deed35e39e4b1a4b492db65aeabc5bef0d5
This is the Makefile-based portion of the Android Build System.
For documentation on how to run a build, see Usage.txt
For a list of behavioral changes useful for Android.mk writers see Changes.md
For an outdated reference on Android.mk files, see build-system.html. Our Android.mk files look similar, but are entirely different from the Android.mk files used by the NDK build system. When searching for documentation elsewhere, ensure that it is for the platform build system -- most are not.
This Makefile-based system is in the process of being replaced with Soong, a new build system written in Go. During the transition, all of these makefiles are read by Kati, and generate a ninja file instead of being executed directly. That's combined with a ninja file read by Soong so that the build graph of the two systems can be combined and run as one.