setup CI/CD for kernel development - added CodeQL for code scanning - every pr is built as an image and is available for 30days on https://oklinux.dev - tagged and released on github for now Signed-off-by: sevki <s@sevki.io>
13 lines
398 B
Makefile
13 lines
398 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Core support
|
|
obj-$(CONFIG_SND_SOC) += common/
|
|
|
|
# Platform Support
|
|
obj-$(CONFIG_SND_SST_ATOM_HIFI2_PLATFORM) += atom/
|
|
obj-$(CONFIG_SND_SOC_INTEL_CATPT) += catpt/
|
|
obj-$(CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON) += skylake/
|
|
obj-$(CONFIG_SND_SOC_INTEL_KEEMBAY) += keembay/
|
|
obj-$(CONFIG_SND_SOC_INTEL_AVS) += avs/
|
|
|
|
# Machine support
|
|
obj-$(CONFIG_SND_SOC) += boards/
|