mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
build snd_mixa.S at all times. it does the right thing when no intel asm is
wanted.
This commit is contained in:
parent
9cd83e178f
commit
f36fa31ba2
1 changed files with 9 additions and 13 deletions
|
@ -4,38 +4,34 @@ lib_LTLIBRARIES = libQFsound.la
|
|||
|
||||
libQFsound_la_LDFLAGS = -version-info 1:0:0 $(CD_LIBS)
|
||||
|
||||
#if ASM_ARCH
|
||||
sound_ASM= snd_mixa.S
|
||||
#endif
|
||||
|
||||
#
|
||||
# ... Audio targets
|
||||
#
|
||||
common_sound_files= snd_common.c snd_dma.c snd_mem.c snd_mix.c
|
||||
common_sound_files= snd_common.c snd_dma.c snd_mem.c snd_mix.c snd_mixa.S
|
||||
if SNDTYPE_SDL
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_sdl.c $(sound_ASM)
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_sdl.c
|
||||
endif
|
||||
if SNDTYPE_ALSA_0_5
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_alsa_0_5.c $(sound_ASM)
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_alsa_0_5.c
|
||||
endif
|
||||
if SNDTYPE_ALSA_0_9
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_alsa_0_9.c $(sound_ASM)
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_alsa_0_9.c
|
||||
endif
|
||||
# No idea what this is. it's in configure.in though...
|
||||
#if SNDTYPE_MME
|
||||
#libQFsound_la_SOURCES= $(common_sound_files) snd_mme.c $(sound_ASM)
|
||||
#libQFsound_la_SOURCES= $(common_sound_files) snd_mme.c
|
||||
#endif
|
||||
if SNDTYPE_OSS
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_oss.c $(sound_ASM)
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_oss.c
|
||||
endif
|
||||
if SNDTYPE_SGI
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_sgi.c $(sound_ASM)
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_sgi.c
|
||||
endif
|
||||
if SNDTYPE_SUN
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_sun.c $(sound_ASM)
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_sun.c
|
||||
endif
|
||||
if SNDTYPE_WIN32
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_win.c $(sound_ASM)
|
||||
libQFsound_la_SOURCES= $(common_sound_files) snd_win.c
|
||||
endif
|
||||
if SNDTYPE_NULL
|
||||
libQFsound_la_SOURCES= snd_common.c snd_null.c
|
||||
|
|
Loading…
Reference in a new issue