mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-25 06:59:53 -05:00
ld10k1: init_live updates * Added IEC958 Optical Raw Playback * Changed to mono switches saving GPRs * Renamed controls to match the Audigy driver closer. * switch_2x2.asm: Switch 2 x 2 channels * mono_switch_2.asm: Mono Switch 2 channels * mono_switch_2x2.asm: Mono Switch 2 x 2 channels * prologic.asm: LFE output added Signed-off-by: Mikael Magnusson <mikma@users.sourceforge.net>
22 lines
640 B
Makefile
22 lines
640 B
Makefile
EXTRA_DIST = README emu_constants.asm \
|
|
simple.asm vol_master.asm tone.asm \
|
|
vol_2.asm output.asm switch_2.asm \
|
|
sto51.asm switch_6.asm copy_2.asm \
|
|
prologic.asm fxbus.asm switch_2x2.asm \
|
|
mono_switch_2.asm mono_switch_2x2.asm
|
|
|
|
|
|
dist_effects_DATA = simple.emu10k1 vol_master.emu10k1 tone.emu10k1 \
|
|
vol_2.emu10k1 output.emu10k1 switch_2.emu10k1 \
|
|
sto51.emu10k1 switch_6.emu10k1 copy_2.emu10k1 \
|
|
prologic.emu10k1 fxbus.emu10k1 switch_2x2.emu10k1 \
|
|
mono_switch_2.emu10k1 mono_switch_2x2.emu10k1
|
|
|
|
MAINTAINERCLEANFILES = $(dist_effects_DATA)
|
|
|
|
SUFFIXES = .asm .emu10k1
|
|
|
|
if HAVE_AS10K1
|
|
.asm.emu10k1:
|
|
$(AS10K1) -o $@ $<
|
|
endif HAVE_AS10K1
|