summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/libmad/Makefile.in
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/libmad/Makefile.in') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/libmad/Makefile.in226
1 files changed, 226 insertions, 0 deletions
diff --git a/core/multimedia/opieplayer/libmad/Makefile.in b/core/multimedia/opieplayer/libmad/Makefile.in
new file mode 100644
index 0000000..9e17769
--- a/dev/null
+++ b/core/multimedia/opieplayer/libmad/Makefile.in
@@ -0,0 +1,226 @@
1#############################################################################
2
3####### Compiler, tools and options
4
5 CXX =$(SYSCONF_CXX) $(QT_CXX_MT)
6 CXXFLAGS=$(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) $(SYSCONF_CXXFLAGS_LIB) -DQCONFIG=\"qpe\"
7 CC =$(SYSCONF_CC) $(QT_C_MT)
8 CFLAGS =$(SYSCONF_CFLAGS) $(SYSCONF_CFLAGS_LIB) -DQCONFIG=\"qpe\"
9 INCPATH =-I$(QPEDIR)/include -I..
10 LFLAGS =$(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT)
11 LIBS =$(SUBLIBS) -lqpe -lm $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS_QTAPP)
12 MOC =$(SYSCONF_MOC)
13 UIC =$(SYSCONF_UIC)
14
15####### Target
16
17DESTDIR = ../../plugins/codecs/
18VER_MAJ = 1
19VER_MIN = 0
20VER_PATCH = 0
21 TARGET= madplugin
22TARGET1 = lib$(TARGET).so.$(VER_MAJ)
23
24####### Files
25
26 HEADERS =libmad_version.h \
27 fixed.h \
28 bit.h \
29 timer.h \
30 stream.h \
31 frame.h \
32 synth.h \
33 decoder.h \
34 layer12.h \
35 layer3.h \
36 huffman.h \
37 libmad_global.h \
38 mad.h \
39 libmadplugin.h \
40 libmadpluginimpl.h
41 SOURCES =version.c \
42 fixed.c \
43 bit.c \
44 timer.c \
45 stream.c \
46 frame.c \
47 synth.c \
48 decoder.c \
49 layer12.c \
50 layer3.c \
51 huffman.c \
52 libmadplugin.cpp \
53 libmadpluginimpl.cpp
54 OBJECTS =version.o \
55 fixed.o \
56 bit.o \
57 timer.o \
58 stream.o \
59 frame.o \
60 synth.o \
61 decoder.o \
62 layer12.o \
63 layer3.o \
64 huffman.o \
65 libmadplugin.o \
66 libmadpluginimpl.o
67INTERFACES =
68UICDECLS =
69UICIMPLS =
70 SRCMOC =
71 OBJMOC =
72
73
74####### Implicit rules
75
76.SUFFIXES: .cpp .cxx .cc .C .c
77
78.cpp.o:
79 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
80
81.cxx.o:
82 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
83
84.cc.o:
85 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
86
87.C.o:
88 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
89
90.c.o:
91 $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
92
93####### Build rules
94
95
96all: $(DESTDIR)$(SYSCONF_LINK_TARGET)
97
98$(DESTDIR)$(SYSCONF_LINK_TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS)
99 $(SYSCONF_LINK_LIB)
100
101moc: $(SRCMOC)
102
103tmake:
104 tmake libmad.pro
105
106clean:
107 -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS)
108 -rm -f *~ core
109 -rm -f allmoc.cpp
110
111####### Extension Modules
112
113listpromodules:
114 @echo
115
116listallmodules:
117 @echo
118
119listaddonpromodules:
120 @echo
121
122listaddonentmodules:
123 @echo
124
125
126REQUIRES=
127
128####### Sub-libraries
129
130
131###### Combined headers
132
133
134
135####### Compile
136
137version.o: version.c \
138 libmad_global.h \
139 libmad_version.h
140
141fixed.o: fixed.c \
142 libmad_global.h \
143 fixed.h
144
145bit.o: bit.c \
146 libmad_global.h \
147 bit.h
148
149timer.o: timer.c \
150 libmad_global.h \
151 timer.h
152
153stream.o: stream.c \
154 libmad_global.h \
155 bit.h \
156 stream.h
157
158frame.o: frame.c \
159 libmad_global.h \
160 bit.h \
161 stream.h \
162 frame.h \
163 fixed.h \
164 timer.h \
165 layer12.h \
166 layer3.h
167
168synth.o: synth.c \
169 libmad_global.h \
170 fixed.h \
171 frame.h \
172 timer.h \
173 stream.h \
174 bit.h \
175 synth.h \
176 D.dat
177
178decoder.o: decoder.c \
179 libmad_global.h \
180 stream.h \
181 bit.h \
182 frame.h \
183 fixed.h \
184 timer.h \
185 synth.h \
186 decoder.h
187
188layer12.o: layer12.c \
189 libmad_global.h \
190 fixed.h \
191 bit.h \
192 stream.h \
193 frame.h \
194 timer.h \
195 layer12.h \
196 sf_table.dat \
197 qc_table.dat
198
199layer3.o: layer3.c \
200 libmad_global.h \
201 fixed.h \
202 bit.h \
203 stream.h \
204 frame.h \
205 timer.h \
206 huffman.h \
207 layer3.h \
208 rq_table.dat \
209 imdct_s.dat
210
211huffman.o: huffman.c \
212 libmad_global.h \
213 huffman.h
214
215libmadplugin.o: libmadplugin.cpp \
216 libmadplugin.h \
217 ../mediaplayerplugininterface.h \
218 mad.h
219
220libmadpluginimpl.o: libmadpluginimpl.cpp \
221 libmadplugin.h \
222 ../mediaplayerplugininterface.h \
223 libmadpluginimpl.h \
224 ../mediaplayerplugininterface.h
225
226