mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-31 22:25:34 -04:00
Don't require as10k1 in the configure script and remove the .emu10k1 files in maintainer-clean instead of clean, since the assembled .emu10k1 files are included in the alsa-tools dist. Signed-off-by: Mikael Magnusson <mikma@users.sourceforge.net>
20 lines
516 B
Makefile
20 lines
516 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
|
|
|
|
|
|
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
|
|
|
|
MAINTAINERCLEANFILES = $(dist_effects_DATA)
|
|
|
|
SUFFIXES = .asm .emu10k1
|
|
|
|
if HAVE_AS10K1
|
|
.asm.emu10k1:
|
|
$(AS10K1) -o $@ $<
|
|
endif HAVE_AS10K1
|