mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 08:38:24 +08:00
[ALSA] Clean up Makefile
Clean up Makefile using xxx- style instead of ifeq(CONFIG_XXX,y). Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
This commit is contained in:
parent
8f11551b17
commit
52a6db82ef
@ -3,13 +3,9 @@
|
||||
# Copyright (c) 1999,2001 by Jaroslav Kysela <perex@suse.cz>
|
||||
#
|
||||
|
||||
snd-objs := sound.o init.o memory.o info.o control.o misc.o device.o
|
||||
ifeq ($(CONFIG_ISA_DMA_API),y)
|
||||
snd-objs += isadma.o
|
||||
endif
|
||||
ifeq ($(CONFIG_SND_OSSEMUL),y)
|
||||
snd-objs += sound_oss.o info_oss.o
|
||||
endif
|
||||
snd-y := sound.o init.o memory.o info.o control.o misc.o device.o
|
||||
snd-$(CONFIG_ISA_DMA_API) += isadma.o
|
||||
snd-$(CONFIG_SND_OSSEMUL) += sound_oss.o info_oss.o
|
||||
|
||||
snd-pcm-objs := pcm.o pcm_native.o pcm_lib.o pcm_timer.o pcm_misc.o \
|
||||
pcm_memory.o
|
||||
|
@ -4,10 +4,8 @@
|
||||
#
|
||||
|
||||
snd-opl3-lib-objs := opl3_lib.o opl3_synth.o
|
||||
snd-opl3-synth-objs := opl3_seq.o opl3_midi.o opl3_drums.o
|
||||
ifeq ($(CONFIG_SND_SEQUENCER_OSS),y)
|
||||
snd-opl3-synth-objs += opl3_oss.o
|
||||
endif
|
||||
snd-opl3-synth-y := opl3_seq.o opl3_midi.o opl3_drums.o
|
||||
snd-opl3-synth-$(CONFIG_SND_SEQUENCER_OSS) += opl3_oss.o
|
||||
|
||||
#
|
||||
# this function returns:
|
||||
|
@ -7,9 +7,7 @@ snd-i2c-objs := i2c.o
|
||||
snd-cs8427-objs := cs8427.o
|
||||
snd-tea6330t-objs := tea6330t.o
|
||||
|
||||
ifeq ($(subst m,y,$(CONFIG_L3)),y)
|
||||
obj-$(CONFIG_L3) += l3/
|
||||
endif
|
||||
obj-$(CONFIG_L3) += l3/
|
||||
|
||||
obj-$(CONFIG_SND) += other/
|
||||
|
||||
|
@ -3,10 +3,8 @@
|
||||
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
|
||||
#
|
||||
|
||||
snd-cs46xx-objs := cs46xx.o cs46xx_lib.o
|
||||
ifeq ($(CONFIG_SND_CS46XX_NEW_DSP),y)
|
||||
snd-cs46xx-objs += dsp_spos.o dsp_spos_scb_lib.o
|
||||
endif
|
||||
snd-cs46xx-y := cs46xx.o cs46xx_lib.o
|
||||
snd-cs46xx-$(CONFIG_SND_CS46XX_NEW_DSP) += dsp_spos.o dsp_spos_scb_lib.o
|
||||
|
||||
# Toplevel Module Dependency
|
||||
obj-$(CONFIG_SND_CS46XX) += snd-cs46xx.o
|
||||
|
@ -2,11 +2,8 @@
|
||||
# Makefile for cs5535audio
|
||||
#
|
||||
|
||||
snd-cs5535audio-objs := cs5535audio.o cs5535audio_pcm.o
|
||||
|
||||
ifeq ($(CONFIG_PM),y)
|
||||
snd-cs5535audio-objs += cs5535audio_pm.o
|
||||
endif
|
||||
snd-cs5535audio-y := cs5535audio.o cs5535audio_pcm.o
|
||||
snd-cs5535audio-$(CONFIG_PM) += cs5535audio_pm.o
|
||||
|
||||
# Toplevel Module Dependency
|
||||
obj-$(CONFIG_SND_CS5535AUDIO) += snd-cs5535audio.o
|
||||
|
Loading…
Reference in New Issue
Block a user