mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2025-02-15 00:18:03 +00:00
39 lines
1.0 KiB
Makefile
39 lines
1.0 KiB
Makefile
#
|
|
# Copyright (C) 2016 MediaTek Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
# See http://www.gnu.org/licenses/gpl-2.0.html for more details.
|
|
#
|
|
|
|
ifeq ($(CONFIG_MTK_GCOV_KERNEL),y)
|
|
GCOV_PROFILE := y
|
|
endif
|
|
|
|
subdir-ccflags-y += -I$(srctree)/drivers/misc/mediatek/mtprof/
|
|
subdir-ccflags-y += -I$(srctree)/drivers/misc/mediatek/dbgtop/
|
|
subdir-ccflags-y += -I$(srctree)/kernel/
|
|
subdir-ccflags-y += -I$(srctree)/drivers/staging/android/
|
|
|
|
ccflags-y += -DTEXT_OFFSET=$(TEXT_OFFSET)
|
|
obj-$(CONFIG_MTK_AEE_IPANIC) += mrdump.o
|
|
|
|
mrdump-y := \
|
|
mboot_params.o \
|
|
mrdump_control.o \
|
|
mrdump_mini.o \
|
|
mrdump_panic.o \
|
|
mrdump_helper.o
|
|
|
|
mrdump-$(CONFIG_ARM) += mrdump_arm.o
|
|
|
|
mrdump-$(CONFIG_ARM64) += \
|
|
mrdump_arm64.o
|
|
|
|
KASAN_SANITIZE := n
|