1 # SPDX-License-Identifier: GPL-2.0 << 2 # 1 # 3 # Makefile for ALSA 2 # Makefile for ALSA 4 # Copyright (c) 2001 by Jaroslav Kysela <perex@ !! 3 # Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz> 5 # 4 # 6 5 7 snd-emu10k1-y := emu10k1.o emu10k1_main.o \ !! 6 snd-emu10k1-objs := emu10k1.o emu10k1_main.o \ 8 irq.o memory.o voice.o emu 7 irq.o memory.o voice.o emumpu401.o emupcm.o io.o \ 9 emumixer.o emufx.o timer.o !! 8 emuproc.o emumixer.o emufx.o 10 snd-emu10k1-$(CONFIG_SND_PROC_FS) += emuproc.o !! 9 snd-emu10k1-synth-objs := emu10k1_synth.o emu10k1_callback.o emu10k1_patch.o 11 snd-emu10k1-synth-y := emu10k1_synth.o emu10k1 !! 10 12 snd-emu10k1x-y := emu10k1x.o !! 11 # >> 12 # this function returns: >> 13 # "m" - CONFIG_SND_SEQUENCER is m >> 14 # <empty string> - CONFIG_SND_SEQUENCER is undefined >> 15 # otherwise parameter #1 value >> 16 # >> 17 sequencer = $(if $(subst y,,$(CONFIG_SND_SEQUENCER)),$(if $(1),m),$(if $(CONFIG_SND_SEQUENCER),$(1))) 13 18 14 # Toplevel Module Dependency 19 # Toplevel Module Dependency 15 obj-$(CONFIG_SND_EMU10K1) += snd-emu10k1.o 20 obj-$(CONFIG_SND_EMU10K1) += snd-emu10k1.o 16 obj-$(CONFIG_SND_EMU10K1_SEQ) += snd-emu10k1-s !! 21 obj-$(call sequencer,$(CONFIG_SND_EMU10K1)) += snd-emu10k1-synth.o 17 obj-$(CONFIG_SND_EMU10K1X) += snd-emu10k1x.o <<
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.