You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
675 B
17 lines
675 B
#===============================================================================
|
|
# AI SUPPORT is optional
|
|
ifeq ($(CONFIG_SOCT_AI_SUPPORT), y)
|
|
ccflags-y += -DCONFIG_SOCT_AUDIO_AI_SUPPORT
|
|
ccflags-y += -I$(aiao_path)/ai
|
|
$(MODNAME)-objs-y += ai/drv_ai_intf.o \
|
|
ai/drv_ai.o \
|
|
ai/drv_ai_mclk.o \
|
|
ai/drv_ai_mclk_hdmi.o \
|
|
ai/drv_ai_mclk_sif.o
|
|
|
|
#===============================================================================
|
|
include $(aiao_path)/ai/pdm_rx/pdm_rx.mak
|
|
include $(aiao_path)/ai/adac_ext/adac_rx.mak
|
|
endif
|
|
#===============================================================================
|