562
|
1 if USE_LIBMPG123
|
|
2 noinst_LTLIBRARIES = libmpg123.la
|
|
3 endif
|
|
4
|
|
5 # !!! FIXME: get MMX/SSE/Altivec/etc stuff in here.
|
|
6
|
|
7 INCLUDES = -I$(top_srcdir)/decodes/libmpg123
|
|
8 libmpg123_la_CFLAGS = -DOPT_GENERIC -DREAL_IS_FLOAT -DMPG123_NO_CONFIGURE
|
|
9
|
|
10 libmpg123_la_SOURCES = \
|
|
11 compat.c \
|
|
12 compat.h \
|
|
13 parse.c \
|
|
14 parse.h \
|
|
15 frame.c \
|
|
16 format.c \
|
|
17 frame.h \
|
|
18 reader.h \
|
|
19 debug.h \
|
|
20 decode.h \
|
|
21 decode_2to1.c \
|
|
22 decode_4to1.c \
|
|
23 decode_ntom.c \
|
|
24 equalizer.c \
|
|
25 huffman.h \
|
|
26 icy.c \
|
|
27 icy.h \
|
|
28 icy2utf8.c \
|
|
29 icy2utf8.h \
|
|
30 id3.c \
|
|
31 id3.h \
|
|
32 true.h \
|
|
33 l2tables.h \
|
|
34 layer1.c \
|
|
35 layer2.c \
|
|
36 layer3.c \
|
|
37 getbits.h \
|
|
38 optimize.h \
|
|
39 optimize.c \
|
|
40 readers.c \
|
|
41 tabinit.c \
|
|
42 stringbuf.c \
|
|
43 libmpg123.c \
|
|
44 mpg123lib_intern.h \
|
|
45 mangle.h \
|
|
46 getcpuflags.h \
|
|
47 index.h \
|
|
48 index.c \
|
|
49 mpg123.h \
|
|
50 config.h \
|
|
51 dct64.c \
|
|
52 decode.c \
|
|
53 libmpg123.sym
|
|
54
|
|
55 EXTRA_libmpg123_la_SOURCES = \
|
|
56 dct36_3dnowext.S \
|
|
57 dct36_3dnow.S \
|
|
58 dct64_3dnowext.S \
|
|
59 dct64_3dnow.S \
|
|
60 dct64_altivec.c \
|
|
61 dct64_i386.c \
|
|
62 dct64_i486.c \
|
|
63 dct64_mmx.S \
|
|
64 dct64_sse.S \
|
|
65 decode_3dnowext.S \
|
|
66 decode_3dnow.S \
|
|
67 decode_altivec.c \
|
|
68 decode_i386.c \
|
|
69 decode_i486.c \
|
|
70 decode_i586_dither.S \
|
|
71 decode_i586.S \
|
|
72 decode_mmx.S \
|
|
73 decode_sse3d.h \
|
|
74 decode_sse.S \
|
|
75 equalizer_3dnow.S \
|
|
76 tabinit_mmx.S \
|
|
77 getcpuflags.S
|
|
78
|
|
79 EXTRA_DIST = mpg123.h.in dnoise.sh dnoise.dat testcpu.c README-sdlsound.txt
|
|
80
|