annotate decoders/mpglib/Makefile.am @ 563:11bb8cb8ebc8

I think we can call playsound a 1.0 release by now. :)
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 30 Jan 2009 02:45:38 -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
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
4
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
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
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
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
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
10 huffman.h \
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
11 layer1.c \
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
12 tabinit.c \
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
13 dct64_i386.c \
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
14 interface.c \
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
15 layer2.c \
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
16 mpg123_sdlsound.h \
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
17 decode_i386.c \
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
18 l2tables.h \
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
19 layer3.c \
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
20 mpglib_sdlsound.h
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
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