aboutsummaryrefslogtreecommitdiff
path: root/src/libmpg123/Makefile.am
blob: 483f5680fbb0e8116c41a5460a6f226aa9512a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
## Makefile.am: produce Makefile.in from this

## copyright by the mpg123 project - free software under the terms of the LGPL 2.1
## see COPYING and AUTHORS files in distribution or http://mpg123.org
## initially written by Nicholas J. Humfrey

#AM_CFLAGS = @AUDIO_CFLAGS@
#AM_LDFLAGS = 
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/libmpg123

EXTRA_DIST = mpg123.h.in dnoise.sh dnoise.dat

EXTRA_PROGRAMS = testcpu
testcpu_dependencies = getcpuflags.$(OBJEXT)
testcpu_sources = testcpu.c
testcpu_LDADD = getcpuflags.$(OBJEXT)


CLEANFILES = *.a


#lib_LIBRARIES = libmpg123.a
lib_LTLIBRARIES = libmpgdec.la
nodist_include_HEADERS = mpg123.h

#libmpg123_a_LIBADD = @DECODER_OBJ@
#libmpg123_a_DEPENDENCIES = @DECODER_OBJ@

libmpg123_la_LDFLAGS = -no-undefined -version-info @LIBMPG123_VERSION@ -export-symbols libmpg123.sym
libmpg123_la_LIBADD = @DECODER_LOBJ@
libmpg123_la_DEPENDENCIES = @DECODER_LOBJ@ libmpg123.sym

libmpg123_la_SOURCES = \
	compat.c \
	compat.h \
	parse.c \
	parse.h \
	frame.c \
	format.c \
	frame.h \
	reader.h \
	debug.h \
	decode.h \
	sample.h \
	dct64.c \
	synth.h \
	synth_mono.h \
	synth_ntom.h \
	synth_8bit.h \
	synths.h \
	equalizer.c \
	huffman.h \
	icy.h \
	icy2utf8.h \
	id3.h \
	id3.c \
	true.h \
	getbits.h \
	optimize.h \
	optimize.c \
	readers.c \
	tabinit.c \
	libmpg123.c \
	mpg123lib_intern.h \
	mangle.h \
	getcpuflags.h \
	index.h \
	index.c \
	libmpg123.sym

EXTRA_libmpg123_la_SOURCES = \
	icy.c \
	icy2utf8.c \
	l2tables.h \
	layer1.c \
	layer2.c \
	layer3.c \
	dct36_3dnowext.S \
	dct36_3dnow.S \
	dct64_3dnowext.S \
	dct64_3dnow.S \
	dct64_altivec.c \
	dct64_i386.c \
	dct64_i486.c \
	dct64_mmx.S \
	dct64_sse.S \
	dct64_sse_float.S \
	dct64_x86_64.S \
	dct64_x86_64_float.S \
	synth_3dnowext.S \
	synth_3dnow.S \
	synth_altivec.c \
	synth_i486.c \
	synth_i586_dither.S \
	synth_i586.S \
	synth_mmx.S \
	synth_sse3d.h \
	synth_sse.S \
	synth_sse_float.S \
	synth_sse_s32.S \
	synth_sse_accurate.S \
	synth_stereo_sse_float.S \
	synth_stereo_sse_s32.S \
	synth_stereo_sse_accurate.S \
	synth_x86_64.S \
	synth_x86_64_float.S \
	synth_x86_64_s32.S \
	synth_x86_64_accurate.S \
	synth_stereo_x86_64.S \
	synth_stereo_x86_64_float.S \
	synth_stereo_x86_64_s32.S \
	synth_stereo_x86_64_accurate.S \
	ntom.c \
	synth.c \
	synth_8bit.c \
	synth_real.c \
	synth_s32.c \
	equalizer_3dnow.S \
	tabinit_mmx.S \
	stringbuf.c \
	getcpuflags.S

dnoise.c: dnoise.dat dnoise.sh
	sh "$(top_srcdir)/src/libmpg123/dnoise.sh" "$<" > "$@"