Enable compilation for sdm670 audio. Update for both internal and external codecs. Change-Id: I030837a2c0180a5a31d0ab786ad5de607027050f Signed-off-by: Laxminath Kasam <lkasam@codeaurora.org>
34 lines
949 B
Makefile
34 lines
949 B
Makefile
# auto-detect subdirs
|
|
ifeq ($(CONFIG_ARCH_SDM845), y)
|
|
include $(srctree)/techpack/audio/config/sdm845auto.conf
|
|
export
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_SDM670), y)
|
|
include $(srctree)/techpack/audio/config/sdm670auto.conf
|
|
export
|
|
endif
|
|
|
|
# Use USERINCLUDE when you must reference the UAPI directories only.
|
|
USERINCLUDE += \
|
|
-I$(srctree)/techpack/audio/include/uapi \
|
|
|
|
# Use LINUXINCLUDE when you must reference the include/ directory.
|
|
# Needed to be compatible with the O= option
|
|
LINUXINCLUDE += \
|
|
-I$(srctree)/techpack/audio/include/uapi \
|
|
-I$(srctree)/techpack/audio/include
|
|
|
|
ifeq ($(CONFIG_ARCH_SDM845), y)
|
|
LINUXINCLUDE += \
|
|
-include $(srctree)/techpack/audio/config/sdm845autoconf.h
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_SDM670), y)
|
|
LINUXINCLUDE += \
|
|
-include $(srctree)/techpack/audio/config/sdm670autoconf.h
|
|
endif
|
|
|
|
|
|
obj-y += asoc/
|
|
obj-y += dsp/
|
|
obj-y += ipc/
|
|
obj-y += soc/
|