Mercurial > mplayer.hg
annotate libmpcodecs/Makefile @ 21272:045618c5a082
cosmetics: Move around some entries for better readability.
author | diego |
---|---|
date | Sun, 26 Nov 2006 22:11:07 +0000 |
parents | 02da705f907d |
children | 0457a106b273 |
rev | line source |
---|---|
4878 | 1 |
2 include ../config.mak | |
3 | |
4 LIBNAME = libmpcodecs.a | |
5550 | 5 LIBNAME2 = libmpencoders.a |
4878 | 6 |
17524
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
7 LIBS =$(LIBNAME) |
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
8 ifeq ($(MENCODER),yes) |
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
9 LIBS+=$(LIBNAME2) |
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
10 endif |
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
11 |
21272
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
12 SRCS = native/minilzo.c \ |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
13 native/nuppelvideo.c \ |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
14 native/RTjpegN.c \ |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
15 native/xa_gsm.c \ |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
16 img_format.c \ |
15772 | 17 |
21272
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
18 SRCS += dec_audio.c \ |
21271 | 19 ad.c \ |
20 ad_alaw.c \ | |
15772 | 21 ad_dk3adpcm.c \ |
22 ad_dvdpcm.c \ | |
21272
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
23 ad_hwac3.c \ |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
24 ad_hwmpa.c \ |
15772 | 25 ad_imaadpcm.c \ |
26 ad_msadpcm.c \ | |
27 ad_msgsm.c \ | |
28 ad_pcm.c \ | |
29 | |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
30 ifeq ($(CONFIG_LIBAVCODEC),yes) |
21271 | 31 SRCS+=ad_ffmpeg.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
32 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
33 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
21271 | 34 SRCS+=ad_ffmpeg.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
35 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
36 ifeq ($(WIN32DLL),yes) |
21271 | 37 SRCS+=ad_acm.c ad_dmo.c ad_dshow.c ad_twin.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
38 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
39 ifeq ($(QTX_CODECS),yes) |
21271 | 40 SRCS+=ad_qtaudio.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
41 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
42 ifeq ($(REAL_CODECS),yes) |
21271 | 43 SRCS+=ad_realaud.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
44 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
45 ifeq ($(FAAD),yes) |
21271 | 46 SRCS += ad_faad.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
47 endif |
21272
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
48 ifeq ($(LIBA52),yes) |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
49 SRCS+=ad_liba52.c |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
50 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
51 ifeq ($(LIBDV),yes) |
21271 | 52 SRCS+=ad_libdv.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
53 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
54 ifeq ($(LIBMAD),yes) |
21271 | 55 SRCS+=ad_libmad.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
56 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
57 ifeq ($(LIBVORBIS),yes) |
21271 | 58 SRCS+=ad_libvorbis.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
59 endif |
21272
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
60 ifeq ($(MP3LIB),yes) |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
61 SRCS+=ad_mp3lib.c |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
62 endif |
21270 | 63 ifeq ($(MUSEPACK),yes) |
21271 | 64 SRCS += ad_mpc.c |
21270 | 65 endif |
66 ifeq ($(SPEEX),yes) | |
21271 | 67 SRCS += ad_speex.c |
21270 | 68 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
69 |
21271 | 70 SRCS=dec_video.c \ |
71 vd.c \ | |
72 vd_hmblck.c \ | |
21272
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
73 vd_lzo.c \ |
15772 | 74 vd_mpegpes.c \ |
75 vd_mtga.c \ | |
76 vd_null.c \ | |
21272
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
77 vd_nuv.c \ |
15772 | 78 vd_raw.c \ |
79 vd_sgi.c \ | |
80 | |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
81 ifeq ($(CONFIG_LIBAVCODEC),yes) |
21271 | 82 SRCS+=vd_ffmpeg.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
83 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
84 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
21271 | 85 SRCS+=vd_ffmpeg.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
86 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
87 ifeq ($(WIN32DLL),yes) |
21271 | 88 SRCS+=vd_dmo.c vd_dshow.c vd_vfw.c vd_vfwex.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
89 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
90 ifeq ($(QTX_CODECS),yes) |
21271 | 91 SRCS+=vd_qtvideo.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
92 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
93 ifeq ($(REAL_CODECS),yes) |
21271 | 94 SRCS+=vd_realvid.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
95 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
96 ifeq ($(XANIM_CODECS),yes) |
21271 | 97 SRCS+=vd_xanim.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
98 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
99 ifeq ($(LIBDV),yes) |
21271 | 100 SRCS+=vd_libdv.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
101 endif |
21272
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
102 ifeq ($(LIBMPEG2),yes) |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
103 SRCS+=vd_libmpeg2.c |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
104 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
105 ifeq ($(LIBTHEORA),yes) |
21271 | 106 SRCS+=vd_theora.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
107 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
108 ifeq ($(XVID4),yes) |
21271 | 109 SRCS+=vd_xvid4.c |
20773 | 110 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
111 ifeq ($(ZORAN),yes) |
21271 | 112 SRCS+=vd_zrmjpeg.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
113 endif |
21270 | 114 ifeq ($(PNG),yes) |
21271 | 115 SRCS += vd_mpng.c |
21270 | 116 endif |
117 ifeq ($(JPEG),yes) | |
21271 | 118 SRCS += vd_ijpg.c |
21270 | 119 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
120 |
8024 | 121 |
21271 | 122 SRCS=vf.c \ |
15772 | 123 pullup.c \ |
124 vf_1bpp.c \ | |
125 vf_2xsai.c \ | |
19094 | 126 vf_blackframe.c \ |
15772 | 127 vf_bmovl.c \ |
128 vf_boxblur.c \ | |
129 vf_crop.c \ | |
130 vf_cropdetect.c \ | |
131 vf_decimate.c \ | |
132 vf_delogo.c \ | |
133 vf_denoise3d.c \ | |
134 vf_detc.c \ | |
135 vf_dint.c \ | |
136 vf_divtc.c \ | |
137 vf_down3dright.c \ | |
138 vf_dsize.c \ | |
139 vf_dvbscale.c \ | |
140 vf_eq2.c \ | |
141 vf_eq.c \ | |
142 vf_expand.c \ | |
143 vf_field.c \ | |
144 vf_fil.c \ | |
145 vf_filmdint.c \ | |
146 vf_flip.c \ | |
147 vf_format.c \ | |
148 vf_framestep.c \ | |
149 vf_halfpack.c \ | |
150 vf_harddup.c \ | |
151 vf_hqdn3d.c \ | |
152 vf_hue.c \ | |
153 vf_il.c \ | |
154 vf_ilpack.c \ | |
155 vf_ivtc.c \ | |
156 vf_kerndeint.c \ | |
157 vf_mirror.c \ | |
158 vf_noformat.c \ | |
159 vf_noise.c \ | |
160 vf_palette.c \ | |
161 vf_perspective.c \ | |
162 vf_phase.c \ | |
15944
1a0c715343d2
pp7 filter (spp=6 filter with 7 point dct where only the center sample is used after idct)
michael
parents:
15772
diff
changeset
|
163 vf_pp7.c \ |
15772 | 164 vf_pullup.c \ |
165 vf_rectangle.c \ | |
166 vf_remove_logo.c \ | |
167 vf_rgb2bgr.c \ | |
168 vf_rgbtest.c \ | |
169 vf_rotate.c \ | |
170 vf_sab.c \ | |
171 vf_scale.c \ | |
172 vf_smartblur.c \ | |
173 vf_softpulldown.c \ | |
174 vf_softskip.c \ | |
175 vf_swapuv.c \ | |
176 vf_telecine.c \ | |
177 vf_test.c \ | |
178 vf_tfields.c \ | |
179 vf_tile.c \ | |
180 vf_tinterlace.c \ | |
181 vf_unsharp.c \ | |
182 vf_vo.c \ | |
183 vf_yuvcsp.c \ | |
184 vf_yuy2.c \ | |
185 vf_yvu9.c \ | |
18608 | 186 vf_yadif.c \ |
15772 | 187 |
21271 | 188 LAVC_SRCS += vf_lavc.c \ |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
189 vf_lavcdeint.c \ |
17882
8dd9503e4d19
compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
nicodvb
parents:
17524
diff
changeset
|
190 |
21271 | 191 LAVC_DSPUTIL_SRCS += vf_uspp.c \ |
17882
8dd9503e4d19
compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
nicodvb
parents:
17524
diff
changeset
|
192 vf_fspp.c \ |
8dd9503e4d19
compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
nicodvb
parents:
17524
diff
changeset
|
193 vf_qp.c \ |
20266 | 194 vf_geq.c \ |
17882
8dd9503e4d19
compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
nicodvb
parents:
17524
diff
changeset
|
195 vf_spp.c \ |
18590 | 196 vf_mcdeint.c \ |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
197 |
17463 | 198 ifeq ($(CONFIG_LIBPOSTPROC),yes) |
21271 | 199 SRCS += vf_pp.c |
17463 | 200 endif |
201 ifeq ($(CONFIG_LIBPOSTPROC_SO),yes) | |
21271 | 202 SRCS += vf_pp.c |
11141 | 203 endif |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
204 ifeq ($(CONFIG_LIBAVCODEC),yes) |
21271 | 205 SRCS += $(LAVC_SRCS) |
206 SRCS += $(LAVC_DSPUTIL_SRCS) | |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
207 endif |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
208 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
21271 | 209 SRCS += $(LAVC_SRCS) |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
210 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
211 ifeq ($(PNG),yes) |
21271 | 212 SRCS += vf_screenshot.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
213 endif |
21270 | 214 ifeq ($(ZORAN),yes) |
21271 | 215 SRCS += vf_zrmjpeg.c |
21270 | 216 endif |
217 ifeq ($(CONFIG_ASS),yes) | |
21271 | 218 SRCS += vf_ass.c |
21270 | 219 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
220 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
221 |
15772 | 222 ENCODER_SRCS=ae.c \ |
223 ae_pcm.c \ | |
224 ve.c \ | |
225 ve_nuv.c \ | |
226 ve_raw.c \ | |
8024 | 227 |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
228 ifeq ($(CONFIG_LIBAVCODEC),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
229 ENCODER_SRCS+=ve_lavc.c |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
230 endif |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
231 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
232 ENCODER_SRCS+=ve_lavc.c |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
233 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
234 ifeq ($(WIN32DLL),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
235 ENCODER_SRCS+=ve_vfw.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
236 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
237 ifeq ($(QTX_CODECS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
238 ENCODER_SRCS+=ve_qtvideo.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
239 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
240 ifeq ($(LIBDV),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
241 ENCODER_SRCS+=ve_libdv.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
242 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
243 ifeq ($(XVID4),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
244 ENCODER_SRCS+=ve_xvid4.c |
20773 | 245 endif |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
246 ifeq ($(X264),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
247 ENCODER_SRCS+=ve_x264.c |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
248 endif |
13426 | 249 ifeq ($(TOOLAME),yes) |
15234 | 250 ENCODER_SRCS += ae_toolame.c |
13426 | 251 endif |
15359 | 252 ifeq ($(TWOLAME),yes) |
253 ENCODER_SRCS += ae_twolame.c | |
254 endif | |
21180
2f1d3f01a244
Rename CONFIG_MP3LAME variable, the variable for LAME support in FFmpeg
diego
parents:
21104
diff
changeset
|
255 ifeq ($(MP3LAME),yes) |
15234 | 256 ENCODER_SRCS += ae_lame.c |
257 endif | |
21270 | 258 ifeq ($(FAAC),yes) |
259 ENCODER_SRCS += ae_faac.c | |
260 endif | |
261 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) | |
262 ENCODER_SRCS += ae_lavc.c | |
263 endif | |
264 ifeq ($(CONFIG_LIBAVCODEC),yes) | |
265 ENCODER_SRCS += ae_lavc.c | |
266 endif | |
15234 | 267 |
16165 | 268 ifeq ($(CONFIG_LIBAVUTIL),yes) |
269 LIBAV_INC += -I../libavutil | |
270 endif | |
15234 | 271 ifeq ($(CONFIG_LIBAVCODEC),yes) |
16165 | 272 LIBAV_INC += -I../libavcodec |
15958
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15944
diff
changeset
|
273 endif |
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15944
diff
changeset
|
274 |
16915
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16521
diff
changeset
|
275 |
4878 | 276 OBJS=$(SRCS:.c=.o) |
277 | |
5550 | 278 SRCS2=$(ENCODER_SRCS) |
279 OBJS2=$(SRCS2:.c=.o) | |
280 | |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21228
diff
changeset
|
281 CFLAGS = -I.. \ |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
282 -Inative \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
283 -I../libmpdemux \ |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
19190
diff
changeset
|
284 -I../stream \ |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
285 -I../loader \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
286 $(LIBAV_INC) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
287 -D_GNU_SOURCE \ |
4878 | 288 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21228
diff
changeset
|
289 include ../mpcommon.mak |
4878 | 290 |
17524
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
291 all: $(LIBS) |
5550 | 292 |
21228 | 293 $(LIBNAME2): $(OBJS2) |
294 $(AR) r $@ $^ | |
295 $(RANLIB) $@ | |
4878 | 296 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21228
diff
changeset
|
297 clean:: |
14138
40ac42c6dd6d
make clean should also clean the native subdirectory.
diego
parents:
13426
diff
changeset
|
298 rm -f native/*.o native/*.a native/*~ |
4878 | 299 |