51ec5ec34a
This patch fixes an issue with all the functions defined in scripts/Makefile.lib gets called everytime when this makefile is included thus causing the build to slow down. Bug: 118818737 Change-Id: I4929e64d53a0bc865b12a27cce37520be52c9744 Signed-off-by: Thierry Strudel <tstrudel@google.com> Signed-off-by: starlight5234 <starlight5234@protonmail.ch>
61 lines
2 KiB
Makefile
61 lines
2 KiB
Makefile
# auto-detect subdirs
|
|
ifeq ($(CONFIG_ARCH_SDXPOORWILLS), y)
|
|
include $(srctree)/techpack/audio/config/sdxpoorwillsauto.conf
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_SM8150), y)
|
|
include $(srctree)/techpack/audio/config/sm8150auto.conf
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
|
include $(srctree)/techpack/audio/config/sm8150auto.conf
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_KONA), y)
|
|
include $(srctree)/techpack/audio/config/konaauto.conf
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_SDM660), y)
|
|
include $(srctree)/techpack/audio/config/sdm660auto.conf
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_BENGAL), y)
|
|
include $(srctree)/techpack/audio/config/bengalauto.conf
|
|
export $(shell sed 's/=.*//' $(srctree)/techpack/audio/config/bengalauto.conf)
|
|
endif
|
|
|
|
# Use USERINCLUDE when you must reference the UAPI directories only.
|
|
USERINCLUDE += \
|
|
-I$(srctree)/techpack/audio/include/uapi \
|
|
-I$(srctree)/techpack/audio/include
|
|
|
|
# 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_SDXPOORWILLS), y)
|
|
LINUXINCLUDE += \
|
|
-include $(srctree)/techpack/audio/config/sdxpoorwillsautoconf.h
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_SM8150), y)
|
|
LINUXINCLUDE += \
|
|
-include $(srctree)/techpack/audio/config/sm8150autoconf.h
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
|
|
LINUXINCLUDE += \
|
|
-include $(srctree)/techpack/audio/config/sm8150autoconf.h
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_KONA), y)
|
|
LINUXINCLUDE += \
|
|
-include $(srctree)/techpack/audio/config/konaautoconf.h
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_SDM660), y)
|
|
LINUXINCLUDE += \
|
|
-include $(srctree)/techpack/audio/config/sdm660autoconf.h
|
|
endif
|
|
ifeq ($(CONFIG_ARCH_BENGAL), y)
|
|
LINUXINCLUDE += \
|
|
-include $(srctree)/techpack/audio/config/bengalautoconf.h
|
|
endif
|
|
|
|
obj-y += soc/
|
|
obj-y += dsp/
|
|
obj-y += ipc/
|
|
obj-y += asoc/
|