Mercurial > SDL_sound_CoreAudio
annotate decoders/mpglib/Makefile.am @ 566:74405e7be04b
Moved SNDDBG output a little later.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Fri, 30 Jan 2009 19:54:58 -0500 |
parents | 7e08477b0fc1 |
children |
rev | line source |
---|---|
562
7e08477b0fc1
MP3 decoder upgrade work.
Ryan C. Gordon <icculus@icculus.org>
parents:
503
diff
changeset
|
1 if USE_LIBMPG123 |
7e08477b0fc1
MP3 decoder upgrade work.
Ryan C. Gordon <icculus@icculus.org>
parents:
503
diff
changeset
|
2 noinst_LTLIBRARIES = libmpg123.la |
503
a0297d442b6a
From stable branch: fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents:
299
diff
changeset
|
3 endif |
261 | 4 |
5 INCLUDES = -I$(top_srcdir) | |
562
7e08477b0fc1
MP3 decoder upgrade work.
Ryan C. Gordon <icculus@icculus.org>
parents:
503
diff
changeset
|
6 libmpg123_la_CFLAGS = -DLAYER1 -DLAYER2 -DLAYER3 |
261 | 7 |
562
7e08477b0fc1
MP3 decoder upgrade work.
Ryan C. Gordon <icculus@icculus.org>
parents:
503
diff
changeset
|
8 libmpg123_la_SOURCES = \ |
299
7b1df7526915
Patches for Visual C compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
266
diff
changeset
|
9 mpglib_common.c \ |
261 | 10 huffman.h \ |
11 layer1.c \ | |
12 tabinit.c \ | |
13 dct64_i386.c \ | |
14 interface.c \ | |
15 layer2.c \ | |
16 mpg123_sdlsound.h \ | |
17 decode_i386.c \ | |
18 l2tables.h \ | |
19 layer3.c \ | |
20 mpglib_sdlsound.h | |
21 | |
503
a0297d442b6a
From stable branch: fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents:
299
diff
changeset
|
22 EXTRA_DIST = CHANGES README README-sdlsound TODO main.c |
a0297d442b6a
From stable branch: fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents:
299
diff
changeset
|
23 |