MAKECMDGOALS isn't sent to Android.mk anymore, so let's just use the correct Defenderault case for builds. Change-Id: I91fa502672ceb591d8ad5badeae1d530e2643586 Signed-off-by: Chris Fries <cfries@motorola.com> Reviewed-on: https://gerrit.mot.com/901387 SME-Granted: SME Approvals Granted SLTApproved: Slta Waiver <sltawvr@motorola.com> Submit-Approved: Jira Key <jirakey@motorola.com> Tested-by: Jira Key <jirakey@motorola.com> Reviewed-by: Yin-Jun Chen <a7301c@motorola.com> Reviewed-by: Andrew Wheeler <awheeler@motorola.com> Reviewed-by: Jared Suttles <jsuttles@motorola.com> Reviewed-on: https://gerrit.mot.com/903600 Reviewed-by: Jason Hrycay <jason.hrycay@motorola.com>
27 lines
717 B
Makefile
27 lines
717 B
Makefile
# This Android.mk is experimental. And possibly the worst
|
|
# makefile on the planet.
|
|
#
|
|
# The purpose of this file is to allow users to run 'mm' to
|
|
# rebuild the kernel from this tree. 'mm' is a faster command
|
|
# because it instructs the Android build system to not read
|
|
# every Android.mk file (and hence not check all dependencies).
|
|
# The benefit is that the user is able to essentially directly
|
|
# compile the kernel.
|
|
#
|
|
# Make sure to use the '-j' option when running 'mm' to spawn
|
|
# multiple jobs and speed up your build. For example:
|
|
#
|
|
# cd $ANDROID_BUILD_TOP
|
|
# mmm -j32 kernel
|
|
#
|
|
|
|
ifneq ($(ONE_SHOT_MAKEFILE),)
|
|
|
|
include build/target/board/Android.mk
|
|
include kernel/AndroidKernel.mk
|
|
|
|
ALL_MODULES += bootimage
|
|
|
|
endif
|
|
|