Mercurial > libavcodec.hg
annotate Makefile @ 2788:1bf080e490db libavcodec
fix segfault (bug #1165640)
| author | michael |
|---|---|
| date | Mon, 11 Jul 2005 22:56:23 +0000 |
| parents | 07a63c88e3a7 |
| children | 95c35706acbb |
| rev | line source |
|---|---|
| 395 | 1 # |
| 2 # libavcodec Makefile | |
|
2542
a27a580f292e
first pass at ALAC decoder from David Hammerton; while David's original
melanson
parents:
2541
diff
changeset
|
3 # (c) 2000-2005 Fabrice Bellard |
| 395 | 4 # |
| 2 | 5 include ../config.mak |
| 6 | |
| 395 | 7 VPATH=$(SRC_PATH)/libavcodec |
| 8 | |
| 429 | 9 # NOTE: -I.. is needed to include config.h |
|
2541
29263fb4d80b
Support for AMR Interface Format 2 patch by ("Torsten Martinsen" <tma gatehouse dk>)
michael
parents:
2530
diff
changeset
|
10 CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE $(AMR_CFLAGS) |
| 0 | 11 |
|
2398
582e635cfa08
common.c -> bitstream.c (and the single non bitstream func -> utils.c)
michael
parents:
2362
diff
changeset
|
12 OBJS= bitstream.o utils.o mem.o allcodecs.o \ |
| 1042 | 13 mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\ |
| 2085 | 14 mpegaudio.o ac3enc.o mjpeg.o resample.o resample2.o dsputil.o \ |
| 1042 | 15 motion_est.o imgconvert.o imgresample.o \ |
| 1383 | 16 mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \ |
| 2639 | 17 ratecontrol.o adpcm.o eval.o error_resilience.o \ |
| 18 fft.o mdct.o raw.o golomb.o cabac.o\ | |
| 19 dpcm.o adx.o rational.o faandct.o parser.o g726.o \ | |
| 2756 | 20 vp3dsp.o integer.o h264idct.o rangecoder.o pnm.o h263.o msmpeg4.o h263dec.o dvdsub.o dvbsub.o |
| 21 | |
| 2639 | 22 ifeq ($(CONFIG_AASC_DECODER),yes) |
| 23 OBJS+= aasc.o | |
| 24 endif | |
| 25 ifeq ($(CONFIG_ALAC_DECODER),yes) | |
| 26 OBJS+= alac.o | |
| 27 endif | |
| 28 ifneq ($(CONFIG_ASV1_DECODER)$(CONFIG_ASV1_ENCODER)$(CONFIG_ASV2_DECODER)$(CONFIG_ASV2_ENCODER),) | |
| 29 OBJS+= asv1.o | |
| 30 endif | |
| 31 ifeq ($(CONFIG_CINEPAK_DECODER),yes) | |
| 32 OBJS+= cinepak.o | |
| 33 endif | |
| 34 ifneq ($(CONFIG_CLJR_DECODER)$(CONFIG_CLJR_ENCODER),) | |
| 35 OBJS+= cljr.o | |
| 36 endif | |
| 37 ifeq ($(CONFIG_CYUV_DECODER),yes) | |
| 38 OBJS+= cyuv.o | |
| 39 endif | |
| 40 ifneq ($(CONFIG_DVVIDEO_DECODER)$(CONFIG_DVVIDEO_ENCODER),) | |
| 41 OBJS+= dv.o | |
| 42 endif | |
| 43 ifeq ($(CONFIG_EIGHTBPS_DECODER),yes) | |
| 44 OBJS+= 8bps.o | |
| 45 endif | |
| 46 ifneq ($(CONFIG_FFV1_DECODER)$(CONFIG_FFV1_ENCODER),) | |
| 47 OBJS+= ffv1.o | |
| 48 endif | |
| 49 ifeq ($(CONFIG_FLAC_DECODER),yes) | |
| 50 OBJS+= flac.o | |
| 51 endif | |
| 52 ifeq ($(CONFIG_FLIC_DECODER),yes) | |
| 53 OBJS+= flicvideo.o | |
| 54 endif | |
| 55 ifeq ($(CONFIG_FOURXM_DECODER),yes) | |
| 56 OBJS+= 4xm.o | |
| 57 endif | |
|
2700
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
58 ifeq ($(CONFIG_FRAPS_DECODER),yes) |
|
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
59 OBJS+= fraps.o |
|
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
60 endif |
| 2639 | 61 ifneq ($(CONFIG_H261_DECODER)$(CONFIG_H261_ENCODER),) |
| 62 OBJS+= h261.o | |
| 63 endif | |
| 64 ifneq ($(CONFIG_H264_DECODER)$(CONFIG_SVQ3_DECODER),) | |
| 65 OBJS+= h264.o | |
| 66 endif | |
| 67 ifneq ($(CONFIG_HUFFYUV_DECODER)$(CONFIG_HUFFYUV_ENCODER)$(CONFIG_FFVHUFF_DECODER)$(CONFIG_FFVHUFF_ENCODER),) | |
| 68 OBJS+= huffyuv.o | |
| 69 endif | |
| 70 ifeq ($(CONFIG_IDCIN_DECODER),yes) | |
| 71 OBJS+= idcinvideo.o | |
| 72 endif | |
| 73 ifeq ($(CONFIG_INDEO2_DECODER),yes) | |
| 74 OBJS+= indeo2.o | |
| 75 endif | |
| 76 ifeq ($(CONFIG_INDEO3_DECODER),yes) | |
| 77 OBJS+= indeo3.o | |
| 78 endif | |
| 79 ifeq ($(CONFIG_INTERPLAY_VIDEO_DECODER),yes) | |
| 80 OBJS+= interplayvideo.o | |
| 81 endif | |
| 82 ifneq ($(CONFIG_MSZH_DECODER)$(CONFIG_ZLIB_DECODER)$(CONFIG_ZLIB_ENCODER),) | |
| 83 OBJS+= lcl.o | |
| 84 endif | |
| 85 ifeq ($(CONFIG_LOCO_DECODER),yes) | |
| 86 OBJS+= loco.o | |
| 87 endif | |
| 88 ifneq ($(CONFIG_MACE3_DECODER)$(CONFIG_MACE6_DECODER),) | |
| 89 OBJS+= mace.o | |
| 90 endif | |
| 91 ifeq ($(CONFIG_MSRLE_DECODER),yes) | |
| 92 OBJS+= msrle.o | |
| 93 endif | |
| 94 ifeq ($(CONFIG_MSVIDEO1_DECODER),yes) | |
| 95 OBJS+= msvideo1.o | |
| 96 endif | |
| 97 ifneq ($(CONFIG_PNG_DECODER)$(CONFIG_PNG_ENCODER),) | |
| 98 OBJS+= png.o | |
| 99 endif | |
| 100 ifeq ($(CONFIG_QDRAW_DECODER),yes) | |
| 101 OBJS+= qdrw.o | |
| 102 endif | |
| 103 ifeq ($(CONFIG_QPEG_DECODER),yes) | |
| 104 OBJS+= qpeg.o | |
| 105 endif | |
| 106 ifeq ($(CONFIG_QTRLE_DECODER),yes) | |
| 107 OBJS+= qtrle.o | |
| 108 endif | |
| 109 ifeq ($(CONFIG_RA_144_DECODER),yes) | |
| 110 OBJS+= ra144.o | |
| 111 endif | |
| 112 ifeq ($(CONFIG_RA_288_DECODER),yes) | |
| 113 OBJS+= ra288.o | |
| 114 endif | |
| 115 ifeq ($(CONFIG_ROQ_DECODER),yes) | |
| 116 OBJS+= roqvideo.o | |
| 117 endif | |
| 118 ifeq ($(CONFIG_RPZA_DECODER),yes) | |
| 119 OBJS+= rpza.o | |
| 120 endif | |
| 121 ifneq ($(CONFIG_RV10_DECODER)$(CONFIG_RV20_DECODER)$(CONFIG_RV10_ENCODER)$(CONFIG_RV20_ENCODER),) | |
| 122 OBJS+= rv10.o | |
| 123 endif | |
| 124 ifeq ($(CONFIG_SHORTEN_DECODER),yes) | |
| 125 OBJS+= shorten.o | |
| 126 endif | |
| 127 ifeq ($(CONFIG_SMC_DECODER),yes) | |
| 128 OBJS+= smc.o | |
| 129 endif | |
| 2662 | 130 ifneq ($(CONFIG_SNOW_DECODER)$(CONFIG_SNOW_ENCODER),) |
| 2639 | 131 OBJS+= snow.o |
| 132 endif | |
| 133 ifneq ($(CONFIG_SONIC_DECODER)$(CONFIG_SONIC_ENCODER)$(CONFIG_SONIC_LS_ENCODER),) | |
| 134 OBJS+= sonic.o | |
| 135 endif | |
| 136 ifneq ($(CONFIG_SVQ1_DECODER)$(CONFIG_SVQ1_ENCODER),) | |
| 137 OBJS+= svq1.o | |
| 138 endif | |
| 139 ifeq ($(CONFIG_TRUEMOTION1_DECODER),yes) | |
| 140 OBJS+= truemotion1.o | |
| 141 endif | |
| 142 ifeq ($(CONFIG_TSCC_DECODER),yes) | |
| 143 OBJS+= tscc.o | |
| 144 endif | |
| 145 ifeq ($(CONFIG_ULTI_DECODER),yes) | |
| 146 OBJS+= ulti.o | |
| 147 endif | |
| 148 ifneq ($(CONFIG_VC9_DECODER)$(CONFIG_WMV3_DECODER),) | |
| 149 OBJS+= vc9.o | |
| 150 endif | |
| 151 ifneq ($(CONFIG_VCR1_DECODER)$(CONFIG_VCR1_ENCODER),) | |
| 152 OBJS+= vcr1.o | |
| 153 endif | |
| 154 ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),) | |
| 155 OBJS+= vmdav.o | |
| 156 endif | |
|
2697
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
157 ifeq ($(CONFIG_VORBIS_DECODER),yes) |
|
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
158 OBJS+= vorbis.o |
|
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
159 endif |
| 2639 | 160 ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),) |
| 161 OBJS+= vp3.o | |
| 162 endif | |
| 163 ifeq ($(CONFIG_VQA_DECODER),yes) | |
| 164 OBJS+= vqavideo.o | |
| 165 endif | |
| 166 ifneq ($(CONFIG_WMAV1_DECODER)$(CONFIG_WMAV2_DECODER),) | |
| 167 OBJS+= wmadec.o | |
| 168 endif | |
| 169 ifeq ($(CONFIG_WNV1_DECODER),yes) | |
| 170 OBJS+= wnv1.o | |
| 171 endif | |
| 172 ifeq ($(CONFIG_WS_SND1_DECODER),yes) | |
| 173 OBJS+= ws-snd1.o | |
| 174 endif | |
| 175 ifneq ($(CONFIG_XAN_WC3_DECODER)$(CONFIG_XAN_WC4_DECODER),) | |
| 176 OBJS+= xan.o | |
| 177 endif | |
| 178 ifeq ($(CONFIG_XL_DECODER),yes) | |
| 179 OBJS+= xl.o | |
| 180 endif | |
| 181 | |
| 182 | |
|
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
183 AMROBJS= |
|
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
184 ifeq ($(AMR_NB),yes) |
| 1297 | 185 ifeq ($(AMR_NB_FIXED),yes) |
|
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
186 AMROBJS= amr.o |
| 1297 | 187 AMREXTRALIBS+= amr/*.o |
| 188 AMRLIBS=amrlibs | |
| 189 CLEANAMR=cleanamr | |
| 190 else | |
|
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
191 AMROBJS= amr.o |
|
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
192 OBJS+= amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o |
| 1297 | 193 CLEANAMR=cleanamrfloat |
| 194 endif | |
|
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
195 endif |
|
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
196 |
| 1799 | 197 ifeq ($(HAVE_PTHREADS),yes) |
| 198 OBJS+= pthread.o | |
| 199 endif | |
| 200 | |
|
1822
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
201 ifeq ($(HAVE_W32THREADS),yes) |
|
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
202 OBJS+= w32thread.o |
|
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
203 endif |
|
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
204 |
|
2362
7a6ff8cc7c95
BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents:
2355
diff
changeset
|
205 ifeq ($(HAVE_BEOSTHREADS),yes) |
|
7a6ff8cc7c95
BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents:
2355
diff
changeset
|
206 OBJS+= beosthread.o |
|
7a6ff8cc7c95
BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents:
2355
diff
changeset
|
207 endif |
|
7a6ff8cc7c95
BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents:
2355
diff
changeset
|
208 |
|
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
209 ifeq ($(AMR_WB),yes) |
|
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
210 AMROBJS= amr.o |
|
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
211 OBJS+= amrwb_float/dec_acelp.o amrwb_float/dec_dtx.o amrwb_float/dec_gain.o \ |
|
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
212 amrwb_float/dec_if.o amrwb_float/dec_lpc.o amrwb_float/dec_main.o \ |
|
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
213 amrwb_float/dec_rom.o amrwb_float/dec_util.o amrwb_float/enc_acelp.o \ |
|
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
214 amrwb_float/enc_dtx.o amrwb_float/enc_gain.o amrwb_float/enc_if.o \ |
|
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
215 amrwb_float/enc_lpc.o amrwb_float/enc_main.o amrwb_float/enc_rom.o \ |
|
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
216 amrwb_float/enc_util.o amrwb_float/if_rom.o |
|
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
217 endif |
|
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
218 OBJS+= $(AMROBJS) |
|
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
219 CLEANAMRWB=cleanamrwbfloat |
| 2 | 220 ASM_OBJS= |
| 0 | 221 |
| 1383 | 222 ifeq ($(HAVE_XVMC_ACCEL),yes) |
| 223 OBJS+= xvmcvideo.o | |
| 224 endif | |
| 225 | |
| 338 | 226 # currently using liba52 for ac3 decoding |
|
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
227 ifeq ($(CONFIG_AC3),yes) |
| 338 | 228 OBJS+= a52dec.o |
| 229 | |
| 230 # using builtin liba52 or runtime linked liba52.so.0 | |
| 429 | 231 ifneq ($(CONFIG_A52BIN),yes) |
| 338 | 232 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ |
| 1194 | 233 liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.o |
|
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
234 endif |
| 429 | 235 endif |
| 0 | 236 |
|
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
237 # currently using libdts for dts decoding |
|
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
238 ifeq ($(CONFIG_DTS),yes) |
|
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
239 OBJS+= dtsdec.o |
| 2141 | 240 CFLAGS += $(DTS_INC) |
| 241 EXTRALIBS += -ldts | |
|
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
242 endif |
|
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
243 |
| 1245 | 244 ifeq ($(CONFIG_FAAD),yes) |
| 245 OBJS+= faad.o | |
| 1247 | 246 ifeq ($(CONFIG_FAADBIN),yes) |
| 247 # no libs needed | |
| 248 else | |
| 249 EXTRALIBS += -lfaad | |
| 250 endif | |
| 1245 | 251 endif |
| 252 | |
|
1500
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
253 ifeq ($(CONFIG_FAAC),yes) |
|
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
254 OBJS+= faac.o |
|
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
255 EXTRALIBS += -lfaac |
|
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
256 endif |
|
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
257 |
|
2131
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
258 ifeq ($(CONFIG_XVID),yes) |
|
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
259 OBJS+= xvidff.o |
|
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
260 EXTRALIBS += -lxvidcore |
|
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
261 endif |
|
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
262 |
|
2556
e5af3bc1d038
H.264 encoding with x264 by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
263 ifeq ($(CONFIG_X264),yes) |
|
e5af3bc1d038
H.264 encoding with x264 by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
264 OBJS+= x264.o |
| 2557 | 265 EXTRALIBS += -lx264 |
|
2556
e5af3bc1d038
H.264 encoding with x264 by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
266 endif |
|
e5af3bc1d038
H.264 encoding with x264 by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
267 |
| 1069 | 268 ifeq ($(CONFIG_PP),yes) |
| 269 ifeq ($(SHARED_PP),yes) | |
| 2708 | 270 EXTRALIBS += -Llibpostproc -lpostproc$(BUILDSUF) |
| 1069 | 271 else |
| 272 # LIBS += libpostproc/libpostproc.a ... should be fixed | |
| 273 OBJS += libpostproc/postprocess.o | |
| 274 endif | |
| 275 endif | |
| 276 | |
|
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
277 ifeq ($(CONFIG_MP3LAME),yes) |
|
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
278 OBJS += mp3lameaudio.o |
| 348 | 279 EXTRALIBS += -lmp3lame |
|
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
280 endif |
|
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
281 |
| 2520 | 282 ifeq ($(CONFIG_LIBOGG),yes) |
| 283 ifeq ($(CONFIG_LIBVORBIS),yes) | |
|
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
284 OBJS += oggvorbis.o |
|
2566
99bcd49a3677
ogg has to be at the right of vorbis patch by ("V?ctor Paesa" wzrlpy hotmail com)
michael
parents:
2564
diff
changeset
|
285 EXTRALIBS += -lvorbisenc -lvorbis |
|
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
286 endif |
| 2520 | 287 ifeq ($(CONFIG_LIBTHEORA), yes) |
| 288 OBJS += oggtheora.o | |
| 289 EXTRALIBS += -ltheora | |
| 290 endif | |
|
2566
99bcd49a3677
ogg has to be at the right of vorbis patch by ("V?ctor Paesa" wzrlpy hotmail com)
michael
parents:
2564
diff
changeset
|
291 EXTRALIBS += -logg |
| 2520 | 292 endif |
|
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
293 |
| 2729 | 294 ifeq ($(CONFIG_LIBGSM),yes) |
| 295 OBJS += libgsm.o | |
| 296 EXTRALIBS += -lgsm | |
| 297 endif | |
| 298 | |
|
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
299 ifeq ($(TARGET_GPROF),yes) |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
300 CFLAGS+=-p |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
301 LDFLAGS+=-p |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
302 endif |
|
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
303 |
| 0 | 304 # i386 mmx specific stuff |
| 2 | 305 ifeq ($(TARGET_MMX),yes) |
| 74 | 306 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
| 32 | 307 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
| 338 | 308 i386/idct_mmx.o i386/motion_est_mmx.o \ |
| 1972 | 309 i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \ |
| 310 i386/vp3dsp_sse2.o | |
|
1027
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
311 ifdef TARGET_BUILTIN_VECTOR |
|
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
312 i386/fft_sse.o: CFLAGS+= -msse |
| 1869 | 313 depend: CFLAGS+= -msse |
|
1027
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
314 endif |
| 0 | 315 endif |
| 316 | |
| 62 | 317 # armv4l specific stuff |
| 318 ifeq ($(TARGET_ARCH_ARMV4L),yes) | |
|
2734
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
319 ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o armv4l/dsputil_arm_s.o |
| 730 | 320 OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o |
|
2734
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
321 ifeq ($(TARGET_IWMMXT),yes) |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
322 OBJS += armv4l/dsputil_iwmmxt.o armv4l/mpegvideo_iwmmxt.o |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
323 endif |
| 62 | 324 endif |
| 325 | |
| 88 | 326 # sun mediaLib specific stuff |
| 327 # currently only works when libavcodec is used in mplayer | |
| 328 ifeq ($(HAVE_MLIB),yes) | |
| 329 OBJS += mlib/dsputil_mlib.o | |
| 330 CFLAGS += $(MLIB_INC) | |
| 331 endif | |
| 332 | |
|
2734
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
333 # Intel IPP specific stuff |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
334 # currently only works when libavcodec is used in mplayer |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
335 ifeq ($(HAVE_IPP),yes) |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
336 CFLAGS += $(IPP_INC) |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
337 endif |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
338 |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
339 # alpha specific stuff |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
340 ifeq ($(TARGET_ARCH_ALPHA),yes) |
|
744
2f7da29ede37
Move Alpha optimized IDCT to own file. Based on a patch by M?ns
mellum
parents:
730
diff
changeset
|
341 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \ |
|
2f7da29ede37
Move Alpha optimized IDCT to own file. Based on a patch by M?ns
mellum
parents:
730
diff
changeset
|
342 alpha/simple_idct_alpha.o alpha/motion_est_alpha.o |
|
705
107a56aa74f5
Add Alpha assembly for pix_abs16x16. Optimized for pca56, no large win
mellum
parents:
689
diff
changeset
|
343 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o |
| 2545 | 344 CFLAGS += -fforce-addr |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
345 endif |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
346 |
|
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
347 ifeq ($(TARGET_ARCH_POWERPC),yes) |
|
828
ace3ccd18dd2
Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents:
827
diff
changeset
|
348 OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o |
|
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
349 endif |
|
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
350 |
|
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
351 ifeq ($(TARGET_MMI),yes) |
|
721
71f669e9f633
ps2 optimizations update patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
705
diff
changeset
|
352 OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o |
|
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
353 endif |
|
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
354 |
|
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
355 ifeq ($(TARGET_ALTIVEC),yes) |
|
975
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
973
diff
changeset
|
356 OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \ |
|
2236
b0102ea621dd
h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
2234
diff
changeset
|
357 ppc/fft_altivec.o ppc/gmc_altivec.o ppc/fdct_altivec.o \ |
|
b0102ea621dd
h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
2234
diff
changeset
|
358 ppc/dsputil_h264_altivec.o |
|
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
359 endif |
|
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
360 |
|
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
361 ifeq ($(TARGET_ARCH_SH4),yes) |
|
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
362 OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o |
|
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
363 endif |
|
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
364 |
|
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
365 ifeq ($(TARGET_ARCH_SPARC),yes) |
|
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
366 OBJS+=sparc/dsputil_vis.o |
|
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
367 sparc/%.o: sparc/%.c |
|
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
368 $(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) -c -o $@ $< |
|
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
369 endif |
| 1960 | 370 ifeq ($(TARGET_ARCH_SPARC64),yes) |
|
1959
55b7435c59b8
VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
michael
parents:
1930
diff
changeset
|
371 CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc |
|
55b7435c59b8
VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
michael
parents:
1930
diff
changeset
|
372 endif |
|
55b7435c59b8
VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
michael
parents:
1930
diff
changeset
|
373 |
|
509
cab79946302f
Implement put_pixels_clamped and add_pixels_clamped in Assembler. This
mellum
parents:
489
diff
changeset
|
374 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) |
| 429 | 375 OBJS := $(OBJS) $(ASM_OBJS) |
| 2 | 376 |
|
994
7701ff462e3a
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents:
979
diff
changeset
|
377 LIB= $(LIBPREF)avcodec$(LIBSUF) |
| 136 | 378 ifeq ($(BUILD_SHARED),yes) |
|
994
7701ff462e3a
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents:
979
diff
changeset
|
379 SLIB= $(SLIBPREF)avcodec$(SLIBSUF) |
| 136 | 380 endif |
| 784 | 381 TESTS= imgresample-test dct-test motion-test fft-test |
| 0 | 382 |
| 136 | 383 all: $(LIB) $(SLIB) |
| 429 | 384 |
| 1297 | 385 amrlibs: |
| 386 $(MAKE) -C amr spclib fipoplib | |
| 387 | |
| 43 | 388 tests: apiexample cpuid_test $(TESTS) |
| 0 | 389 |
| 1297 | 390 $(LIB): $(OBJS) $(AMRLIBS) |
| 0 | 391 rm -f $@ |
| 1297 | 392 $(AR) rc $@ $(OBJS) $(AMREXTRALIBS) |
| 640 | 393 $(RANLIB) $@ |
| 0 | 394 |
| 1046 | 395 $(SLIB): $(OBJS) |
|
2285
9891c6a212ca
Build process: libpostproc patch by (Franti?ek Dvo??k <valtri at users dot sourceforge dot net>)
michael
parents:
2282
diff
changeset
|
396 ifeq ($(CONFIG_PP),yes) |
|
2443
8d4708fabc06
Out-of-directory build patch by (Philipp Matthias Hahn <pmhahn titan.lahn de>)
michael
parents:
2421
diff
changeset
|
397 $(MAKE) -C libpostproc |
|
2285
9891c6a212ca
Build process: libpostproc patch by (Franti?ek Dvo??k <valtri at users dot sourceforge dot net>)
michael
parents:
2282
diff
changeset
|
398 endif |
| 1472 | 399 ifeq ($(CONFIG_WIN32),yes) |
| 400 $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) | |
| 401 -lib /machine:i386 /def:$(@:.dll=.def) | |
| 402 else | |
|
1930
01d6dc162ace
Missing LDFLAGS in libavcodec/Makefile patch by ("Michael T. Dean" <mtdean at thirdcontact dot com>)
michael
parents:
1869
diff
changeset
|
403 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) $(LDFLAGS) |
| 1472 | 404 endif |
| 429 | 405 |
| 0 | 406 dsputil.o: dsputil.c dsputil.h |
| 407 | |
| 1069 | 408 libpostproc/libpostproc.a: |
| 409 $(MAKE) -C libpostproc | |
| 410 | |
| 0 | 411 %.o: %.c |
|
2770
07a63c88e3a7
x86_64 + PIC fix by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
2756
diff
changeset
|
412 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< |
| 0 | 413 |
| 62 | 414 %.o: %.S |
|
2770
07a63c88e3a7
x86_64 + PIC fix by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
2756
diff
changeset
|
415 $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< |
| 62 | 416 |
| 1046 | 417 depend: $(SRCS) |
|
1027
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
418 $(CC) -MM $(CFLAGS) $^ 1>.depend |
|
1010
3c110cba4b29
- removed nonsense *.d dependancy stuff, there was already a better 'make dep' support in it
arpi_esp
parents:
1005
diff
changeset
|
419 |
| 2 | 420 dep: depend |
| 421 | |
| 1297 | 422 clean: $(CLEANAMR) |
|
1005
c331a07c0be2
AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents:
995
diff
changeset
|
423 rm -f *.o *.d *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \ |
| 62 | 424 armv4l/*.o armv4l/*~ \ |
| 88 | 425 mlib/*.o mlib/*~ \ |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
426 alpha/*.o alpha/*~ \ |
|
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
427 ppc/*.o ppc/*~ \ |
|
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
428 ps2/*.o ps2/*~ \ |
|
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
429 sh4/*.o sh4/*~ \ |
|
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
430 sparc/*.o sparc/*~ \ |
| 338 | 431 liba52/*.o liba52/*~ \ |
| 432 apiexample $(TESTS) | |
| 1074 | 433 $(MAKE) -C libpostproc clean |
| 0 | 434 |
|
484
f8bbc8976247
in libavcodec/Makefile there is in line 110: "distclean: clean<binary char>"
arpi_esp
parents:
429
diff
changeset
|
435 distclean: clean |
| 2 | 436 rm -f Makefile.bak .depend |
| 437 | |
| 1297 | 438 cleanamr: |
| 439 $(MAKE) -C amr clean | |
| 440 | |
| 441 cleanamrfloat: | |
| 442 rm -f amr_float/*.o | |
| 443 | |
|
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
444 cleanamrwbfloat: |
|
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
445 $(MAKE) -C amrwb_float -f makefile.gcc clean |
|
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
446 |
| 0 | 447 # api example program |
| 448 apiexample: apiexample.c $(LIB) | |
| 645 | 449 $(CC) $(CFLAGS) -o $@ $< $(LIB) $(EXTRALIBS) -lm |
| 0 | 450 |
| 43 | 451 # cpuid test |
| 452 cpuid_test: i386/cputest.c | |
| 453 $(CC) $(CFLAGS) -D__TEST__ -o $@ $< | |
| 454 | |
| 0 | 455 # testing progs |
| 456 | |
| 457 imgresample-test: imgresample.c | |
| 644 | 458 $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm |
| 0 | 459 |
| 979 | 460 dct-test: dct-test.o fdctref.o $(LIB) |
|
607
5762b2d659d2
darwin patches by Heliodoro Tammaro <helio at interactives dot org>
michaelni
parents:
603
diff
changeset
|
461 $(CC) -o $@ $^ -lm |
|
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
462 |
| 74 | 463 motion-test: motion_test.o $(LIB) |
| 644 | 464 $(CC) -o $@ $^ -lm |
| 74 | 465 |
|
973
e2c119417470
enabled SSE fft (first code using GCC 3.2 vector builtins on x86 - please tell me if you have better ideas for intrinsic naming or Makefile support)
bellard
parents:
866
diff
changeset
|
466 fft-test: fft-test.o $(LIB) |
| 784 | 467 $(CC) -o $@ $^ -lm |
| 468 | |
| 136 | 469 ifeq ($(BUILD_SHARED),yes) |
| 1470 | 470 install: all install-headers |
| 471 ifeq ($(CONFIG_WIN32),yes) | |
|
2282
e8d3609e89a5
Help debugging by keeping symbols ans line numbers patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
2275
diff
changeset
|
472 install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)" |
| 1470 | 473 else |
|
2564
ad15cccd015f
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
2557
diff
changeset
|
474 install -d $(libdir) |
|
ad15cccd015f
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
2557
diff
changeset
|
475 install $(INSTALLSTRIP) -m 755 $(SLIB) $(libdir)/libavcodec-$(VERSION).so |
|
ad15cccd015f
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
2557
diff
changeset
|
476 ln -sf libavcodec-$(VERSION).so $(libdir)/libavcodec.so |
|
2730
5bc8023efdba
ldconfig as config.mak variable patch by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
2729
diff
changeset
|
477 $(LDCONFIG) || true |
| 1470 | 478 endif |
|
2285
9891c6a212ca
Build process: libpostproc patch by (Franti?ek Dvo??k <valtri at users dot sourceforge dot net>)
michael
parents:
2282
diff
changeset
|
479 ifeq ($(CONFIG_PP),yes) |
|
2443
8d4708fabc06
Out-of-directory build patch by (Philipp Matthias Hahn <pmhahn titan.lahn de>)
michael
parents:
2421
diff
changeset
|
480 $(MAKE) -C libpostproc $@ |
|
2285
9891c6a212ca
Build process: libpostproc patch by (Franti?ek Dvo??k <valtri at users dot sourceforge dot net>)
michael
parents:
2282
diff
changeset
|
481 endif |
| 1470 | 482 else |
| 483 install: | |
| 136 | 484 endif |
|
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
485 |
| 1470 | 486 installlib: all install-headers |
|
2564
ad15cccd015f
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
2557
diff
changeset
|
487 install -m 644 $(LIB) "$(libdir)" |
| 1470 | 488 |
| 489 install-headers: | |
| 490 mkdir -p "$(prefix)/include/ffmpeg" | |
|
1568
c5ec7ac5c053
rational.h not installed patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michael
parents:
1557
diff
changeset
|
491 install -m 644 $(SRC_PATH)/libavcodec/avcodec.h \ |
|
c5ec7ac5c053
rational.h not installed patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michael
parents:
1557
diff
changeset
|
492 $(SRC_PATH)/libavcodec/common.h \ |
|
c5ec7ac5c053
rational.h not installed patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michael
parents:
1557
diff
changeset
|
493 $(SRC_PATH)/libavcodec/rational.h \ |
| 1470 | 494 "$(prefix)/include/ffmpeg" |
|
2711
3ba3640bae2a
install libav(codec|format).pc/libpostproc.pc for pkg-config (original patch from <j at v2v.cc>)
aurel
parents:
2708
diff
changeset
|
495 install -d $(libdir)/pkgconfig |
|
3ba3640bae2a
install libav(codec|format).pc/libpostproc.pc for pkg-config (original patch from <j at v2v.cc>)
aurel
parents:
2708
diff
changeset
|
496 install -m 644 ../libavcodec.pc $(libdir)/pkgconfig |
|
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
497 |
|
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
498 # |
|
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
499 # include dependency files if they exist |
|
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
500 # |
|
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
501 ifneq ($(wildcard .depend),) |
|
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
502 include .depend |
|
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
503 endif |
