1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # auto-detect subdirs
- ifeq ($(CONFIG_ARCH_SDXPOORWILLS), y)
- include $(srctree)/techpack/audio/config/sdxpoorwillsauto.conf
- export
- endif
- ifeq ($(CONFIG_ARCH_SM8150), y)
- include $(srctree)/techpack/audio/config/sm8150auto.conf
- export
- endif
- ifeq ($(CONFIG_ARCH_SDMSHRIKE), y)
- include $(srctree)/techpack/audio/config/sm8150auto.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_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
- obj-y += soc/
- obj-y += dsp/
- obj-y += ipc/
- obj-y += asoc/
|