
git-subtree-dir: qcom/opensource/audio-kernel git-subtree-mainline:99ab089c55
git-subtree-split:0ee387dfad
Change-Id: repo: https://git.codelinaro.org/clo/la/platform/vendor/qcom/opensource/audio-kernel-ar tag: AUDIO.LA.9.0.r1-07400-lanai.0
26 řádky
509 B
Makefile
26 řádky
509 B
Makefile
ifeq ($(TARGET_SUPPORT), monaco)
|
|
KBUILD_OPTIONS := CONFIG_SND_SOC_AUTO=y
|
|
KBUILD_OPTIONS += CONFIG_SND_SOC_SA7255=m
|
|
KBUILD_OPTIONS += MODNAME=audio_dlkm
|
|
endif
|
|
|
|
ifeq ($(AUTO_GVM), yes)
|
|
KBUILD_OPTIONS += CONFIG_SND_SOC_AUTO=y
|
|
KBUILD_OPTIONS += CONFIG_SND_SOC_GVM=y
|
|
KBUILD_OPTIONS += MODNAME=audio_dlkm
|
|
endif
|
|
|
|
M=$(PWD)
|
|
AUDIO_ROOT=$(KERNEL_SRC)/$(M)
|
|
|
|
KBUILD_OPTIONS+= AUDIO_ROOT=$(AUDIO_ROOT)
|
|
|
|
all: modules
|
|
|
|
clean:
|
|
$(MAKE) -C $(KERNEL_SRC) M=$(M) clean
|
|
|
|
%:
|
|
$(MAKE) -C $(KERNEL_SRC) M=$(M) $@ $(KBUILD_OPTIONS)
|
|
|