Mercurial > SDL_sound_CoreAudio
annotate Makefile.am @ 449:daeb71a3f1ed
Extremely minor cleanup.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sat, 13 Sep 2003 20:27:33 +0000 |
parents | eb7878e07dba |
children | 636796aed4e2 |
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 |
340
5a72981b8cba
Added optional, experimental audio conversion routines by Frank Ranostaj.
Ryan C. Gordon <icculus@icculus.org>
parents:
322
diff
changeset
|
9 if USE_ALTCVT |
5a72981b8cba
Added optional, experimental audio conversion routines by Frank Ranostaj.
Ryan C. Gordon <icculus@icculus.org>
parents:
322
diff
changeset
|
10 CVT_SOURCE = alt_audio_convert.c |
5a72981b8cba
Added optional, experimental audio conversion routines by Frank Ranostaj.
Ryan C. Gordon <icculus@icculus.org>
parents:
322
diff
changeset
|
11 else |
5a72981b8cba
Added optional, experimental audio conversion routines by Frank Ranostaj.
Ryan C. Gordon <icculus@icculus.org>
parents:
322
diff
changeset
|
12 CVT_SOURCE = audio_convert.c |
5a72981b8cba
Added optional, experimental audio conversion routines by Frank Ranostaj.
Ryan C. Gordon <icculus@icculus.org>
parents:
322
diff
changeset
|
13 endif |
5a72981b8cba
Added optional, experimental audio conversion routines by Frank Ranostaj.
Ryan C. Gordon <icculus@icculus.org>
parents:
322
diff
changeset
|
14 |
72 | 15 libSDL_sound_la_SOURCES = \ |
16 SDL_sound.c \ | |
81
c047ae35d5fa
From Max Horn: fixes header installation.
Ryan C. Gordon <icculus@icculus.org>
parents:
72
diff
changeset
|
17 SDL_sound_internal.h \ |
340
5a72981b8cba
Added optional, experimental audio conversion routines by Frank Ranostaj.
Ryan C. Gordon <icculus@icculus.org>
parents:
322
diff
changeset
|
18 $(CVT_SOURCE) \ |
72 | 19 extra_rwops.c \ |
340
5a72981b8cba
Added optional, experimental audio conversion routines by Frank Ranostaj.
Ryan C. Gordon <icculus@icculus.org>
parents:
322
diff
changeset
|
20 extra_rwops.h |
72 | 21 |
201 | 22 if USE_TIMIDITY |
23 TIMIDITY_LIB = decoders/timidity/libtimidity.la | |
24 else | |
25 TIMIDITY_LIB = | |
26 endif | |
27 | |
262 | 28 if USE_MPGLIB |
29 MPGLIB_LIB = decoders/mpglib/libmpglib.la | |
30 else | |
31 MPGLIB_LIB = | |
32 endif | |
33 | |
72 | 34 libSDL_sound_la_LDFLAGS = \ |
35 -release $(LT_RELEASE) \ | |
36 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) | |
201 | 37 libSDL_sound_la_LIBADD = \ |
38 decoders/libdecoders.la \ | |
262 | 39 $(TIMIDITY_LIB) $(MPGLIB_LIB) |
134 | 40 |
41 EXTRA_DIST = \ | |
143
3e60862fbd76
Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents:
134
diff
changeset
|
42 CREDITS \ |
184
47cc2de2ae36
Changed reference to "LICENSE" file to "COPYING".
Ryan C. Gordon <icculus@icculus.org>
parents:
143
diff
changeset
|
43 COPYING \ |
247
654f4f66b757
Added CWProjects.sit to EXTRA_DIST.
Ryan C. Gordon <icculus@icculus.org>
parents:
229
diff
changeset
|
44 CHANGELOG \ |
322 | 45 CWProject.sit \ |
355 | 46 PBProjects.tar.gz \ |
414
eb7878e07dba
Added borland.zip to EXTRA_DIST.
Ryan C. Gordon <icculus@icculus.org>
parents:
355
diff
changeset
|
47 borland.zip \ |
355 | 48 Doxyfile \ |
49 docs | |
50 | |
51 dist-hook: | |
52 rm -rf `find $(distdir)/docs -name CVS` |