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