Mercurial > SDL_sound_CoreAudio
annotate Makefile.am @ 196:9d436dbb1666
Sync version number to that of libSDL_sound.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Fri, 04 Jan 2002 06:26:32 +0000 |
parents | 47cc2de2ae36 |
children | 56bc776f0563 |
rev | line source |
---|---|
72 | 1 lib_LTLIBRARIES = libSDL_sound.la |
2 | |
3 SUBDIRS = decoders test | |
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 |
16 libSDL_sound_la_LDFLAGS = \ | |
17 -release $(LT_RELEASE) \ | |
18 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) | |
19 libSDL_sound_la_LIBADD = decoders/libdecoders.la | |
134 | 20 |
21 | |
22 EXTRA_DIST = \ | |
143
3e60862fbd76
Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents:
134
diff
changeset
|
23 CREDITS \ |
184
47cc2de2ae36
Changed reference to "LICENSE" file to "COPYING".
Ryan C. Gordon <icculus@icculus.org>
parents:
143
diff
changeset
|
24 COPYING \ |
143
3e60862fbd76
Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents:
134
diff
changeset
|
25 CHANGELOG |
3e60862fbd76
Start of audio converter work.
Ryan C. Gordon <icculus@icculus.org>
parents:
134
diff
changeset
|
26 |