887f9f0253
Fix Makefile to compile files conditionally to CONFIG_SND_PCM_OSS_PLUGINS, and remove unneeded ifdefs in these files. Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
14 lines
339 B
Makefile
14 lines
339 B
Makefile
#
|
|
# Makefile for ALSA
|
|
# Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz>
|
|
#
|
|
|
|
snd-mixer-oss-objs := mixer_oss.o
|
|
|
|
snd-pcm-oss-y := pcm_oss.o
|
|
snd-pcm-oss-$(CONFIG_SND_PCM_OSS_PLUGINS) += pcm_plugin.o \
|
|
io.o copy.o linear.o mulaw.o route.o rate.o
|
|
|
|
obj-$(CONFIG_SND_MIXER_OSS) += snd-mixer-oss.o
|
|
obj-$(CONFIG_SND_PCM_OSS) += snd-pcm-oss.o
|