Mercurial > SDL_sound_CoreAudio
comparison Makefile.am @ 465:636796aed4e2
Build/packaging fixes.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sun, 12 Oct 2003 19:06:44 +0000 |
parents | eb7878e07dba |
children | 75819e5c59d4 |
comparison
equal
deleted
inserted
replaced
464:182533748715 | 465:636796aed4e2 |
---|---|
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 | |
15 libSDL_sound_la_SOURCES = \ | 9 libSDL_sound_la_SOURCES = \ |
16 SDL_sound.c \ | 10 SDL_sound.c \ |
17 SDL_sound_internal.h \ | 11 SDL_sound_internal.h \ |
18 $(CVT_SOURCE) \ | 12 alt_audio_convert.c \ |
13 alt_audio_convert.h \ | |
14 audio_convert.c \ | |
19 extra_rwops.c \ | 15 extra_rwops.c \ |
20 extra_rwops.h | 16 extra_rwops.h |
21 | 17 |
22 if USE_TIMIDITY | 18 if USE_TIMIDITY |
23 TIMIDITY_LIB = decoders/timidity/libtimidity.la | 19 TIMIDITY_LIB = decoders/timidity/libtimidity.la |
43 COPYING \ | 39 COPYING \ |
44 CHANGELOG \ | 40 CHANGELOG \ |
45 CWProject.sit \ | 41 CWProject.sit \ |
46 PBProjects.tar.gz \ | 42 PBProjects.tar.gz \ |
47 borland.zip \ | 43 borland.zip \ |
48 Doxyfile \ | 44 Doxyfile |
49 docs | |
50 | 45 |
51 dist-hook: | 46 dist-hook: |
52 rm -rf `find $(distdir)/docs -name CVS` | 47 mkdir $(distdir)/docs |
48 echo "Docs are generated with the program "Doxygen" (http://www.doxygen.org/)," >> $(distdir)/docs/README | |
49 echo " or can be read online at http://icculus.org/SDL_sound/docs/" >> $(distdir)/docs/README | |
50 echo >> $(distdir)/docs/README | |
51 rm -rf `find $(distdir) -name "CVS" -type d` | |
52 |