sevki
c9e1dba412
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>
12 lines
365 B
Makefile
12 lines
365 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for ALSA
|
|
# Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
|
|
#
|
|
|
|
snd-opl4-lib-objs := opl4_lib.o opl4_mixer.o
|
|
snd-opl4-lib-$(CONFIG_SND_PROC_FS) += opl4_proc.o
|
|
snd-opl4-synth-objs := opl4_seq.o opl4_synth.o yrw801.o
|
|
|
|
obj-$(CONFIG_SND_OPL4_LIB) += snd-opl4-lib.o
|
|
obj-$(CONFIG_SND_OPL4_LIB_SEQ) += snd-opl4-synth.o
|