annotate decoders/mpglib/Makefile.am @ 502:7a5ea0018285 stable-1.0

Fixed up timidity and mpglib Makefile.am files.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 06 Dec 2005 12:16:49 +0000
parents 7b1df7526915
children 7e08477b0fc1
rev   line source
502
7a5ea0018285 Fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents: 299
diff changeset
1 if USE_MPGLIB
261
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
2 noinst_LTLIBRARIES = libmpglib.la
502
7a5ea0018285 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)
266
7507d2c15281 Patched to respect SDL_sound build flags (fixes --enable-debug, etc).
Ryan C. Gordon <icculus@icculus.org>
parents: 261
diff changeset
6 libmpglib_la_CFLAGS = -DLAYER1 -DLAYER2 -DLAYER3
261
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
7
9b6e82f7c853 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
8 libmpglib_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
502
7a5ea0018285 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
7a5ea0018285 Fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents: 299
diff changeset
23