1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
39 lines
1.4 KiB
Makefile
39 lines
1.4 KiB
Makefile
#
|
|
# Makefile for ALSA
|
|
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
|
|
#
|
|
|
|
snd-sb-common-objs := sb_common.o sb_mixer.o
|
|
snd-sb8-dsp-objs := sb8_main.o sb8_midi.o
|
|
snd-sb16-dsp-objs := sb16_main.o
|
|
snd-sb16-csp-objs := sb16_csp.o
|
|
snd-sb8-objs := sb8.o
|
|
snd-sb16-objs := sb16.o
|
|
snd-sbawe-objs := sbawe.o emu8000.o
|
|
snd-emu8000-synth-objs := emu8000_synth.o emu8000_callback.o emu8000_patch.o emu8000_pcm.o
|
|
snd-es968-objs := es968.o
|
|
|
|
#
|
|
# this function returns:
|
|
# "m" - CONFIG_SND_SEQUENCER is m
|
|
# <empty string> - CONFIG_SND_SEQUENCER is undefined
|
|
# otherwise parameter #1 value
|
|
#
|
|
sequencer = $(if $(subst y,,$(CONFIG_SND_SEQUENCER)),$(if $(1),m),$(if $(CONFIG_SND_SEQUENCER),$(1)))
|
|
|
|
# Toplevel Module Dependency
|
|
obj-$(CONFIG_SND_ALS100) += snd-sb16-dsp.o snd-sb-common.o
|
|
obj-$(CONFIG_SND_CMI8330) += snd-sb16-dsp.o snd-sb-common.o
|
|
obj-$(CONFIG_SND_DT019X) += snd-sb16-dsp.o snd-sb-common.o
|
|
obj-$(CONFIG_SND_SB8) += snd-sb8.o snd-sb8-dsp.o snd-sb-common.o
|
|
obj-$(CONFIG_SND_SB16) += snd-sb16.o snd-sb16-dsp.o snd-sb-common.o
|
|
obj-$(CONFIG_SND_SBAWE) += snd-sbawe.o snd-sb16-dsp.o snd-sb-common.o
|
|
obj-$(CONFIG_SND_ES968) += snd-es968.o snd-sb8-dsp.o snd-sb-common.o
|
|
obj-$(CONFIG_SND_ALS4000) += snd-sb-common.o
|
|
ifeq ($(CONFIG_SND_SB16_CSP),y)
|
|
obj-$(CONFIG_SND_SB16) += snd-sb16-csp.o
|
|
obj-$(CONFIG_SND_SBAWE) += snd-sb16-csp.o
|
|
endif
|
|
obj-$(call sequencer,$(CONFIG_SND_SBAWE)) += snd-emu8000-synth.o
|
|
|
|
obj-m := $(sort $(obj-m))
|