Mercurial > SDL_sound_CoreAudio
annotate Makefile.am @ 237:ceadd952319a
Increased ModPlug decoder's priority to be above MikMod. Fixed some coding
conventions. Mutex-protected the current sample list. Fixed sample list
addition code. Decoder selection in NewSample is more efficient now. Other
cleanups and corrections.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sat, 19 Jan 2002 23:31:19 +0000 |
parents | fe5251b5624c |
children | 654f4f66b757 |
rev | line source |
---|---|
72 | 1 lib_LTLIBRARIES = libSDL_sound.la |
2 | |
229
fe5251b5624c
Changed test dir to playsound, and make playsound part of standard build and
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
3 SUBDIRS = decoders . playsound |
72 | 4 |
81
c047ae35d5fa
From Max Horn: fixes header installation.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
5 libSDL_soundincludedir = $(includedir)/SDL |
c047ae35d5fa
From Max Horn: fixes header installation.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
6 libSDL_soundinclude_HEADERS = \ |
c047ae35d5fa
From Max Horn: fixes header installation.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
7 SDL_sound.h |
72 | 8 |
9 libSDL_sound_la_SOURCES = \ | |
10 SDL_sound.c \ | |
81
c047ae35d5fa
From Max Horn: fixes header installation.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
11 SDL_sound_internal.h \ |
72 | 12 extra_rwops.c \ |
143
3e60862fbd76
Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents:
134
diff
changeset
|
13 extra_rwops.h \ |
3e60862fbd76
Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents:
134
diff
changeset
|
14 audio_convert.c |
72 | 15 |
201 | 16 if USE_TIMIDITY |
17 TIMIDITY_LIB = decoders/timidity/libtimidity.la | |
18 else | |
19 TIMIDITY_LIB = | |
20 endif | |
21 | |
72 | 22 libSDL_sound_la_LDFLAGS = \ |
23 -release $(LT_RELEASE) \ | |
24 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) | |
201 | 25 libSDL_sound_la_LIBADD = \ |
26 decoders/libdecoders.la \ | |
27 $(TIMIDITY_LIB) | |
134 | 28 |
29 EXTRA_DIST = \ | |
143
3e60862fbd76
Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents:
134
diff
changeset
|
30 CREDITS \ |
184
47cc2de2ae36
Changed reference to "LICENSE" file to "COPYING".
Ryan C. Gordon <icculus@icculus.org>
parents:
143
diff
changeset
|
31 COPYING \ |
143
3e60862fbd76
Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents:
134
diff
changeset
|
32 CHANGELOG |