Mercurial > SDL_sound_CoreAudio
annotate Makefile.am @ 537:4e85073841fe stable-1.0
"make dist" should clean out .svn dirs now, not CVS dirs.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 17 Apr 2008 18:10:48 +0000 |
parents | 75819e5c59d4 |
children |
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 \ |
465
636796aed4e2
Build/packaging fixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
414
diff
changeset
|
12 alt_audio_convert.c \ |
636796aed4e2
Build/packaging fixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
414
diff
changeset
|
13 alt_audio_convert.h \ |
636796aed4e2
Build/packaging fixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
414
diff
changeset
|
14 audio_convert.c \ |
72 | 15 extra_rwops.c \ |
340
5a72981b8cba
Added optional, experimental audio conversion routines by Frank Ranostaj.
Ryan C. Gordon <icculus@icculus.org>
parents:
322
diff
changeset
|
16 extra_rwops.h |
72 | 17 |
201 | 18 if USE_TIMIDITY |
19 TIMIDITY_LIB = decoders/timidity/libtimidity.la | |
20 else | |
21 TIMIDITY_LIB = | |
22 endif | |
23 | |
262 | 24 if USE_MPGLIB |
25 MPGLIB_LIB = decoders/mpglib/libmpglib.la | |
26 else | |
27 MPGLIB_LIB = | |
28 endif | |
29 | |
72 | 30 libSDL_sound_la_LDFLAGS = \ |
31 -release $(LT_RELEASE) \ | |
32 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) | |
201 | 33 libSDL_sound_la_LIBADD = \ |
34 decoders/libdecoders.la \ | |
262 | 35 $(TIMIDITY_LIB) $(MPGLIB_LIB) |
134 | 36 |
37 EXTRA_DIST = \ | |
143
3e60862fbd76
Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents:
134
diff
changeset
|
38 CREDITS \ |
184
47cc2de2ae36
Changed reference to "LICENSE" file to "COPYING".
Ryan C. Gordon <icculus@icculus.org>
parents:
143
diff
changeset
|
39 COPYING \ |
247
654f4f66b757
Added CWProjects.sit to EXTRA_DIST.
Ryan C. Gordon <icculus@icculus.org>
parents:
229
diff
changeset
|
40 CHANGELOG \ |
322 | 41 CWProject.sit \ |
355 | 42 PBProjects.tar.gz \ |
414
eb7878e07dba
Added borland.zip to EXTRA_DIST.
Ryan C. Gordon <icculus@icculus.org>
parents:
355
diff
changeset
|
43 borland.zip \ |
466 | 44 Doxyfile \ |
45 VisualC | |
355 | 46 |
47 dist-hook: | |
465
636796aed4e2
Build/packaging fixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
414
diff
changeset
|
48 mkdir $(distdir)/docs |
636796aed4e2
Build/packaging fixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
414
diff
changeset
|
49 echo "Docs are generated with the program "Doxygen" (http://www.doxygen.org/)," >> $(distdir)/docs/README |
636796aed4e2
Build/packaging fixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
414
diff
changeset
|
50 echo " or can be read online at http://icculus.org/SDL_sound/docs/" >> $(distdir)/docs/README |
636796aed4e2
Build/packaging fixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
414
diff
changeset
|
51 echo >> $(distdir)/docs/README |
537
4e85073841fe
"make dist" should clean out .svn dirs now, not CVS dirs.
Ryan C. Gordon <icculus@icculus.org>
parents:
466
diff
changeset
|
52 rm -rf `find $(distdir) -type d -name ".svn"` |
465
636796aed4e2
Build/packaging fixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
414
diff
changeset
|
53 |