comparison Makefile.am @ 340:5a72981b8cba

Added optional, experimental audio conversion routines by Frank Ranostaj.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 20 May 2002 16:21:58 +0000
parents 31cc49d7d0ce
children 5dbf2f9cde00
comparison
equal deleted inserted replaced
339:e3ac0d41668c 340:5a72981b8cba
4 4
5 libSDL_soundincludedir = $(includedir)/SDL 5 libSDL_soundincludedir = $(includedir)/SDL
6 libSDL_soundinclude_HEADERS = \ 6 libSDL_soundinclude_HEADERS = \
7 SDL_sound.h 7 SDL_sound.h
8 8
9 if USE_ALTCVT
10 CVT_SOURCE = alt_audio_convert.c
11 else
12 CVT_SOURCE = audio_convert.c
13 endif
14
9 libSDL_sound_la_SOURCES = \ 15 libSDL_sound_la_SOURCES = \
10 SDL_sound.c \ 16 SDL_sound.c \
11 SDL_sound_internal.h \ 17 SDL_sound_internal.h \
18 $(CVT_SOURCE) \
12 extra_rwops.c \ 19 extra_rwops.c \
13 extra_rwops.h \ 20 extra_rwops.h
14 audio_convert.c
15 21
16 if USE_TIMIDITY 22 if USE_TIMIDITY
17 TIMIDITY_LIB = decoders/timidity/libtimidity.la 23 TIMIDITY_LIB = decoders/timidity/libtimidity.la
18 else 24 else
19 TIMIDITY_LIB = 25 TIMIDITY_LIB =