2008-06-17 11:40:04 +00:00
|
|
|
# MPlayer Makefile
|
|
|
|
#
|
|
|
|
# copyright (c) 2008 Diego Biurrun
|
|
|
|
# Rewritten entirely from a set of Makefiles written by Arpi and many others.
|
|
|
|
#
|
|
|
|
# This file is part of MPlayer.
|
|
|
|
#
|
|
|
|
# MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# MPlayer is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
include config.mak
|
|
|
|
|
2008-05-09 17:51:44 +00:00
|
|
|
###### variable declarations #######
|
|
|
|
|
2012-11-09 00:06:43 +00:00
|
|
|
SOURCES_AUDIO_INPUT-$(ALSA) += stream/ai_alsa1x.c
|
|
|
|
SOURCES_AUDIO_INPUT-$(OSS) += stream/ai_oss.c
|
|
|
|
SOURCES-$(AUDIO_INPUT) += $(SOURCES_AUDIO_INPUT-yes)
|
|
|
|
SOURCES-$(CDDA) += stream/stream_cdda.c \
|
|
|
|
stream/cdinfo.c
|
|
|
|
SOURCES-$(DVBIN) += stream/dvb_tune.c \
|
|
|
|
stream/stream_dvb.c
|
|
|
|
SOURCES-$(DVDREAD) += stream/stream_dvd.c \
|
|
|
|
stream/stream_dvd_common.c
|
|
|
|
|
2013-07-07 19:44:37 +00:00
|
|
|
SOURCES-$(HAVE_SYS_MMAN_H) += audio/filter/af_export.c
|
2012-11-09 00:06:43 +00:00
|
|
|
SOURCES-$(LADSPA) += audio/filter/af_ladspa.c
|
2013-06-22 00:09:52 +00:00
|
|
|
SOURCES-$(LIBASS) += sub/ass_mp.c sub/sd_ass.c \
|
|
|
|
demux/demux_libass.c
|
2012-11-09 00:06:43 +00:00
|
|
|
|
|
|
|
SOURCES-$(LIBBLURAY) += stream/stream_bluray.c
|
|
|
|
SOURCES-$(LIBBS2B) += audio/filter/af_bs2b.c
|
|
|
|
|
|
|
|
SOURCES-$(LIBPOSTPROC) += video/filter/vf_pp.c
|
|
|
|
SOURCES-$(LIBSMBCLIENT) += stream/stream_smb.c
|
|
|
|
|
2012-12-09 14:05:21 +00:00
|
|
|
SOURCES-$(MACOSX_BUNDLE) += osdep/macosx_bundle.m
|
2013-06-02 15:39:05 +00:00
|
|
|
SOURCES-$(COCOA) += video/out/cocoa_common.m \
|
|
|
|
osdep/macosx_application.m \
|
2013-06-02 22:52:40 +00:00
|
|
|
osdep/macosx_events.m \
|
|
|
|
osdep/ar/HIDRemote.m
|
2012-11-09 00:06:43 +00:00
|
|
|
SOURCES-$(MNG) += demux/demux_mng.c
|
|
|
|
SOURCES-$(MPG123) += audio/decode/ad_mpg123.c
|
|
|
|
|
|
|
|
SOURCES-$(NEED_GETTIMEOFDAY) += osdep/gettimeofday.c
|
|
|
|
SOURCES-$(NEED_GLOB) += osdep/glob-win.c
|
|
|
|
|
|
|
|
SOURCES-$(PRIORITY) += osdep/priority.c
|
|
|
|
SOURCES-$(PVR) += stream/stream_pvr.c
|
|
|
|
SOURCES-$(RADIO) += stream/stream_radio.c
|
|
|
|
SOURCES-$(RADIO_CAPTURE) += stream/audio_in.c
|
2013-06-06 18:33:02 +00:00
|
|
|
SOURCES-$(STREAM_CACHE) += stream/cache.c
|
2012-11-09 00:06:43 +00:00
|
|
|
|
|
|
|
SOURCES-$(TV) += stream/stream_tv.c stream/tv.c \
|
|
|
|
stream/frequencies.c stream/tvi_dummy.c
|
|
|
|
|
|
|
|
SOURCES-$(TV_V4L2) += stream/tvi_v4l2.c stream/audio_in.c
|
|
|
|
SOURCES-$(VCD) += stream/stream_vcd.c
|
|
|
|
SOURCES-$(DUMMY_OSD) += sub/osd_dummy.c
|
|
|
|
SOURCES-$(LIBASS_OSD) += sub/osd_libass.c
|
|
|
|
|
|
|
|
SOURCES-$(ALSA) += audio/out/ao_alsa.c
|
|
|
|
SOURCES-$(CACA) += video/out/vo_caca.c
|
2012-12-28 07:07:14 +00:00
|
|
|
SOURCES-$(SDL) += audio/out/ao_sdl.c
|
|
|
|
SOURCES-$(SDL2) += video/out/vo_sdl.c
|
2013-05-23 19:23:32 +00:00
|
|
|
SOURCES-$(COREAUDIO) += audio/out/ao_coreaudio.c
|
2012-11-09 00:06:43 +00:00
|
|
|
SOURCES-$(COREVIDEO) += video/out/vo_corevideo.m
|
|
|
|
SOURCES-$(DIRECT3D) += video/out/vo_direct3d.c \
|
|
|
|
video/out/w32_common.c
|
|
|
|
SOURCES-$(DSOUND) += audio/out/ao_dsound.c
|
2013-06-13 13:15:39 +00:00
|
|
|
SOURCES-$(WASAPI0) += audio/out/ao_wasapi0.c
|
2012-11-09 00:06:43 +00:00
|
|
|
SOURCES-$(GL) += video/out/gl_common.c video/out/gl_osd.c \
|
2013-03-01 20:19:20 +00:00
|
|
|
video/out/vo_opengl.c video/out/gl_lcms.c \
|
2013-05-25 23:48:39 +00:00
|
|
|
video/out/gl_video.c video/out/dither.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
video/out/vo_opengl_old.c \
|
|
|
|
video/out/pnm_loader.c
|
|
|
|
|
|
|
|
SOURCES-$(ENCODING) += video/out/vo_lavc.c audio/out/ao_lavc.c \
|
|
|
|
core/encode_lavc.c
|
2013-03-01 14:55:08 +00:00
|
|
|
|
|
|
|
SOURCES-$(GL_WIN32) += video/out/w32_common.c video/out/gl_w32.c
|
|
|
|
SOURCES-$(GL_X11) += video/out/x11_common.c video/out/gl_x11.c
|
|
|
|
SOURCES-$(GL_COCOA) += video/out/gl_cocoa.c
|
|
|
|
SOURCES-$(GL_WAYLAND) += video/out/wayland_common.c \
|
|
|
|
video/out/gl_wayland.c
|
2012-11-09 00:06:43 +00:00
|
|
|
|
|
|
|
SOURCES-$(JACK) += audio/out/ao_jack.c
|
|
|
|
SOURCES-$(JOYSTICK) += core/input/joystick.c
|
2013-06-27 16:20:59 +00:00
|
|
|
SOURCES-$(LIBQUVI) += core/resolve_quvi.c
|
2013-06-27 16:21:07 +00:00
|
|
|
SOURCES-$(LIBQUVI9) += core/resolve_quvi9.c
|
2012-11-09 00:06:43 +00:00
|
|
|
SOURCES-$(LIRC) += core/input/lirc.c
|
|
|
|
SOURCES-$(OPENAL) += audio/out/ao_openal.c
|
|
|
|
SOURCES-$(OSS) += audio/out/ao_oss.c
|
|
|
|
SOURCES-$(PULSE) += audio/out/ao_pulse.c
|
|
|
|
SOURCES-$(PORTAUDIO) += audio/out/ao_portaudio.c
|
|
|
|
SOURCES-$(RSOUND) += audio/out/ao_rsound.c
|
|
|
|
SOURCES-$(VDPAU) += video/out/vo_vdpau.c
|
|
|
|
|
|
|
|
SOURCES-$(X11) += video/out/vo_x11.c video/out/x11_common.c
|
|
|
|
SOURCES-$(XV) += video/out/vo_xv.c
|
|
|
|
|
2013-03-10 23:16:34 +00:00
|
|
|
SOURCES-$(VF_LAVFI) += video/filter/vf_lavfi.c
|
2013-05-23 13:11:57 +00:00
|
|
|
SOURCES-$(AF_LAVFI) += audio/filter/af_lavfi.c
|
2013-03-10 23:16:34 +00:00
|
|
|
|
2013-03-09 19:50:06 +00:00
|
|
|
ifeq ($(HAVE_AVUTIL_REFCOUNTING),no)
|
|
|
|
SOURCES-yes += video/decode/lavc_dr1.c
|
|
|
|
endif
|
2012-11-09 00:06:43 +00:00
|
|
|
|
2013-07-12 16:33:39 +00:00
|
|
|
SOURCES-$(DLOPEN) += video/filter/vf_dlopen.c
|
2013-07-09 07:28:05 +00:00
|
|
|
|
2012-11-09 00:06:43 +00:00
|
|
|
SOURCES = talloc.c \
|
2013-04-05 17:47:51 +00:00
|
|
|
audio/audio.c \
|
2013-04-05 13:25:09 +00:00
|
|
|
audio/chmap.c \
|
2013-05-09 13:12:16 +00:00
|
|
|
audio/chmap_sel.c \
|
2012-11-03 13:06:53 +00:00
|
|
|
audio/fmt-conversion.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
audio/format.c \
|
|
|
|
audio/mixer.c \
|
|
|
|
audio/reorder_ch.c \
|
|
|
|
audio/decode/ad.c \
|
|
|
|
audio/decode/ad_lavc.c \
|
|
|
|
audio/decode/ad_spdif.c \
|
|
|
|
audio/decode/dec_audio.c \
|
|
|
|
audio/filter/af.c \
|
|
|
|
audio/filter/af_center.c \
|
|
|
|
audio/filter/af_channels.c \
|
|
|
|
audio/filter/af_delay.c \
|
|
|
|
audio/filter/af_dummy.c \
|
|
|
|
audio/filter/af_equalizer.c \
|
|
|
|
audio/filter/af_extrastereo.c \
|
2013-05-09 10:09:23 +00:00
|
|
|
audio/filter/af_force.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
audio/filter/af_format.c \
|
|
|
|
audio/filter/af_hrtf.c \
|
|
|
|
audio/filter/af_karaoke.c \
|
|
|
|
audio/filter/af_lavcac3enc.c \
|
2013-03-09 08:30:26 +00:00
|
|
|
audio/filter/af_lavrresample.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
audio/filter/af_pan.c \
|
|
|
|
audio/filter/af_scaletempo.c \
|
|
|
|
audio/filter/af_sinesuppress.c \
|
|
|
|
audio/filter/af_sub.c \
|
|
|
|
audio/filter/af_surround.c \
|
|
|
|
audio/filter/af_sweep.c \
|
|
|
|
audio/filter/af_tools.c \
|
2013-02-12 08:53:33 +00:00
|
|
|
audio/filter/af_drc.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
audio/filter/af_volume.c \
|
|
|
|
audio/filter/filter.c \
|
|
|
|
audio/filter/window.c \
|
|
|
|
audio/out/ao.c \
|
|
|
|
audio/out/ao_null.c \
|
|
|
|
audio/out/ao_pcm.c \
|
|
|
|
core/asxparser.c \
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 14:15:19 +00:00
|
|
|
core/av_common.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
core/av_log.c \
|
|
|
|
core/av_opts.c \
|
|
|
|
core/bstr.c \
|
sub: add subtitle charset conversion
This code was once part of subreader.c, then traveled to libass, and now
made its way back to the fork of the fork of the original code, MPlayer.
It works pretty much the same as subreader.c, except that we have to
concatenate some packets to do auto-detection. This is rather annoying,
but for all we know the actual source file could be a binary format.
Unlike subreader.c, the iconv context is reopened on each packet. This
is simpler, and with respect to multibyte encodings, more robust.
Reopening is probably not a very fast, but I suspect subtitle charset
conversion is not an operation that happens often or has to be fast.
Also, this auto-detection is disabled for microdvd - this is the only
format we know that has binary data in its packets, but is actually
decoded to text. FFmpeg doesn't really allow us to solve this properly,
because a) the input packets can be binary, and b) the output will be
checked whether it's UTF-8, and if it's not, the output is thrown away
and an error message is printed. We could just recode the decoded
subtitles before sd_ass if it weren't for that.
2013-06-23 20:15:04 +00:00
|
|
|
core/charset_conv.c \
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 14:15:19 +00:00
|
|
|
core/codecs.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
core/command.c \
|
|
|
|
core/cpudetect.c \
|
|
|
|
core/m_config.c \
|
|
|
|
core/m_option.c \
|
|
|
|
core/m_property.c \
|
|
|
|
core/m_struct.c \
|
|
|
|
core/mp_common.c \
|
|
|
|
core/mp_msg.c \
|
2013-05-23 19:23:32 +00:00
|
|
|
core/mp_ring.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
core/mplayer.c \
|
2013-06-07 20:57:00 +00:00
|
|
|
core/options.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
core/parser-cfg.c \
|
|
|
|
core/parser-mpcmd.c \
|
|
|
|
core/path.c \
|
|
|
|
core/playlist.c \
|
|
|
|
core/playlist_parser.c \
|
|
|
|
core/screenshot.c \
|
|
|
|
core/subopt-helper.c \
|
|
|
|
core/version.c \
|
|
|
|
core/input/input.c \
|
|
|
|
core/timeline/tl_edl.c \
|
|
|
|
core/timeline/tl_matroska.c \
|
|
|
|
core/timeline/tl_cue.c \
|
core: redo how codecs are mapped, remove codecs.conf
Use codec names instead of FourCCs to identify codecs. Rewrite how
codecs are selected and initialized. Now each decoder exports a list
of decoders (and the codec it supports) via add_decoders(). The order
matters, and the first decoder for a given decoder is preferred over
the other decoders. E.g. all ad_mpg123 decoders are preferred over
ad_lavc, because it comes first in the mpcodecs_ad_drivers array.
Likewise, decoders within ad_lavc that are enumerated first by
libavcodec (using av_codec_next()) are preferred. (This is actually
critical to select h264 software decoding by default instead of vdpau.
libavcodec and ffmpeg/avconv use the same method to select decoders by
default, so we hope this is sane.)
The codec names follow libavcodec's codec names as defined by
AVCodecDescriptor.name (see libavcodec/codec_desc.c). Some decoders
have names different from the canonical codec name. The AVCodecDescriptor
API is relatively new, so we need a compatibility layer for older
libavcodec versions for codec names that are referenced internally,
and which are different from the decoder name. (Add a configure check
for that, because checking versions is getting way too messy.)
demux/codec_tags.c is generated from the former codecs.conf (minus
"special" decoders like vdpau, and excluding the mappings that are the
same as the mappings libavformat's exported RIFF tables). It contains
all the mappings from FourCCs to codec name. This is needed for
demux_mkv, demux_mpg, demux_avi and demux_asf. demux_lavf will set the
codec as determined by libavformat, while the other demuxers have to do
this on their own, using the mp_set_audio/video_codec_from_tag()
functions. Note that the sh_audio/video->format members don't uniquely
identify the codec anymore, and sh->codec takes over this role.
Replace the --ac/--vc/--afm/--vfm with new --vd/--ad options, which
provide cover the functionality of the removed switched.
Note: there's no CODECS_FLAG_FLIP flag anymore. This means some obscure
container/video combinations (e.g. the sample Film_200_zygo_pro.mov)
are played flipped. ffplay/avplay doesn't handle this properly either,
so we don't care and blame ffmeg/libav instead.
2013-02-09 14:15:19 +00:00
|
|
|
demux/codec_tags.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
demux/demux.c \
|
|
|
|
demux/demux_edl.c \
|
|
|
|
demux/demux_cue.c \
|
|
|
|
demux/demux_lavf.c \
|
|
|
|
demux/demux_mf.c \
|
|
|
|
demux/demux_mkv.c \
|
2013-06-20 22:26:05 +00:00
|
|
|
demux/demux_subreader.c \
|
2013-07-12 20:52:10 +00:00
|
|
|
demux/demux_raw.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
demux/ebml.c \
|
|
|
|
demux/mf.c \
|
|
|
|
osdep/io.c \
|
2013-05-17 17:54:37 +00:00
|
|
|
osdep/numcores.c \
|
|
|
|
osdep/timer.c \
|
2013-07-07 17:40:14 +00:00
|
|
|
stream/cookies.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
stream/stream.c \
|
demux_lavf: add support for libavdevice
libavdevice supports various "special" video and audio inputs, such
as screen-capture or libavfilter filter graphs.
libavdevice inputs are implemented as demuxers. They don't use the
custom stream callbacks (in AVFormatContext.pb). Instead, input
parameters are passed as filename. This means the mpv stream layer has
to be disabled. Do this by adding the pseudo stream handler avdevice://,
whose only purpose is passing the filename to demux_lavf, without
actually doing anything.
Change the logic how the filename is passed to libavformat. Remove
handling of the filename from demux_open_lavf() and move it to
lavf_check_file(). (This also fixes a possible bug when skipping the
"lavf://" prefix.)
libavdevice now can be invoked by specifying demuxer and args as in:
mpv avdevice://demuxer:args
The args are passed as filename to libavformat. When using libavdevice
demuxers, their actual meaning is highly implementation specific. They
don't refer to actual filenames.
Note:
libavdevice is disabled by default. There is one problem: libavdevice
pulls in libavfilter, which in turn causes symbol clashes with mpv
internals. The problem is that libavfilter includes a mplayer filter
bridge, which is used to interface with a set of nearly unmodified
mplayer filters copied into libavfilter. This filter bridge uses the
same symbol names as mplayer/mpv's filter chain, which results in symbol
clashes at link-time.
This can be prevented by building ffmpeg with --disable-filter=mp, but
unfortunately this is not the default.
This means linking to libavdevice (which in turn forces linking with
libavfilter by default) must be disabled. We try doing this by compiling
a test file that defines one of the clashing symbols (vf_mpi_clear).
To enable libavdevice input, ffmpeg should be built with the options:
--disable-filter=mp
and mpv with:
--enable-libavdevice
Originally, I tried to auto-detect it. But the resulting complications
in configure did't seem worth the trouble.
2012-11-30 17:41:04 +00:00
|
|
|
stream/stream_avdevice.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
stream/stream_file.c \
|
|
|
|
stream/stream_lavf.c \
|
2013-06-27 15:21:46 +00:00
|
|
|
stream/stream_memory.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
stream/stream_mf.c \
|
|
|
|
stream/stream_null.c \
|
|
|
|
sub/dec_sub.c \
|
|
|
|
sub/draw_bmp.c \
|
|
|
|
sub/find_subfiles.c \
|
|
|
|
sub/img_convert.c \
|
|
|
|
sub/sd_lavc.c \
|
2013-06-01 17:54:31 +00:00
|
|
|
sub/sd_lavc_conv.c \
|
2013-06-24 00:06:55 +00:00
|
|
|
sub/sd_lavf_srt.c \
|
2013-06-01 17:50:46 +00:00
|
|
|
sub/sd_microdvd.c \
|
2013-06-01 17:44:55 +00:00
|
|
|
sub/sd_movtext.c \
|
sub: add sd_spu.c to wrap spudec, cleanup mplayer.c
This unifies the subtitle rendering path. Now all subtitle rendering
goes through sd_ass.c/sd_lavc.c/sd_spu.c.
Before that commit, the spudec.h functions were used directly in
mplayer.c, which introduced many special cases. Add sd_spu.c, which is
just a small wrapper connecting the new subtitle render API with the
dusty old vobsub decoder in spudec.c.
One detail that changes is that we always pass the palette as extra
data, instead of passing the libdvdread palette as pointer to spudec
directly. This is a bit roundabout, but actually makes the code simpler
and more elegant: the difference between DVD and non-DVD dvdsubs is
reduced.
Ideally, we would just delete spudec.c and use libavcodec's DVD sub
decoder. However, DVD playback with demux_mpg produces packets
incompatible to lavc. There are incompatibilities the other way around
as well: packets from libavformat's vobsub demuxer are incompatible to
spudec.c. So we define a new subtitle codec name for demux_mpg subs,
"dvd_subtitle_mpg", which only sd_spu can decode.
There is actually code in spudec.c to "assemble" fragments into complete
packets, but using the whole spudec.c is easier than trying to move this
code into demux_mpg to fix subtitle packets.
As additional complication, Libav 9.x can't decode DVD subs correctly,
so use sd_spu in that case as well.
2013-04-28 23:13:22 +00:00
|
|
|
sub/sd_spu.c \
|
2013-06-01 17:50:46 +00:00
|
|
|
sub/sd_srt.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
sub/spudec.c \
|
|
|
|
sub/sub.c \
|
|
|
|
video/csputils.c \
|
|
|
|
video/fmt-conversion.c \
|
|
|
|
video/image_writer.c \
|
|
|
|
video/img_format.c \
|
|
|
|
video/mp_image.c \
|
2012-12-12 22:55:34 +00:00
|
|
|
video/mp_image_pool.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
video/sws_utils.c \
|
|
|
|
video/decode/dec_video.c \
|
|
|
|
video/decode/vd.c \
|
|
|
|
video/decode/vd_lavc.c \
|
|
|
|
video/filter/vf.c \
|
|
|
|
video/filter/pullup.c \
|
|
|
|
video/filter/vf_crop.c \
|
|
|
|
video/filter/vf_delogo.c \
|
|
|
|
video/filter/vf_divtc.c \
|
|
|
|
video/filter/vf_down3dright.c \
|
|
|
|
video/filter/vf_dsize.c \
|
2012-11-15 14:16:12 +00:00
|
|
|
video/filter/vf_eq.c \
|
2012-11-09 00:06:43 +00:00
|
|
|
video/filter/vf_expand.c \
|
|
|
|
video/filter/vf_flip.c \
|
|
|
|
video/filter/vf_format.c \
|
|
|
|
video/filter/vf_gradfun.c \
|
|
|
|
video/filter/vf_hqdn3d.c \
|
|
|
|
video/filter/vf_ilpack.c \
|
|
|
|
video/filter/vf_mirror.c \
|
|
|
|
video/filter/vf_noformat.c \
|
|
|
|
video/filter/vf_noise.c \
|
|
|
|
video/filter/vf_phase.c \
|
|
|
|
video/filter/vf_pullup.c \
|
|
|
|
video/filter/vf_rotate.c \
|
|
|
|
video/filter/vf_scale.c \
|
|
|
|
video/filter/vf_screenshot.c \
|
|
|
|
video/filter/vf_softpulldown.c \
|
|
|
|
video/filter/vf_stereo3d.c \
|
|
|
|
video/filter/vf_sub.c \
|
|
|
|
video/filter/vf_swapuv.c \
|
|
|
|
video/filter/vf_unsharp.c \
|
|
|
|
video/filter/vf_vo.c \
|
|
|
|
video/filter/vf_yadif.c \
|
|
|
|
video/out/bitmap_packer.c \
|
|
|
|
video/out/aspect.c \
|
|
|
|
video/out/filter_kernels.c \
|
|
|
|
video/out/vo.c \
|
|
|
|
video/out/vo_null.c \
|
|
|
|
video/out/vo_image.c \
|
|
|
|
osdep/$(GETCH) \
|
|
|
|
osdep/$(TIMER) \
|
|
|
|
$(SOURCES-yes)
|
|
|
|
|
|
|
|
OBJECTS += $(addsuffix .o, $(basename $(SOURCES)))
|
|
|
|
OBJECTS-$(PE_EXECUTABLE) += osdep/mpv-rc.o
|
|
|
|
OBJECTS += $(OBJECTS-yes)
|
|
|
|
|
|
|
|
DEP_FILES = $(patsubst %.S,%.d,$(patsubst %.cpp,%.d,$(patsubst %.c,%.d,$(SOURCES:.m=.d) $(SOURCES:.m=.d))))
|
|
|
|
|
2012-11-13 23:43:55 +00:00
|
|
|
ALL_TARGETS += mpv$(EXESUF)
|
2012-11-09 00:06:43 +00:00
|
|
|
|
2012-11-14 12:06:00 +00:00
|
|
|
INSTALL_BIN += install-mpv
|
|
|
|
INSTALL_BIN_STRIP += install-mpv-strip
|
|
|
|
INSTALL_MAN =
|
2012-11-13 23:43:55 +00:00
|
|
|
|
|
|
|
ifeq ($(BUILD_MAN),yes)
|
2012-11-14 12:06:00 +00:00
|
|
|
INSTALL_MAN += install-mpv-man
|
|
|
|
ALL_TARGETS += DOCS/man/en/mpv.1
|
2012-11-13 23:43:55 +00:00
|
|
|
endif
|
manpage: merge new manpage
About a year ago, ubitux converted most of the old manpage from the
hard to maintain nroff format to reStructuredText. This was not merged
back into the master repository immediately. The argument was that the
new manpage still required work to be done. However, progress was very
slow. Even worse: the old manpage wasn't updated, because it was
scheduled for deletion, and updating it would have meant useless work.
Now the situation is that the new manpage still isn't finished, and the
old manpage is grossly out of sync with the player. This is not helpful
for users. Additionally, keeping the new manpage in a separate branch,
while the normal development repository for code had the old manpage,
was very inconvenient, because you couldn't just update the
documentation in the same commit as the code.
Even though the new manpage isn't finished yet, merging it now seems to
be the best course of action. Squash-merge the manpage development
branch [1], revision e89f5dd3f2, which branches from the mplayer2
master branch after revision 159102e0cb.
Committers:
* Clément Bœsch <ubitux@gmail.com> (Initial conversion to RST.)
* Uoti Urpala <uau@mplayer2.org> (Many updates.)
* Myself (Minor edits.)
Most text of the manpage has been directly taken from the old manpage,
because this is a conversion, not a complete rewrite.
[1] http://git.mplayer2.org/uau/mplayer2.git/log/?h=man
2012-08-02 19:37:33 +00:00
|
|
|
|
2008-04-28 17:54:14 +00:00
|
|
|
DIRS = . \
|
2012-11-09 00:06:43 +00:00
|
|
|
audio \
|
|
|
|
audio/decode \
|
|
|
|
audio/filter \
|
|
|
|
audio/out \
|
|
|
|
core \
|
|
|
|
core/input \
|
|
|
|
core/timeline \
|
|
|
|
demux \
|
2008-04-08 18:25:30 +00:00
|
|
|
osdep \
|
2008-04-24 13:38:12 +00:00
|
|
|
stream \
|
2011-01-16 18:03:08 +00:00
|
|
|
sub \
|
2012-11-09 00:06:43 +00:00
|
|
|
video \
|
|
|
|
video/decode \
|
|
|
|
video/filter \
|
|
|
|
video/out
|
2002-09-22 13:04:19 +00:00
|
|
|
|
2008-07-05 09:07:24 +00:00
|
|
|
|
2009-04-20 00:18:59 +00:00
|
|
|
ADDSUFFIXES = $(foreach suf,$(1),$(addsuffix $(suf),$(2)))
|
|
|
|
ADD_ALL_DIRS = $(call ADDSUFFIXES,$(1),$(DIRS))
|
|
|
|
ADD_ALL_EXESUFS = $(1) $(call ADDSUFFIXES,$(EXESUFS_ALL),$(1))
|
2009-04-20 00:16:53 +00:00
|
|
|
|
2011-06-30 21:18:52 +00:00
|
|
|
###### brief build output #######
|
|
|
|
|
|
|
|
ifndef V
|
|
|
|
$(eval override CC = @printf "CC\t$$@\n"; $(CC))
|
|
|
|
$(eval override RM = @$(RM))
|
|
|
|
endif
|
|
|
|
|
2008-05-09 17:51:44 +00:00
|
|
|
###### generic rules #######
|
|
|
|
|
2012-11-13 23:43:55 +00:00
|
|
|
all: $(ALL_TARGETS)
|
2002-09-22 13:04:19 +00:00
|
|
|
|
manpage: merge new manpage
About a year ago, ubitux converted most of the old manpage from the
hard to maintain nroff format to reStructuredText. This was not merged
back into the master repository immediately. The argument was that the
new manpage still required work to be done. However, progress was very
slow. Even worse: the old manpage wasn't updated, because it was
scheduled for deletion, and updating it would have meant useless work.
Now the situation is that the new manpage still isn't finished, and the
old manpage is grossly out of sync with the player. This is not helpful
for users. Additionally, keeping the new manpage in a separate branch,
while the normal development repository for code had the old manpage,
was very inconvenient, because you couldn't just update the
documentation in the same commit as the code.
Even though the new manpage isn't finished yet, merging it now seems to
be the best course of action. Squash-merge the manpage development
branch [1], revision e89f5dd3f2, which branches from the mplayer2
master branch after revision 159102e0cb.
Committers:
* Clément Bœsch <ubitux@gmail.com> (Initial conversion to RST.)
* Uoti Urpala <uau@mplayer2.org> (Many updates.)
* Myself (Minor edits.)
Most text of the manpage has been directly taken from the old manpage,
because this is a conversion, not a complete rewrite.
[1] http://git.mplayer2.org/uau/mplayer2.git/log/?h=man
2012-08-02 19:37:33 +00:00
|
|
|
%.1: %.rst
|
2012-11-02 13:37:02 +00:00
|
|
|
$(RST2MAN) $< $@
|
manpage: merge new manpage
About a year ago, ubitux converted most of the old manpage from the
hard to maintain nroff format to reStructuredText. This was not merged
back into the master repository immediately. The argument was that the
new manpage still required work to be done. However, progress was very
slow. Even worse: the old manpage wasn't updated, because it was
scheduled for deletion, and updating it would have meant useless work.
Now the situation is that the new manpage still isn't finished, and the
old manpage is grossly out of sync with the player. This is not helpful
for users. Additionally, keeping the new manpage in a separate branch,
while the normal development repository for code had the old manpage,
was very inconvenient, because you couldn't just update the
documentation in the same commit as the code.
Even though the new manpage isn't finished yet, merging it now seems to
be the best course of action. Squash-merge the manpage development
branch [1], revision e89f5dd3f2, which branches from the mplayer2
master branch after revision 159102e0cb.
Committers:
* Clément Bœsch <ubitux@gmail.com> (Initial conversion to RST.)
* Uoti Urpala <uau@mplayer2.org> (Many updates.)
* Myself (Minor edits.)
Most text of the manpage has been directly taken from the old manpage,
because this is a conversion, not a complete rewrite.
[1] http://git.mplayer2.org/uau/mplayer2.git/log/?h=man
2012-08-02 19:37:33 +00:00
|
|
|
|
2010-02-23 23:33:10 +00:00
|
|
|
%.o: %.S
|
2010-07-01 23:18:16 +00:00
|
|
|
$(CC) $(DEPFLAGS) $(CFLAGS) -c -o $@ $<
|
2010-02-23 23:33:10 +00:00
|
|
|
|
2008-12-06 02:41:45 +00:00
|
|
|
%.o: %.c
|
2010-07-01 23:18:16 +00:00
|
|
|
$(CC) $(DEPFLAGS) $(CFLAGS) -c -o $@ $<
|
2008-04-29 08:53:08 +00:00
|
|
|
|
2008-12-06 02:41:45 +00:00
|
|
|
%.o: %.cpp
|
2010-07-01 23:18:16 +00:00
|
|
|
$(CC) $(DEPFLAGS) $(CXXFLAGS) -c -o $@ $<
|
2008-04-29 08:53:08 +00:00
|
|
|
|
2008-12-06 02:41:45 +00:00
|
|
|
%.o: %.m
|
2010-07-01 23:18:16 +00:00
|
|
|
$(CC) $(DEPFLAGS) $(CFLAGS) -c -o $@ $<
|
2010-02-23 23:33:10 +00:00
|
|
|
|
2008-07-06 13:26:30 +00:00
|
|
|
%-rc.o: %.rc
|
|
|
|
$(WINDRES) -I. $< $@
|
|
|
|
|
2012-11-09 00:06:43 +00:00
|
|
|
mpv$(EXESUF): $(OBJECTS)
|
2012-10-11 00:04:08 +00:00
|
|
|
mpv$(EXESUF):
|
2009-10-19 09:56:18 +00:00
|
|
|
$(CC) -o $@ $^ $(EXTRALIBS)
|
2008-08-07 12:35:34 +00:00
|
|
|
|
2012-11-09 00:06:43 +00:00
|
|
|
core/input/input.c: core/input/input_conf.h
|
|
|
|
core/input/input_conf.h: TOOLS/file2string.pl etc/input.conf
|
2012-08-01 20:52:28 +00:00
|
|
|
./$^ >$@
|
|
|
|
|
2012-11-09 00:06:43 +00:00
|
|
|
video/out/vo_vdpau.c: video/out/vdpau_template.c
|
|
|
|
video/out/vdpau_template.c: TOOLS/vdpau_functions.pl
|
2012-07-01 23:09:03 +00:00
|
|
|
./$< > $@
|
|
|
|
|
2013-01-24 15:57:21 +00:00
|
|
|
MKVLIB_DEPS = TOOLS/lib/Parse/Matroska.pm \
|
|
|
|
TOOLS/lib/Parse/Matroska/Definitions.pm \
|
|
|
|
TOOLS/lib/Parse/Matroska/Element.pm \
|
|
|
|
TOOLS/lib/Parse/Matroska/Reader.pm \
|
|
|
|
TOOLS/lib/Parse/Matroska/Utils.pm \
|
|
|
|
|
2012-11-09 00:06:43 +00:00
|
|
|
demux/ebml.c demux/demux_mkv.c: demux/ebml_types.h
|
2013-01-24 15:57:21 +00:00
|
|
|
demux/ebml_types.h: TOOLS/matroska.pl $(MKVLIB_DEPS)
|
2012-07-01 23:09:03 +00:00
|
|
|
./$< --generate-header > $@
|
|
|
|
|
2012-11-09 00:06:43 +00:00
|
|
|
demux/ebml.c: demux/ebml_defs.c
|
2013-01-24 15:57:21 +00:00
|
|
|
demux/ebml_defs.c: TOOLS/matroska.pl $(MKVLIB_DEPS)
|
2012-07-01 23:09:03 +00:00
|
|
|
./$< --generate-definitions > $@
|
2002-12-15 23:45:19 +00:00
|
|
|
|
2013-03-01 20:19:20 +00:00
|
|
|
video/out/gl_video.c: video/out/gl_video_shaders.h
|
|
|
|
video/out/gl_video_shaders.h: TOOLS/file2string.pl video/out/gl_video_shaders.glsl
|
2012-07-28 15:31:55 +00:00
|
|
|
./$^ >$@
|
2012-03-30 23:13:38 +00:00
|
|
|
|
2012-07-28 21:03:19 +00:00
|
|
|
sub/osd_libass.c: sub/osd_font.h
|
2013-04-27 15:56:47 +00:00
|
|
|
sub/osd_font.h: TOOLS/file2string.pl sub/osd_font.otf
|
2012-07-28 21:03:19 +00:00
|
|
|
./$^ >$@
|
|
|
|
|
2008-05-09 17:47:19 +00:00
|
|
|
# ./configure must be rerun if it changed
|
|
|
|
config.mak: configure
|
|
|
|
@echo "############################################################"
|
|
|
|
@echo "####### Please run ./configure again - it's changed! #######"
|
|
|
|
@echo "############################################################"
|
|
|
|
|
2011-02-19 17:01:07 +00:00
|
|
|
version.h .version: version.sh
|
|
|
|
./$<
|
|
|
|
|
|
|
|
# Force version.sh to run to potentially regenerate version.h
|
|
|
|
-include .version
|
2008-04-29 08:35:58 +00:00
|
|
|
|
2010-06-14 11:16:30 +00:00
|
|
|
%$(EXESUF): %.c
|
2010-06-14 11:24:55 +00:00
|
|
|
$(CC) $(CFLAGS) -o $@ $^
|
2008-07-04 14:35:44 +00:00
|
|
|
|
2010-09-04 00:20:08 +00:00
|
|
|
|
2008-05-09 17:51:44 +00:00
|
|
|
###### dependency declarations / specific CFLAGS ######
|
2006-07-13 01:20:14 +00:00
|
|
|
|
2012-11-09 00:06:43 +00:00
|
|
|
core/version.c osdep/mpv-rc.o: version.h
|
2008-04-08 18:25:30 +00:00
|
|
|
|
2012-10-20 14:45:05 +00:00
|
|
|
osdep/mpv-rc.o: osdep/mpv.exe.manifest
|
2010-07-04 07:13:18 +00:00
|
|
|
|
2012-11-13 23:08:25 +00:00
|
|
|
DOCS/man/en/mpv.1: DOCS/man/en/af.rst \
|
|
|
|
DOCS/man/en/ao.rst \
|
|
|
|
DOCS/man/en/changes.rst \
|
|
|
|
DOCS/man/en/encode.rst \
|
|
|
|
DOCS/man/en/input.rst \
|
|
|
|
DOCS/man/en/options.rst \
|
|
|
|
DOCS/man/en/vf.rst \
|
|
|
|
DOCS/man/en/vo.rst
|
|
|
|
|
2008-04-27 11:46:56 +00:00
|
|
|
|
2008-05-27 11:31:57 +00:00
|
|
|
###### installation / clean / generic rules #######
|
2008-04-27 22:53:18 +00:00
|
|
|
|
2012-11-14 12:06:00 +00:00
|
|
|
install: $(INSTALL_BIN) $(INSTALL_MAN)
|
|
|
|
install-no-man: $(INSTALL_BIN)
|
|
|
|
install-strip: $(INSTALL_BIN_STRIP) $(INSTALL_MAN)
|
|
|
|
install-strip-no-man: $(INSTALL_BIN_STRIP)
|
manpage: merge new manpage
About a year ago, ubitux converted most of the old manpage from the
hard to maintain nroff format to reStructuredText. This was not merged
back into the master repository immediately. The argument was that the
new manpage still required work to be done. However, progress was very
slow. Even worse: the old manpage wasn't updated, because it was
scheduled for deletion, and updating it would have meant useless work.
Now the situation is that the new manpage still isn't finished, and the
old manpage is grossly out of sync with the player. This is not helpful
for users. Additionally, keeping the new manpage in a separate branch,
while the normal development repository for code had the old manpage,
was very inconvenient, because you couldn't just update the
documentation in the same commit as the code.
Even though the new manpage isn't finished yet, merging it now seems to
be the best course of action. Squash-merge the manpage development
branch [1], revision e89f5dd3f2, which branches from the mplayer2
master branch after revision 159102e0cb.
Committers:
* Clément Bœsch <ubitux@gmail.com> (Initial conversion to RST.)
* Uoti Urpala <uau@mplayer2.org> (Many updates.)
* Myself (Minor edits.)
Most text of the manpage has been directly taken from the old manpage,
because this is a conversion, not a complete rewrite.
[1] http://git.mplayer2.org/uau/mplayer2.git/log/?h=man
2012-08-02 19:37:33 +00:00
|
|
|
|
2007-01-30 11:02:19 +00:00
|
|
|
install-dirs:
|
2008-12-06 01:57:08 +00:00
|
|
|
if test ! -d $(BINDIR) ; then $(INSTALL) -d $(BINDIR) ; fi
|
2007-01-30 11:00:54 +00:00
|
|
|
|
2008-05-18 17:16:43 +00:00
|
|
|
install-%: %$(EXESUF) install-dirs
|
2012-11-14 12:06:00 +00:00
|
|
|
$(INSTALL) -m 755 $< $(BINDIR)
|
|
|
|
|
|
|
|
install-%-strip: %$(EXESUF) install-dirs
|
|
|
|
$(INSTALL) -m 755 -s $< $(BINDIR)
|
2007-01-30 11:00:54 +00:00
|
|
|
|
2012-11-13 22:41:38 +00:00
|
|
|
install-mpv-man: install-mpv-man-en
|
2008-08-07 12:35:34 +00:00
|
|
|
|
2012-10-11 00:04:08 +00:00
|
|
|
install-mpv-man-en: DOCS/man/en/mpv.1
|
2008-12-06 01:57:08 +00:00
|
|
|
if test ! -d $(MANDIR)/man1 ; then $(INSTALL) -d $(MANDIR)/man1 ; fi
|
2012-10-11 00:04:08 +00:00
|
|
|
$(INSTALL) -m 644 DOCS/man/en/mpv.1 $(MANDIR)/man1/
|
2008-05-18 17:05:16 +00:00
|
|
|
|
2001-10-22 22:46:38 +00:00
|
|
|
uninstall:
|
2012-10-11 00:04:08 +00:00
|
|
|
$(RM) $(BINDIR)/mpv$(EXESUF)
|
|
|
|
$(RM) $(MANDIR)/man1/mpv.1
|
2012-11-13 22:41:38 +00:00
|
|
|
$(RM) $(MANDIR)/en/man1/mpv.1
|
2001-10-22 22:46:38 +00:00
|
|
|
|
2008-04-30 17:54:02 +00:00
|
|
|
clean:
|
2012-07-14 04:32:57 +00:00
|
|
|
-$(RM) $(call ADD_ALL_DIRS,/*.o /*.d /*.a /*.ho /*~)
|
manpage: merge new manpage
About a year ago, ubitux converted most of the old manpage from the
hard to maintain nroff format to reStructuredText. This was not merged
back into the master repository immediately. The argument was that the
new manpage still required work to be done. However, progress was very
slow. Even worse: the old manpage wasn't updated, because it was
scheduled for deletion, and updating it would have meant useless work.
Now the situation is that the new manpage still isn't finished, and the
old manpage is grossly out of sync with the player. This is not helpful
for users. Additionally, keeping the new manpage in a separate branch,
while the normal development repository for code had the old manpage,
was very inconvenient, because you couldn't just update the
documentation in the same commit as the code.
Even though the new manpage isn't finished yet, merging it now seems to
be the best course of action. Squash-merge the manpage development
branch [1], revision e89f5dd3f2, which branches from the mplayer2
master branch after revision 159102e0cb.
Committers:
* Clément Bœsch <ubitux@gmail.com> (Initial conversion to RST.)
* Uoti Urpala <uau@mplayer2.org> (Many updates.)
* Myself (Minor edits.)
Most text of the manpage has been directly taken from the old manpage,
because this is a conversion, not a complete rewrite.
[1] http://git.mplayer2.org/uau/mplayer2.git/log/?h=man
2012-08-02 19:37:33 +00:00
|
|
|
-$(RM) $(call ADD_ALL_DIRS,/*.o /*.a /*.ho /*~)
|
2012-10-11 00:04:08 +00:00
|
|
|
-$(RM) $(call ADD_ALL_EXESUFS,mpv)
|
2012-11-13 22:41:38 +00:00
|
|
|
-$(RM) DOCS/man/en/mpv.1
|
2012-08-01 21:21:55 +00:00
|
|
|
-$(RM) version.h
|
2012-11-09 00:06:43 +00:00
|
|
|
-$(RM) core/input/input_conf.h
|
|
|
|
-$(RM) video/out/vdpau_template.c
|
|
|
|
-$(RM) demux/ebml_types.h demux/ebml_defs.c
|
2013-03-01 20:19:20 +00:00
|
|
|
-$(RM) video/out/gl_video_shaders.h
|
2012-08-01 21:21:55 +00:00
|
|
|
-$(RM) sub/osd_font.h
|
2006-08-03 17:31:30 +00:00
|
|
|
|
2012-07-28 16:32:26 +00:00
|
|
|
distclean: clean
|
2012-08-01 21:21:55 +00:00
|
|
|
-$(RM) config.log config.mak config.h TAGS tags
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2008-01-10 18:40:26 +00:00
|
|
|
TAGS:
|
2011-06-30 20:12:48 +00:00
|
|
|
$(RM) $@; find . -name '*.[chS]' -o -name '*.asm' | xargs etags -a
|
2008-01-10 18:40:26 +00:00
|
|
|
|
|
|
|
tags:
|
2011-06-30 20:12:48 +00:00
|
|
|
$(RM) $@; find . -name '*.[chS]' -o -name '*.asm' | xargs ctags -a
|
2008-01-10 18:40:26 +00:00
|
|
|
|
2012-08-13 10:08:22 +00:00
|
|
|
osxbundle:
|
|
|
|
@TOOLS/osxbundle.py mpv
|
|
|
|
|
2013-04-08 19:44:46 +00:00
|
|
|
osxbundle-skip-deps:
|
|
|
|
@TOOLS/osxbundle.py --skip-deps mpv
|
|
|
|
|
2010-09-20 12:07:56 +00:00
|
|
|
-include $(DEP_FILES)
|
2008-04-24 21:58:45 +00:00
|
|
|
|
2012-11-13 22:52:08 +00:00
|
|
|
.PHONY: all *install* *clean .version
|
2010-06-22 13:15:34 +00:00
|
|
|
|
|
|
|
# Disable suffix rules. Most of the builtin rules are suffix rules,
|
|
|
|
# so this saves some time on slow systems.
|
|
|
|
.SUFFIXES:
|
2010-11-03 22:50:44 +00:00
|
|
|
|
|
|
|
# If a command returns failure but changed its target file, delete the
|
|
|
|
# (presumably malformed) file. Otherwise the file would be considered to
|
|
|
|
# be up to date if make is restarted.
|
|
|
|
|
|
|
|
.DELETE_ON_ERROR:
|