mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2024-11-19 13:27:49 +00:00
31 lines
921 B
Makefile
31 lines
921 B
Makefile
# make sure that the environment variables ARCH and CROSS_COMPILE
|
|
# are set for your architecture and cross compiler
|
|
#
|
|
# e.g. for Beaglebone black:
|
|
# export ARCH := arm
|
|
# export CROSS_COMPILE := arm-linux-gnueabihf-
|
|
#
|
|
# e.g. Samsung Galaxy S6:
|
|
# export ARCH := arm64
|
|
# export CROSS_COMPILE := aarch64-linux-android-
|
|
|
|
#MODULE_NAME = snd-soc-rt
|
|
|
|
# additional debugging
|
|
#TFA_DEBUG=1
|
|
|
|
# MTK include path
|
|
subdir-ccflags-y += -I$(srctree)/sound/soc/mediatek/audio_dsp
|
|
subdir-ccflags-y += -I$(srctree)/sound/soc/mediatek/common
|
|
subdir-ccflags-y += -I$(srctree)/drivers/misc/mediatek/audio_ipi/include
|
|
subdir-ccflags-y += -I$(srctree)/drivers/misc/mediatek/include
|
|
subdir-ccflags-y += -I$(srctree)/drivers/base
|
|
|
|
# debugging support (also enables trace_printk)
|
|
ccflags-y += -Werror
|
|
ccflags-y += $(call cc-option,-Wno-date-time,)
|
|
|
|
snd-soc-rt5512-objs += rt5512.o
|
|
|
|
obj-$(CONFIG_SND_SOC_RT5512) += snd-soc-rt5512.o richtek_spm_cls.o
|