~ubuntu-branches/ubuntu/lucid/mpg123/lucid

« back to all changes in this revision

Viewing changes to src/Makefile.am

Tags: upstream-0.60
ImportĀ upstreamĀ versionĀ 0.60

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Makefile.am: produce Makefile.in from this
 
2
 
 
3
## copyright by the mpg123 project - free software under the terms of the LGPL 2.1
 
4
## see COPYING and AUTHORS files in distribution or http://mpg123.de
 
5
## initially written by Nicholas J. Humfrey
 
6
 
 
7
AM_CFLAGS = @AUDIO_CFLAGS@
 
8
AM_LDFLAGS = @AUDIO_LIBS@
 
9
mpg123_LDADD = @AUDIO_OBJ@ @CPU_TYPE_LIB@
 
10
mpg123_DEPENDENCIES = @AUDIO_OBJ@ @CPU_TYPE_LIB@
 
11
 
 
12
EXTRA_DIST = Makefile.legacy
 
13
 
 
14
 
 
15
bin_PROGRAMS = mpg123
 
16
mpg123_SOURCES = \
 
17
        audio.c \
 
18
        audio.h \
 
19
        buffer.c \
 
20
        buffer.h \
 
21
        common.c \
 
22
        common.h \
 
23
        control_generic.c \
 
24
        debug.h \
 
25
        decode_2to1.c \
 
26
        decode_4to1.c \
 
27
        decode_ntom.c \
 
28
        equalizer.c \
 
29
        getbits.c \
 
30
        getbits.h \
 
31
        getlopt.c \
 
32
        getlopt.h \
 
33
        httpget.c \
 
34
        huffman.h \
 
35
        id3.c \
 
36
        id3.h \
 
37
        genre.h \
 
38
        l2tables.h \
 
39
        layer1.c \
 
40
        layer2.c \
 
41
        layer3.c \
 
42
        layer3.h \
 
43
        mpg123.c \
 
44
        mpg123.h \
 
45
        playlist.c \
 
46
        playlist.h \
 
47
        readers.c \
 
48
        tabinit.c \
 
49
        sfifo.c \
 
50
        sfifo.h \
 
51
        stringbuf.c \
 
52
        stringbuf.h \
 
53
        term.c \
 
54
        term.h \
 
55
        wav.c \
 
56
        xfermem.c \
 
57
        xfermem.h
 
58
 
 
59
EXTRA_mpg123_SOURCES = \
 
60
        audio_aix.c \
 
61
        audio_alib.c \
 
62
        audio_alsa.c \
 
63
        audio_dummy.c \
 
64
        audio_esd.c \
 
65
        audio_hp.c \
 
66
        audio_jack.c \
 
67
        audio_macosx.c \
 
68
        audio_mint.c \
 
69
        audio_nas.c \
 
70
        audio_os2.c \
 
71
        audio_oss.c \
 
72
        audio_portaudio.c \
 
73
        audio_sdl.c \
 
74
        audio_sgi.c \
 
75
        audio_sun.c \
 
76
        audio_win32.c
 
77
 
 
78
 
 
79
 
 
80
# Processor dependent decoder code
 
81
EXTRA_LIBRARIES = \
 
82
        libcpu_generic.a \
 
83
        libcpu_generic_fpu.a \
 
84
        libcpu_generic_nofpu.a \
 
85
        libcpu_altivec.a \
 
86
        libcpu_i386.a \
 
87
        libcpu_i386_fpu.a \
 
88
        libcpu_i386_nofpu.a \
 
89
        libcpu_i486.a \
 
90
        libcpu_i586.a \
 
91
        libcpu_i586_dither.a \
 
92
        libcpu_3dnow.a \
 
93
        libcpu_mmx.a
 
94
 
 
95
libcpu_generic_a_SOURCES = \
 
96
        decode.c \
 
97
        dct64.c
 
98
 
 
99
libcpu_generic_fpu_a_SOURCES = \
 
100
        decode.c \
 
101
        dct64.c
 
102
 
 
103
libcpu_generic_nofpu_a_SOURCES = \
 
104
        decode.c \
 
105
        dct64.c
 
106
 
 
107
libcpu_altivec_a_SOURCES = \
 
108
        decode.c \
 
109
        dct64_altivec.c
 
110
 
 
111
libcpu_i386_a_SOURCES = \
 
112
        decode_i386.c \
 
113
        dct64_i386.c
 
114
 
 
115
libcpu_i386_fpu_a_SOURCES = \
 
116
        decode_i386.c \
 
117
        dct64_i386.c
 
118
 
 
119
libcpu_i386_nofpu_a_SOURCES = \
 
120
        decode_i386.c \
 
121
        dct64_i386.c
 
122
 
 
123
libcpu_i486_a_SOURCES = \
 
124
        decode_i386.c \
 
125
        dct64_i386.c \
 
126
        decode_i486.c \
 
127
        dct64_i486.c
 
128
 
 
129
libcpu_i586_a_SOURCES = \
 
130
        decode_i386.c \
 
131
        dct64_i386.c \
 
132
        decode_i586.s
 
133
 
 
134
libcpu_i586_dither_a_SOURCES = \
 
135
        decode_i386.c \
 
136
        dct64_i386.c \
 
137
        decode_i586_dither.s
 
138
 
 
139
libcpu_3dnow_a_SOURCES = \
 
140
        decode_i386.c \
 
141
        decode_3dnow.s \
 
142
        decode_i586.s \
 
143
        dct64_i386.c \
 
144
        dct64_3dnow.s \
 
145
        dct36_3dnow.s \
 
146
        equalizer_3dnow.s \
 
147
        getcpuflags.s
 
148
 
 
149
libcpu_mmx_a_SOURCES = \
 
150
        decode_i386.c \
 
151
        dct64_mmx.s \
 
152
        tabinit_mmx.s \
 
153
        decode_mmx.s
 
154