Mercurial > SDL_sound_CoreAudio
annotate decoders/mpglib/Makefile.am @ 419:25a8f66112fd
Updated.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 26 Sep 2002 04:34:25 +0000 |
parents | 7b1df7526915 |
children | 7a5ea0018285 |
rev | line source |
---|---|
261 | 1 noinst_LTLIBRARIES = libmpglib.la |
2 | |
3 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
|
4 libmpglib_la_CFLAGS = -DLAYER1 -DLAYER2 -DLAYER3 |
261 | 5 |
6 if USE_MPGLIB | |
7 libmpglib_la_SOURCES = \ | |
299
7b1df7526915
Patches for Visual C compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
266
diff
changeset
|
8 mpglib_common.c \ |
261 | 9 huffman.h \ |
10 layer1.c \ | |
11 tabinit.c \ | |
12 dct64_i386.c \ | |
13 interface.c \ | |
14 layer2.c \ | |
15 mpg123_sdlsound.h \ | |
16 decode_i386.c \ | |
17 l2tables.h \ | |
18 layer3.c \ | |
19 mpglib_sdlsound.h | |
20 else | |
21 libmpglib_la_SOURCES = | |
22 endif | |
23 | |
24 #EXTRA_DIST = FAQ README CHANGES TODO |