2001-02-24 20:28:24 +00:00
|
|
|
# LINUX Makefile made by A'rpi / Astral
|
|
|
|
# Some cleanup by LGB: * 'make -C dir' instead of 'cd dir;make;cd..'
|
|
|
|
# * for loops instead of linear sequence of make directories
|
|
|
|
# * some minor problems with make clean and distclean were corrected
|
2001-04-17 22:04:44 +00:00
|
|
|
# * DVD support
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
include config.mak
|
|
|
|
|
2001-04-06 23:20:46 +00:00
|
|
|
PRG_CFG = codec-cfg
|
2002-04-15 17:09:23 +00:00
|
|
|
|
2005-08-01 20:16:56 +00:00
|
|
|
LIBAV_INC =
|
|
|
|
ifeq ($(CONFIG_LIBAVUTIL),yes)
|
|
|
|
LIBAV_INC += -I./libavutil
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_LIBAVCODEC),yes)
|
|
|
|
LIBAV_INC += -I./libavcodec
|
|
|
|
endif
|
|
|
|
|
2002-05-30 14:26:35 +00:00
|
|
|
# Do not strip the binaries at installation
|
|
|
|
ifeq ($(STRIPBINARIES),yes)
|
|
|
|
INSTALLSTRIP = -s
|
|
|
|
endif
|
|
|
|
|
2002-06-29 00:16:32 +00:00
|
|
|
# These subdirectories require installation due to binaries within them.
|
2002-01-11 17:20:43 +00:00
|
|
|
ifeq ($(VIDIX),yes)
|
|
|
|
SUBDIRS += libdha vidix
|
2002-01-07 09:28:22 +00:00
|
|
|
DO_MAKE = @ for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done
|
2002-01-11 17:20:43 +00:00
|
|
|
endif
|
2001-04-06 23:20:46 +00:00
|
|
|
|
2005-06-19 22:52:55 +00:00
|
|
|
SRCS_COMMON = asxparser.c \
|
|
|
|
codec-cfg.c \
|
|
|
|
cpudetect.c \
|
|
|
|
edl.c \
|
|
|
|
find_sub.c \
|
|
|
|
m_config.c \
|
|
|
|
m_option.c \
|
|
|
|
m_struct.c \
|
|
|
|
parser-cfg.c \
|
|
|
|
playtree.c \
|
|
|
|
playtreeparser.c \
|
|
|
|
spudec.c \
|
|
|
|
sub_cc.c \
|
|
|
|
subreader.c \
|
|
|
|
vobsub.c \
|
|
|
|
|
|
|
|
SRCS_MENCODER = mencoder.c \
|
|
|
|
mp_msg-mencoder.c \
|
|
|
|
$(SRCS_COMMON) \
|
|
|
|
divx4_vbr.c \
|
|
|
|
libvo/aclib.c \
|
|
|
|
libvo/font_load.c \
|
|
|
|
libvo/font_load_ft.c \
|
|
|
|
libvo/osd.c \
|
|
|
|
libvo/sub.c \
|
|
|
|
parser-mecmd.c \
|
|
|
|
xvid_vbr.c \
|
|
|
|
|
|
|
|
SRCS_MPLAYER = mplayer.c \
|
|
|
|
mp_msg.c \
|
|
|
|
$(SRCS_COMMON) \
|
|
|
|
mixer.c \
|
|
|
|
parser-mpcmd.c \
|
|
|
|
subopt-helper.c \
|
2001-10-31 23:30:26 +00:00
|
|
|
|
2002-09-22 13:04:19 +00:00
|
|
|
ifeq ($(UNRARLIB),yes)
|
|
|
|
SRCS_COMMON += unrarlib.c
|
|
|
|
endif
|
|
|
|
|
2001-12-10 00:54:25 +00:00
|
|
|
OBJS_MENCODER = $(SRCS_MENCODER:.c=.o)
|
2001-10-31 23:30:26 +00:00
|
|
|
OBJS_MPLAYER = $(SRCS_MPLAYER:.c=.o)
|
2001-11-17 11:26:26 +00:00
|
|
|
|
2005-06-19 22:52:55 +00:00
|
|
|
VO_LIBS = $(AA_LIB) \
|
|
|
|
$(X_LIB) \
|
|
|
|
$(SDL_LIB) \
|
|
|
|
$(GGI_LIB) \
|
|
|
|
$(MP1E_LIB) \
|
|
|
|
$(MLIB_LIB) \
|
|
|
|
$(SVGA_LIB) \
|
|
|
|
$(DIRECTFB_LIB) \
|
|
|
|
$(CACA_LIB) \
|
2005-08-18 11:26:04 +00:00
|
|
|
$(VESA_LIB) \
|
2005-06-19 22:52:55 +00:00
|
|
|
|
|
|
|
AO_LIBS = $(ARTS_LIB) \
|
|
|
|
$(ESD_LIB) \
|
|
|
|
$(JACK_LIB) \
|
|
|
|
$(NAS_LIB) \
|
|
|
|
$(SGIAUDIO_LIB) \
|
|
|
|
$(POLYP_LIB) \
|
|
|
|
|
|
|
|
CODEC_LIBS = $(AV_LIB) \
|
|
|
|
$(FAME_LIB) \
|
|
|
|
$(MAD_LIB) \
|
|
|
|
$(VORBIS_LIB) \
|
|
|
|
$(THEORA_LIB) \
|
|
|
|
$(FAAD_LIB) \
|
|
|
|
$(LIBLZO_LIB) \
|
|
|
|
$(DECORE_LIB) \
|
|
|
|
$(XVID_LIB) \
|
|
|
|
$(DTS_LIB) \
|
|
|
|
$(PNG_LIB) \
|
|
|
|
$(Z_LIB) \
|
|
|
|
$(JPEG_LIB) \
|
|
|
|
$(ALSA_LIB) \
|
|
|
|
$(XMMS_LIB) \
|
|
|
|
$(X264_LIB) \
|
2005-07-10 17:14:12 +00:00
|
|
|
$(MUSEPACK_LIB) \
|
2005-06-19 22:52:55 +00:00
|
|
|
|
|
|
|
COMMON_LIBS = libmpcodecs/libmpcodecs.a \
|
|
|
|
$(W32_LIB) \
|
|
|
|
$(DS_LIB) \
|
|
|
|
libaf/libaf.a \
|
|
|
|
libmpdemux/libmpdemux.a \
|
|
|
|
input/libinput.a \
|
|
|
|
postproc/libswscale.a \
|
|
|
|
osdep/libosdep.a \
|
|
|
|
$(DVDREAD_LIB) \
|
|
|
|
$(CODEC_LIBS) \
|
|
|
|
$(FREETYPE_LIB) \
|
|
|
|
$(TERMCAP_LIB) \
|
|
|
|
$(CDPARANOIA_LIB) \
|
|
|
|
$(MPLAYER_NETWORK_LIB) \
|
|
|
|
$(WIN32_LIB) \
|
|
|
|
$(GIF_LIB) \
|
|
|
|
$(MACOSX_FRAMEWORKS) \
|
|
|
|
$(SMBSUPPORT_LIB) \
|
|
|
|
$(FRIBIDI_LIB) \
|
|
|
|
$(FONTCONFIG_LIB) \
|
|
|
|
$(ENCA_LIB) \
|
|
|
|
|
|
|
|
CFLAGS = $(OPTFLAGS) -I. \
|
|
|
|
$(CACA_INC) \
|
|
|
|
$(CDPARANOIA_INC) \
|
|
|
|
$(DVB_INC) \
|
|
|
|
$(EXTRA_INC) \
|
|
|
|
$(FONTCONFIG_INC) \
|
|
|
|
$(FREETYPE_INC) \
|
|
|
|
$(FRIBIDI_INC) \
|
|
|
|
$(SDL_INC) \
|
|
|
|
$(X11_INC) \
|
|
|
|
$(XVID_INC) \
|
2005-08-01 20:16:56 +00:00
|
|
|
$(LIBAV_INC) \
|
2005-06-19 22:52:55 +00:00
|
|
|
|
|
|
|
#CFLAGS += -Wall
|
2001-11-17 11:26:26 +00:00
|
|
|
|
2004-09-21 19:50:54 +00:00
|
|
|
ifeq ($(TOOLAME),yes)
|
|
|
|
CFLAGS += $(TOOLAME_EXTRAFLAGS)
|
|
|
|
CODEC_LIBS += $(TOOLAME_LIB)
|
|
|
|
endif
|
2001-10-31 23:30:26 +00:00
|
|
|
|
2005-05-07 14:50:14 +00:00
|
|
|
ifeq ($(TWOLAME),yes)
|
|
|
|
CODEC_LIBS += $(TWOLAME_LIB)
|
|
|
|
endif
|
|
|
|
|
2005-04-25 07:07:57 +00:00
|
|
|
ifeq ($(FAAC),yes)
|
|
|
|
CODEC_LIBS += $(FAAC_LIB)
|
|
|
|
endif
|
|
|
|
|
2005-06-20 14:35:00 +00:00
|
|
|
PARTS = libmpdemux \
|
|
|
|
libmpcodecs \
|
2005-08-11 22:30:05 +00:00
|
|
|
libavutil \
|
2005-06-20 14:35:00 +00:00
|
|
|
libavcodec \
|
|
|
|
libavformat \
|
|
|
|
libao2 \
|
|
|
|
osdep \
|
|
|
|
postproc \
|
|
|
|
input \
|
|
|
|
libvo \
|
|
|
|
libaf \
|
|
|
|
|
2004-10-07 09:31:16 +00:00
|
|
|
ifeq ($(MP3LIB),yes)
|
|
|
|
PARTS += mp3lib
|
|
|
|
endif
|
|
|
|
ifeq ($(LIBA52),yes)
|
|
|
|
PARTS += liba52
|
|
|
|
endif
|
|
|
|
ifeq ($(LIBMPEG2),yes)
|
|
|
|
PARTS += libmpeg2
|
|
|
|
endif
|
2003-09-21 17:05:51 +00:00
|
|
|
ifeq ($(INTERNAL_FAAD),yes)
|
|
|
|
COMMON_LIBS += libfaad2/libfaad2.a
|
|
|
|
PARTS += libfaad2
|
|
|
|
endif
|
2002-01-11 17:20:43 +00:00
|
|
|
ifeq ($(VIDIX),yes)
|
|
|
|
PARTS += libdha vidix
|
|
|
|
endif
|
2002-09-22 13:04:19 +00:00
|
|
|
ifeq ($(FAME),yes)
|
|
|
|
PARTS += libfame
|
|
|
|
endif
|
|
|
|
ifeq ($(DVDKIT2),yes)
|
|
|
|
PARTS += libmpdvdkit2
|
|
|
|
else
|
|
|
|
ifeq ($(DVDKIT),yes)
|
|
|
|
PARTS += libmpdvdkit
|
|
|
|
endif
|
|
|
|
endif
|
2001-09-27 17:40:43 +00:00
|
|
|
ifeq ($(GUI),yes)
|
|
|
|
PARTS += Gui
|
|
|
|
endif
|
2001-08-14 18:28:56 +00:00
|
|
|
ifneq ($(W32_LIB),)
|
2002-11-26 22:55:32 +00:00
|
|
|
PARTS += loader loader/dshow loader/dmo
|
2001-07-12 15:35:52 +00:00
|
|
|
endif
|
2002-11-14 23:49:05 +00:00
|
|
|
ifeq ($(LIBMENU),yes)
|
|
|
|
PARTS += libmenu
|
|
|
|
endif
|
2004-12-30 12:11:32 +00:00
|
|
|
ifeq ($(TREMOR),yes)
|
|
|
|
PARTS += tremor
|
|
|
|
endif
|
2002-09-22 13:04:19 +00:00
|
|
|
|
2001-10-05 13:39:43 +00:00
|
|
|
ALL_PRG = $(PRG)
|
2001-11-23 00:21:51 +00:00
|
|
|
ifeq ($(MENCODER),yes)
|
|
|
|
ALL_PRG += $(PRG_MENCODER)
|
|
|
|
endif
|
2001-07-12 15:35:52 +00:00
|
|
|
|
2005-06-19 22:52:55 +00:00
|
|
|
COMMON_DEPS = $(W32_DEP) \
|
|
|
|
$(DS_DEP) \
|
|
|
|
$(MP1E_DEP) \
|
|
|
|
$(AV_DEP) \
|
|
|
|
libmpdemux/libmpdemux.a \
|
|
|
|
libmpcodecs/libmpcodecs.a \
|
|
|
|
libao2/libao2.a \
|
|
|
|
osdep/libosdep.a \
|
|
|
|
postproc/libswscale.a \
|
|
|
|
input/libinput.a \
|
|
|
|
libvo/libvo.a \
|
|
|
|
libaf/libaf.a \
|
2001-12-10 00:54:25 +00:00
|
|
|
|
2004-10-07 09:31:16 +00:00
|
|
|
ifeq ($(MP3LIB),yes)
|
|
|
|
COMMON_DEPS += mp3lib/libMP3.a
|
|
|
|
COMMON_LIBS += mp3lib/libMP3.a
|
|
|
|
endif
|
|
|
|
ifeq ($(LIBA52),yes)
|
|
|
|
COMMON_DEPS += liba52/liba52.a
|
|
|
|
COMMON_LIBS += liba52/liba52.a
|
|
|
|
endif
|
|
|
|
ifeq ($(LIBMPEG2),yes)
|
|
|
|
COMMON_DEPS += libmpeg2/libmpeg2.a
|
|
|
|
COMMON_LIBS += libmpeg2/libmpeg2.a
|
|
|
|
endif
|
2003-09-21 17:05:51 +00:00
|
|
|
ifeq ($(INTERNAL_FAAD),yes)
|
|
|
|
COMMON_DEPS += libfaad2/libfaad2.a
|
|
|
|
endif
|
2004-12-30 12:11:32 +00:00
|
|
|
ifeq ($(TREMOR),yes)
|
|
|
|
COMMON_DEPS += tremor/libvorbisidec.a
|
|
|
|
COMMON_LIBS += tremor/libvorbisidec.a
|
|
|
|
endif
|
2002-01-11 17:20:43 +00:00
|
|
|
ifeq ($(VIDIX),yes)
|
|
|
|
COMMON_DEPS += libdha/libdha.so vidix/libvidix.a
|
|
|
|
endif
|
2002-04-26 19:11:13 +00:00
|
|
|
ifeq ($(FAME),yes)
|
|
|
|
COMMON_DEPS += libfame/libfame.a
|
|
|
|
endif
|
2002-08-17 09:34:53 +00:00
|
|
|
ifeq ($(DVDKIT2),yes)
|
|
|
|
ifeq ($(DVDKIT_SHARED),yes)
|
|
|
|
COMMON_DEPS += libmpdvdkit2/libmpdvdkit.so
|
|
|
|
else
|
|
|
|
COMMON_DEPS += libmpdvdkit2/libmpdvdkit.a
|
|
|
|
endif
|
|
|
|
endif
|
2002-04-21 21:18:28 +00:00
|
|
|
|
2002-09-22 13:04:19 +00:00
|
|
|
ifeq ($(GUI),yes)
|
|
|
|
COMMON_DEPS += Gui/libgui.a
|
|
|
|
GUI_LIBS = Gui/libgui.a
|
|
|
|
endif
|
|
|
|
|
|
|
|
.SUFFIXES: .cc .c .o
|
|
|
|
|
2004-06-26 15:35:35 +00:00
|
|
|
#.PHONY: $(COMMON_DEPS)
|
2002-09-22 13:04:19 +00:00
|
|
|
|
2003-01-11 10:35:31 +00:00
|
|
|
all: version.h $(ALL_PRG)
|
2002-09-22 13:04:19 +00:00
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
2002-10-01 06:45:08 +00:00
|
|
|
libaf/libaf.a:
|
|
|
|
$(MAKE) -C libaf
|
|
|
|
|
2002-08-17 09:34:53 +00:00
|
|
|
libmpdvdkit2/libmpdvdkit.a:
|
|
|
|
$(MAKE) -C libmpdvdkit2
|
2002-08-29 01:49:15 +00:00
|
|
|
|
2002-08-17 09:34:53 +00:00
|
|
|
libmpdvdkit2/libmpdvdkit.so:
|
|
|
|
$(MAKE) -C libmpdvdkit2 libmpdvdkit.so
|
2002-08-29 01:49:15 +00:00
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
loader/libloader.a:
|
|
|
|
$(MAKE) -C loader
|
|
|
|
|
2002-03-16 18:43:10 +00:00
|
|
|
libfame/libfame.a:
|
|
|
|
$(MAKE) -C libfame
|
|
|
|
|
2001-10-20 18:49:08 +00:00
|
|
|
libmpdemux/libmpdemux.a:
|
|
|
|
$(MAKE) -C libmpdemux
|
|
|
|
|
2002-03-10 00:15:21 +00:00
|
|
|
libmpcodecs/libmpcodecs.a:
|
|
|
|
$(MAKE) -C libmpcodecs
|
|
|
|
|
2001-12-10 22:40:14 +00:00
|
|
|
loader/dshow/libDS_Filter.a:
|
|
|
|
$(MAKE) -C loader/dshow
|
|
|
|
|
2002-11-26 22:55:32 +00:00
|
|
|
loader/dmo/libDMO_Filter.a:
|
|
|
|
$(MAKE) -C loader/dmo
|
|
|
|
|
2005-08-01 20:16:56 +00:00
|
|
|
libavutil/libavutil.a:
|
|
|
|
$(MAKE) -C libavutil LIBPREF=lib LIBSUF=.a
|
|
|
|
|
2001-07-06 03:22:14 +00:00
|
|
|
libavcodec/libavcodec.a:
|
2003-01-11 23:08:11 +00:00
|
|
|
$(MAKE) -C libavcodec LIBPREF=lib LIBSUF=.a
|
2001-07-06 03:22:14 +00:00
|
|
|
|
2004-04-11 14:26:04 +00:00
|
|
|
libavformat/libavformat.a:
|
|
|
|
$(MAKE) -C libavformat LIBPREF=lib LIBSUF=.a
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
libmpeg2/libmpeg2.a:
|
|
|
|
$(MAKE) -C libmpeg2
|
|
|
|
|
|
|
|
libvo/libvo.a:
|
|
|
|
$(MAKE) -C libvo
|
|
|
|
|
2001-06-04 21:00:47 +00:00
|
|
|
libao2/libao2.a:
|
2001-06-02 23:30:26 +00:00
|
|
|
$(MAKE) -C libao2
|
|
|
|
|
2001-12-09 17:48:36 +00:00
|
|
|
liba52/liba52.a:
|
|
|
|
$(MAKE) -C liba52
|
|
|
|
|
2003-08-30 22:31:45 +00:00
|
|
|
libfaad2/libfaad2.a:
|
|
|
|
$(MAKE) -C libfaad2
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
mp3lib/libMP3.a:
|
|
|
|
$(MAKE) -C mp3lib
|
|
|
|
|
2004-12-30 12:11:32 +00:00
|
|
|
tremor/libvorbisidec.a:
|
|
|
|
$(MAKE) -C tremor
|
|
|
|
|
2002-01-07 09:28:22 +00:00
|
|
|
libdha/libdha.so:
|
|
|
|
$(MAKE) -C libdha
|
|
|
|
|
|
|
|
vidix/libvidix.a:
|
|
|
|
$(MAKE) -C vidix
|
|
|
|
|
2001-09-27 17:40:43 +00:00
|
|
|
Gui/libgui.a:
|
|
|
|
$(MAKE) -C Gui
|
2001-05-08 12:17:03 +00:00
|
|
|
|
2003-02-09 20:18:23 +00:00
|
|
|
osdep/libosdep.a:
|
|
|
|
$(MAKE) -C osdep
|
2001-10-24 07:34:41 +00:00
|
|
|
|
2002-10-28 19:31:04 +00:00
|
|
|
postproc/libswscale.a:
|
|
|
|
$(MAKE) -C postproc
|
|
|
|
|
2002-01-30 12:46:03 +00:00
|
|
|
input/libinput.a:
|
|
|
|
$(MAKE) -C input
|
|
|
|
|
2002-11-14 23:49:05 +00:00
|
|
|
libmenu/libmenu.a:
|
|
|
|
$(MAKE) -C libmenu
|
|
|
|
|
2003-03-29 14:37:23 +00:00
|
|
|
libavcodec/libpostproc/libpostproc.so:
|
|
|
|
$(MAKE) -C libavcodec/libpostproc
|
|
|
|
|
2002-09-22 13:04:19 +00:00
|
|
|
MPLAYER_DEP = $(OBJS_MPLAYER) $(COMMON_DEPS)
|
2002-11-14 23:49:05 +00:00
|
|
|
|
|
|
|
ifeq ($(LIBMENU),yes)
|
|
|
|
MPLAYER_DEP += libmenu/libmenu.a
|
|
|
|
MENU_LIBS = libmenu/libmenu.a
|
|
|
|
PARTS += libmenu
|
|
|
|
else
|
|
|
|
MENU_LIBS =
|
|
|
|
endif
|
|
|
|
|
2004-06-26 15:35:35 +00:00
|
|
|
MENCODER_DEP = $(OBJS_MENCODER) $(COMMON_DEPS) libmpcodecs/libmpencoders.a
|
2001-10-31 23:30:26 +00:00
|
|
|
|
2002-01-11 17:20:43 +00:00
|
|
|
ifeq ($(VIDIX),yes)
|
2002-10-19 17:31:36 +00:00
|
|
|
VIDIX_LIBS = vidix/libvidix.a
|
|
|
|
else
|
|
|
|
VIDIX_LIBS =
|
2002-01-11 17:20:43 +00:00
|
|
|
endif
|
2002-01-07 09:28:22 +00:00
|
|
|
|
2004-04-13 11:22:37 +00:00
|
|
|
ifeq ($(TARGET_WIN32),yes)
|
2004-06-25 19:21:17 +00:00
|
|
|
OBJS_MPLAYER += osdep/mplayer-rc.o
|
2004-04-13 11:22:37 +00:00
|
|
|
endif
|
|
|
|
|
2005-06-19 22:52:55 +00:00
|
|
|
LIBS_MPLAYER = libvo/libvo.a \
|
|
|
|
libao2/libao2.a \
|
|
|
|
$(MENU_LIBS) \
|
|
|
|
$(VIDIX_LIBS) \
|
|
|
|
$(GUI_LIBS) \
|
|
|
|
$(COMMON_LIBS) \
|
|
|
|
$(GTK_LIBS) \
|
|
|
|
$(VO_LIBS) \
|
|
|
|
$(AO_LIBS) \
|
|
|
|
$(EXTRA_LIB)\
|
|
|
|
$(LIRC_LIB) \
|
|
|
|
$(LIRCC_LIB) \
|
|
|
|
$(STATIC_LIB) \
|
|
|
|
$(ARCH_LIB) \
|
|
|
|
$(I18NLIBS) \
|
|
|
|
$(MATH_LIB) \
|
|
|
|
|
2001-07-13 16:15:29 +00:00
|
|
|
$(PRG): $(MPLAYER_DEP)
|
2004-04-13 11:22:37 +00:00
|
|
|
ifeq ($(TARGET_WIN32),yes)
|
2004-06-25 19:21:17 +00:00
|
|
|
windres -o osdep/mplayer-rc.o osdep/mplayer.rc
|
2004-04-13 11:22:37 +00:00
|
|
|
endif
|
2005-06-19 22:52:55 +00:00
|
|
|
$(CC) $(CFLAGS) -o $(PRG) $(OBJS_MPLAYER) $(LIBS_MPLAYER)
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2002-11-13 17:51:43 +00:00
|
|
|
mplayer.exe.spec.c: libmpcodecs/libmpcodecs.a
|
|
|
|
winebuild -fPIC -o mplayer.exe.spec.c -exe mplayer.exe -mcui \
|
|
|
|
libmpcodecs/ad_qtaudio.o libmpcodecs/vd_qtvideo.o \
|
|
|
|
-L/usr/local/lib/wine -lkernel32
|
|
|
|
|
|
|
|
mplayer.exe.so: $(MPLAYER_DEP) mplayer.exe.spec.c
|
2004-10-11 19:26:13 +00:00
|
|
|
$(CC) $(CFLAGS) -Wall -shared -Wl,-rpath,/usr/local/lib -Wl,-Bsymbolic -o mplayer.exe.so $(OBJS_MPLAYER) mplayer.exe.spec.c libvo/libvo.a libao2/libao2.a $(MENU_LIBS) $(VIDIX_LIBS) $(GUI_LIBS) $(COMMON_LIBS) $(GTK_LIBS) $(VO_LIBS) $(AO_LIBS) $(EXTRA_LIB) $(LIRC_LIB) $(LIRCC_LIB) $(STATIC_LIB) $(ARCH_LIB) -lwine $(MATH_LIB)
|
2002-11-13 17:51:43 +00:00
|
|
|
|
2002-10-31 23:26:35 +00:00
|
|
|
mplayer_wine.so: $(MPLAYER_DEP)
|
2004-10-11 19:26:13 +00:00
|
|
|
$(CC) $(CFLAGS) -shared -Wl,-Bsymbolic -o mplayer_wine.so mplayer_wine.spec.c $(OBJS_MPLAYER) libvo/libvo.a libao2/libao2.a $(MENU_LIBS) $(VIDIX_LIBS) $(GUI_LIBS) $(COMMON_LIBS) $(GTK_LIBS) $(VO_LIBS) $(AO_LIBS) $(EXTRA_LIB) $(LIRC_LIB) $(LIRCC_LIB) $(STATIC_LIB) -lwine $(ARCH_LIB) $(MATH_LIB)
|
2002-10-31 23:26:35 +00:00
|
|
|
|
2001-11-23 00:21:51 +00:00
|
|
|
ifeq ($(MENCODER),yes)
|
2005-06-19 22:52:55 +00:00
|
|
|
LIBS_MENCODER = libmpcodecs/libmpencoders.a \
|
|
|
|
$(ENCORE_LIB) \
|
|
|
|
$(COMMON_LIBS) \
|
|
|
|
$(EXTRA_LIB) \
|
|
|
|
$(MLIB_LIB) \
|
|
|
|
$(LIRC_LIB) \
|
|
|
|
$(LIRCC_LIB) \
|
|
|
|
$(ARCH_LIB) \
|
|
|
|
$(I18NLIBS) \
|
|
|
|
$(MATH_LIB) \
|
|
|
|
|
2001-10-31 23:30:26 +00:00
|
|
|
$(PRG_MENCODER): $(MENCODER_DEP)
|
2005-06-19 22:52:55 +00:00
|
|
|
$(CC) $(CFLAGS) -o $(PRG_MENCODER) $(OBJS_MENCODER) $(LIBS_MENCODER)
|
2001-11-23 00:21:51 +00:00
|
|
|
endif
|
2001-10-31 23:30:26 +00:00
|
|
|
|
2003-12-10 12:03:54 +00:00
|
|
|
codecs.conf.h: $(PRG_CFG) etc/codecs.conf
|
2002-12-15 23:45:19 +00:00
|
|
|
./$(PRG_CFG) ./etc/codecs.conf > $@
|
|
|
|
|
|
|
|
codec-cfg.o: codecs.conf.h
|
|
|
|
|
2002-06-29 00:16:32 +00:00
|
|
|
# Every mplayer dependency depends on version.h, to force building version.h
|
|
|
|
# first (in serial mode) before any other of the dependencies for a parallel make
|
2001-07-13 16:15:29 +00:00
|
|
|
# run. This is necessary, because the make rule for version.h removes objects
|
|
|
|
# in a recursive "make distclean" and we must wait for this "make distclean" to
|
2002-06-29 00:16:32 +00:00
|
|
|
# finish before we can start building new object files.
|
2004-10-20 14:23:33 +00:00
|
|
|
# help_mp.h is also required by a lot of files, so force generating it early.
|
|
|
|
$(MPLAYER_DEP): version.h help_mp.h
|
|
|
|
$(MENCODER_DEP): version.h help_mp.h
|
2001-07-13 16:15:29 +00:00
|
|
|
|
2001-07-28 05:36:45 +00:00
|
|
|
$(PRG_CFG): version.h codec-cfg.c codec-cfg.h
|
2005-04-16 20:18:12 +00:00
|
|
|
$(HOST_CC) $(HOST_CFLAGS) -I. -g codec-cfg.c mp_msg.c -o $(PRG_CFG) -DCODECS2HTML $(EXTRA_LIB) $(EXTRA_INC) $(I18NLIBS)
|
2001-04-06 23:20:46 +00:00
|
|
|
|
2001-10-05 13:39:43 +00:00
|
|
|
install: $(ALL_PRG)
|
2002-01-11 17:20:43 +00:00
|
|
|
ifeq ($(VIDIX),yes)
|
2002-01-07 09:28:22 +00:00
|
|
|
$(DO_MAKE)
|
2002-01-11 17:20:43 +00:00
|
|
|
endif
|
2001-10-11 23:35:52 +00:00
|
|
|
if test ! -d $(BINDIR) ; then mkdir -p $(BINDIR) ; fi
|
2002-05-30 14:26:35 +00:00
|
|
|
$(INSTALL) -m 755 $(INSTALLSTRIP) $(PRG) $(BINDIR)/$(PRG)
|
2001-10-05 13:39:43 +00:00
|
|
|
ifeq ($(GUI),yes)
|
2002-05-19 23:50:32 +00:00
|
|
|
-ln -sf $(PRG) $(BINDIR)/gmplayer
|
2001-10-05 13:39:43 +00:00
|
|
|
endif
|
2001-12-16 11:32:59 +00:00
|
|
|
if test ! -d $(MANDIR)/man1 ; then mkdir -p $(MANDIR)/man1; fi
|
2004-08-05 00:14:16 +00:00
|
|
|
for i in $(MAN_LANG); do \
|
2003-02-20 23:32:47 +00:00
|
|
|
if test "$$i" = en ; then \
|
2003-10-19 20:20:45 +00:00
|
|
|
$(INSTALL) -c -m 644 DOCS/man/en/mplayer.1 $(MANDIR)/man1/mplayer.1 ; \
|
2003-02-20 23:32:47 +00:00
|
|
|
else \
|
|
|
|
mkdir -p $(MANDIR)/$$i/man1 ; \
|
2003-10-19 20:20:45 +00:00
|
|
|
$(INSTALL) -c -m 644 DOCS/man/$$i/mplayer.1 $(MANDIR)/$$i/man1/mplayer.1 ; \
|
2003-02-17 13:06:03 +00:00
|
|
|
fi ; \
|
2003-02-20 23:32:47 +00:00
|
|
|
done
|
2001-11-23 00:21:51 +00:00
|
|
|
ifeq ($(MENCODER),yes)
|
2002-05-30 14:26:35 +00:00
|
|
|
$(INSTALL) -m 755 $(INSTALLSTRIP) $(PRG_MENCODER) $(BINDIR)/$(PRG_MENCODER)
|
2004-08-05 00:14:16 +00:00
|
|
|
for i in $(MAN_LANG); do \
|
2003-02-20 23:32:47 +00:00
|
|
|
if test "$$i" = en ; then \
|
|
|
|
ln -sf mplayer.1 $(MANDIR)/man1/mencoder.1 ; \
|
|
|
|
else \
|
|
|
|
ln -sf mplayer.1 $(MANDIR)/$$i/man1/mencoder.1 ; \
|
2003-02-17 13:06:03 +00:00
|
|
|
fi ; \
|
2003-02-20 23:32:47 +00:00
|
|
|
done
|
2001-11-23 00:21:51 +00:00
|
|
|
endif
|
2001-12-25 22:00:15 +00:00
|
|
|
@if test ! -d $(DATADIR) ; then mkdir -p $(DATADIR) ; fi
|
|
|
|
@if test ! -d $(DATADIR)/font ; then mkdir -p $(DATADIR)/font ; fi
|
|
|
|
@if test ! -f $(DATADIR)/font/font.desc ; then \
|
|
|
|
echo "*** Download font at http://www.mplayerhq.hu/homepage/dload.html" ; \
|
|
|
|
echo "*** for OSD/Subtitles support and extract to $(DATADIR)/font/" ; \
|
|
|
|
fi
|
|
|
|
ifeq ($(GUI),yes)
|
|
|
|
@if test ! -d $(DATADIR)/Skin ; then mkdir -p $(DATADIR)/Skin ; fi
|
|
|
|
@echo "*** Download skin(s) at http://www.mplayerhq.hu/homepage/dload.html"
|
|
|
|
@echo "*** for GUI, and extract to $(DATADIR)/Skin/"
|
2004-10-18 09:19:05 +00:00
|
|
|
@if test ! -d $(prefix)/share/pixmaps ; then mkdir -p $(prefix)/share/pixmaps ; fi
|
|
|
|
$(INSTALL) -m 644 Gui/mplayer/pixmaps/mplayer-desktop.xpm $(prefix)/share/pixmaps/mplayer-desktop.xpm
|
|
|
|
@if test ! -d $(prefix)/share/applications ; then mkdir -p $(prefix)/share/applications ; fi
|
|
|
|
$(INSTALL) -m 644 etc/mplayer.desktop $(prefix)/share/applications/mplayer.desktop
|
2001-12-25 22:00:15 +00:00
|
|
|
endif
|
|
|
|
@if test ! -d $(CONFDIR) ; then mkdir -p $(CONFDIR) ; fi
|
2003-07-28 02:02:20 +00:00
|
|
|
@if test -f $(CONFDIR)/codecs.conf ; then mv -f $(CONFDIR)/codecs.conf $(CONFDIR)/codecs.conf.old ; fi
|
2002-04-24 20:08:06 +00:00
|
|
|
ifeq ($(DVDKIT_SHARED),yes)
|
2002-10-06 18:27:02 +00:00
|
|
|
ifeq ($(DVDKIT2),yes)
|
2002-04-24 20:08:06 +00:00
|
|
|
if test ! -d $(LIBDIR) ; then mkdir -p $(LIBDIR) ; fi
|
2002-09-01 11:39:37 +00:00
|
|
|
$(INSTALL) -m 755 $(INSTALLSTRIP) libmpdvdkit2/libmpdvdkit.so $(LIBDIR)/libmpdvdkit.so
|
2002-10-06 18:27:02 +00:00
|
|
|
else
|
|
|
|
ifeq ($(DVDKIT),yes)
|
|
|
|
if test ! -d $(LIBDIR) ; then mkdir -p $(LIBDIR) ; fi
|
|
|
|
$(INSTALL) -m 755 $(INSTALLSTRIP) libmpdvdkit/libmpdvdkit.so $(LIBDIR)/libmpdvdkit.so
|
|
|
|
endif
|
2002-04-24 20:08:06 +00:00
|
|
|
endif
|
|
|
|
endif
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-10-22 22:46:38 +00:00
|
|
|
uninstall:
|
2001-12-16 11:32:59 +00:00
|
|
|
-rm -f $(BINDIR)/$(PRG) $(BINDIR)/gmplayer $(MANDIR)/man1/mplayer.1
|
|
|
|
-rm -f $(BINDIR)/$(PRG_MENCODER) $(MANDIR)/man1/mencoder.1
|
2004-10-18 09:19:05 +00:00
|
|
|
-rm -f $(prefix)/share/pixmaps/mplayer-desktop.xpm
|
|
|
|
-rm -f $(prefix)/share/applications/mplayer.desktop
|
2004-10-20 14:20:07 +00:00
|
|
|
-rm -f $(LIBDIR)/libmpdvdkit.so
|
|
|
|
for l in $(MAN_LANG); do \
|
|
|
|
if test "i$$l" != "en"; then \
|
|
|
|
-rm -f $(MANDIR)/$$l/man1/mplayer.1 $(MANDIR)/$$l/man1/mencoder.1 \
|
|
|
|
-rm -f $(MANDIR)/$$l/man1/gmplayer.1 \
|
|
|
|
fi \
|
|
|
|
done
|
|
|
|
ifeq ($(VIDIX),yes)
|
|
|
|
$(DO_MAKE)
|
|
|
|
endif
|
2001-10-22 22:46:38 +00:00
|
|
|
@echo "Uninstall completed"
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
clean:
|
2002-12-15 23:45:19 +00:00
|
|
|
-rm -f *.o *~ $(OBJS) codecs.conf.h
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2004-08-23 00:25:19 +00:00
|
|
|
distclean: doxygen_clean
|
2003-12-08 21:34:05 +00:00
|
|
|
-rm -f *~ $(PRG) $(PRG_MENCODER) $(PRG_CFG) $(OBJS)
|
2004-10-26 06:36:38 +00:00
|
|
|
-rm -f *.o *.a .depend configure.log codecs.conf.h help_mp.h
|
2001-07-28 05:36:45 +00:00
|
|
|
@for a in $(PARTS); do $(MAKE) -C $$a distclean; done
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2002-08-07 21:51:10 +00:00
|
|
|
strip:
|
|
|
|
strip -s $(ALL_PRG)
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
dep: depend
|
|
|
|
|
2004-10-20 14:23:33 +00:00
|
|
|
depend: help_mp.h
|
2002-05-20 23:27:01 +00:00
|
|
|
./version.sh `$(CC) -dumpversion`
|
2002-12-15 23:45:19 +00:00
|
|
|
$(CC) -MM $(CFLAGS) -DCODECS2HTML mplayer.c mencoder.c $(SRCS_MPLAYER) $(SRCS_MENCODER) 1>.depend
|
2001-07-28 05:36:45 +00:00
|
|
|
@for a in $(PARTS); do $(MAKE) -C $$a dep; done
|
2001-03-02 22:18:34 +00:00
|
|
|
|
2002-08-10 18:45:31 +00:00
|
|
|
# ./configure must be run if it changed in CVS
|
|
|
|
config.h: configure
|
|
|
|
@echo "############################################################"
|
|
|
|
@echo "####### Please run ./configure again - it's changed! #######"
|
|
|
|
@echo "############################################################"
|
|
|
|
ifeq ($(wildcard .developer),)
|
|
|
|
@exit 1
|
|
|
|
endif
|
|
|
|
|
2001-11-16 20:54:53 +00:00
|
|
|
# do not rebuild after cvs commits if .developer file is present!
|
|
|
|
|
2001-04-15 20:31:58 +00:00
|
|
|
# rebuild at every config.h/config.mak change:
|
2002-04-17 21:51:18 +00:00
|
|
|
version.h:
|
2002-05-20 23:27:01 +00:00
|
|
|
./version.sh `$(CC) -dumpversion`
|
2001-11-16 20:54:53 +00:00
|
|
|
ifeq ($(wildcard .developer),)
|
2001-06-04 19:33:28 +00:00
|
|
|
$(MAKE) distclean
|
2001-11-16 20:54:53 +00:00
|
|
|
endif
|
2001-06-04 19:33:28 +00:00
|
|
|
$(MAKE) depend
|
2001-04-15 20:31:58 +00:00
|
|
|
|
2004-08-23 00:25:19 +00:00
|
|
|
doxygen:
|
|
|
|
doxygen DOCS/tech/Doxyfile
|
|
|
|
|
|
|
|
doxygen_clean:
|
|
|
|
-rm -rf DOCS/tech/doxygen
|
|
|
|
|
2004-10-20 14:23:33 +00:00
|
|
|
help_mp.h: help/help_mp-en.h $(HELP_FILE)
|
|
|
|
@echo '// WARNING! This is a generated file. Do NOT edit.' > help_mp.h
|
|
|
|
@echo '// See the help/ subdir for the editable files.' >> help_mp.h
|
2005-02-26 13:38:17 +00:00
|
|
|
ifeq ($(CHARSET),)
|
2004-10-20 14:23:33 +00:00
|
|
|
@echo '#include "$(HELP_FILE)"' >> help_mp.h
|
2005-02-26 13:38:17 +00:00
|
|
|
else
|
|
|
|
iconv -f `cat $(HELP_FILE).charset` -t $(CHARSET) "$(HELP_FILE)" >> help_mp.h
|
|
|
|
endif
|
2004-10-20 14:23:33 +00:00
|
|
|
|
|
|
|
ifneq ($(HELP_FILE),help/help_mp-en.h)
|
|
|
|
@echo "Adding untranslated messages to help_mp.h"
|
|
|
|
@echo '// untranslated messages from the English master file:' >> help_mp.h
|
|
|
|
@help/help_diff.sh $(HELP_FILE) < help/help_mp-en.h >> help_mp.h
|
|
|
|
endif
|
|
|
|
|
2002-04-17 21:51:18 +00:00
|
|
|
# rebuild at every CVS update or config/makefile change:
|
2001-11-16 20:54:53 +00:00
|
|
|
ifeq ($(wildcard .developer),)
|
2001-04-15 20:31:58 +00:00
|
|
|
ifneq ($(wildcard CVS/Entries),)
|
|
|
|
version.h: CVS/Entries
|
|
|
|
endif
|
2002-04-17 21:51:18 +00:00
|
|
|
version.h: config.h config.mak Makefile
|
2001-11-16 20:54:53 +00:00
|
|
|
endif
|
2001-04-15 20:31:58 +00:00
|
|
|
|
2002-08-29 02:11:33 +00:00
|
|
|
#
|
|
|
|
# include dependencies to get make to recurse into lib dirs,
|
|
|
|
# if the user desires such behavior
|
|
|
|
#
|
2002-08-29 02:20:00 +00:00
|
|
|
ifneq ($(wildcard .libdeps),)
|
2002-08-29 02:11:33 +00:00
|
|
|
include .libdeps
|
|
|
|
endif
|
|
|
|
|
2001-03-02 22:18:34 +00:00
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|