1 # LINUX Makefile made by A'rpi / Astral
2 # Some cleanup by LGB: * 'make -C dir' instead of 'cd dir;make;cd..'
3 # * for loops instead of linear sequence of make directories
4 # * some minor problems with make clean and distclean were corrected
11 # Do not strip the binaries at installation
12 ifeq ($(STRIPBINARIES
),yes
)
16 # These subdirectories require installation due to binaries within them.
18 SUBDIRS
+= libdha vidix
19 DO_MAKE
= @ for i in
$(SUBDIRS
); do
$(MAKE
) -C
$$i $@
; done
22 SRCS_COMMON
= cpudetect.c codec-cfg.c spudec.c playtree.c playtreeparser.c asxparser.c vobsub.c subreader.c sub_cc.c find_sub.c m_config.c m_option.c parser-cfg.c m_struct.c edl.c
23 SRCS_MENCODER
= mencoder.c mp_msg-mencoder.c
$(SRCS_COMMON
) libao2
/afmt.c divx4_vbr.c libvo
/aclib.c libvo
/osd.c libvo
/sub.c libvo
/font_load.c libvo
/font_load_ft.c xvid_vbr.c parser-mecmd.c
24 SRCS_MPLAYER
= mplayer.c mp_msg.c
$(SRCS_COMMON
) mixer.c parser-mpcmd.c
26 ifeq ($(UNRARLIB
),yes
)
27 SRCS_COMMON
+= unrarlib.c
30 OBJS_MENCODER
= $(SRCS_MENCODER
:.c
=.o
)
31 OBJS_MPLAYER
= $(SRCS_MPLAYER
:.c
=.o
)
33 VO_LIBS
= $(AA_LIB
) $(X_LIB
) $(SDL_LIB
) $(GGI_LIB
) $(MP1E_LIB
) $(MLIB_LIB
) $(SVGA_LIB
) $(DIRECTFB_LIB
) $(CACA_LIB
)
34 AO_LIBS
= $(ARTS_LIB
) $(ESD_LIB
) $(JACK_LIB
) $(NAS_LIB
) $(SGIAUDIO_LIB
) $(POLYP_LIB
)
35 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
)
36 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
)
38 CFLAGS
= $(OPTFLAGS
) -I.
$(FREETYPE_INC
) $(EXTRA_INC
) $(CDPARANOIA_INC
) $(SDL_INC
) $(X11_INC
) $(FRIBIDI_INC
) $(DVB_INC
) $(XVID_INC
) $(FONTCONFIG_INC
) $(CACA_INC
) # -Wall
40 CFLAGS
+= $(TOOLAME_EXTRAFLAGS
)
41 CODEC_LIBS
+= $(TOOLAME_LIB
)
44 PARTS
= libmpdemux libmpcodecs libavcodec libavformat libao2 drivers osdep postproc input libvo libaf
51 ifeq ($(LIBMPEG2
),yes
)
54 ifeq ($(INTERNAL_FAAD
),yes
)
55 COMMON_LIBS
+= libfaad2
/libfaad2.a
75 PARTS
+= loader loader
/dshow loader
/dmo
82 ifeq ($(MENCODER
),yes
)
83 ALL_PRG
+= $(PRG_MENCODER
)
86 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
89 COMMON_DEPS
+= mp3lib
/libMP3.a
90 COMMON_LIBS
+= mp3lib
/libMP3.a
93 COMMON_DEPS
+= liba52
/liba52.a
94 COMMON_LIBS
+= liba52
/liba52.a
96 ifeq ($(LIBMPEG2
),yes
)
97 COMMON_DEPS
+= libmpeg2
/libmpeg2.a
98 COMMON_LIBS
+= libmpeg2
/libmpeg2.a
100 ifeq ($(INTERNAL_FAAD
),yes
)
101 COMMON_DEPS
+= libfaad2
/libfaad2.a
104 COMMON_DEPS
+= libdha
/libdha.so vidix
/libvidix.a
107 COMMON_DEPS
+= libfame
/libfame.a
109 ifeq ($(DVDKIT2
),yes
)
110 ifeq ($(DVDKIT_SHARED
),yes
)
111 COMMON_DEPS
+= libmpdvdkit2
/libmpdvdkit.so
113 COMMON_DEPS
+= libmpdvdkit2
/libmpdvdkit.a
117 ifeq ($(SHARED_PP
),yes
)
118 COMMON_DEPS
+= libavcodec
/libpostproc
/libpostproc.so
119 COMMON_LIBS
+= libavcodec
/libpostproc
/libpostproc.so
123 COMMON_DEPS
+= Gui
/libgui.a
124 GUI_LIBS
= Gui
/libgui.a
129 #.PHONY: $(COMMON_DEPS)
131 all: version.h
$(ALL_PRG
)
134 $(CC
) -c
$(CFLAGS
) -o
$@
$<
139 libmpdvdkit2
/libmpdvdkit.a
:
140 $(MAKE
) -C libmpdvdkit2
142 libmpdvdkit2
/libmpdvdkit.so
:
143 $(MAKE
) -C libmpdvdkit2 libmpdvdkit.so
151 libmpdemux
/libmpdemux.a
:
152 $(MAKE
) -C libmpdemux
154 libmpcodecs
/libmpcodecs.a
:
155 $(MAKE
) -C libmpcodecs
157 loader
/dshow
/libDS_Filter.a
:
158 $(MAKE
) -C loader
/dshow
160 loader
/dmo
/libDMO_Filter.a
:
161 $(MAKE
) -C loader
/dmo
163 libavcodec
/libavcodec.a
:
164 $(MAKE
) -C libavcodec LIBPREF
=lib LIBSUF
=.a
166 libavformat
/libavformat.a
:
167 $(MAKE
) -C libavformat LIBPREF
=lib LIBSUF
=.a
199 postproc
/libswscale.a
:
208 libavcodec
/libpostproc
/libpostproc.so
:
209 $(MAKE
) -C libavcodec
/libpostproc
211 MPLAYER_DEP
= $(OBJS_MPLAYER
) $(COMMON_DEPS
)
213 ifeq ($(LIBMENU
),yes
)
214 MPLAYER_DEP
+= libmenu
/libmenu.a
215 MENU_LIBS
= libmenu
/libmenu.a
221 MENCODER_DEP
= $(OBJS_MENCODER
) $(COMMON_DEPS
) libmpcodecs
/libmpencoders.a
224 VIDIX_LIBS
= vidix
/libvidix.a
229 ifeq ($(TARGET_WIN32
),yes
)
230 OBJS_MPLAYER
+= osdep
/mplayer-rc.o
233 $(PRG
): $(MPLAYER_DEP
)
234 ifeq ($(TARGET_WIN32
),yes
)
235 windres
-o osdep
/mplayer-rc.o osdep
/mplayer.rc
237 $(CC
) $(CFLAGS
) -o
$(PRG
) $(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
) $(ARCH_LIB
) $(I18NLIBS
) $(MATH_LIB
)
239 mplayer.exe.spec.c
: libmpcodecs
/libmpcodecs.a
240 winebuild
-fPIC
-o mplayer.exe.spec.c
-exe mplayer.exe
-mcui \
241 libmpcodecs
/ad_qtaudio.o libmpcodecs
/vd_qtvideo.o \
242 -L
/usr
/local
/lib
/wine
-lkernel32
244 mplayer.exe.so
: $(MPLAYER_DEP
) mplayer.exe.spec.c
245 $(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
)
247 mplayer_wine.so
: $(MPLAYER_DEP
)
248 $(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
)
250 ifeq ($(MENCODER
),yes
)
251 $(PRG_MENCODER
): $(MENCODER_DEP
)
252 $(CC
) $(CFLAGS
) -o
$(PRG_MENCODER
) $(OBJS_MENCODER
) libmpcodecs
/libmpencoders.a
$(ENCORE_LIB
) $(COMMON_LIBS
) $(EXTRA_LIB
) $(MLIB_LIB
) $(LIRC_LIB
) $(LIRCC_LIB
) $(ARCH_LIB
) $(I18NLIBS
) $(MATH_LIB
)
255 codecs.conf.h
: $(PRG_CFG
) etc
/codecs.conf
256 .
/$(PRG_CFG
) .
/etc
/codecs.conf
> $@
258 codec-cfg.o
: codecs.conf.h
260 # Every mplayer dependency depends on version.h, to force building version.h
261 # first (in serial mode) before any other of the dependencies for a parallel make
262 # run. This is necessary, because the make rule for version.h removes objects
263 # in a recursive "make distclean" and we must wait for this "make distclean" to
264 # finish before we can start building new object files.
265 # help_mp.h is also required by a lot of files, so force generating it early.
266 $(MPLAYER_DEP
): version.h help_mp.h
267 $(MENCODER_DEP
): version.h help_mp.h
269 $(PRG_CFG
): version.h codec-cfg.c codec-cfg.h
270 $(HOST_CC
) $(CFLAGS
) -g codec-cfg.c mp_msg.c
-o
$(PRG_CFG
) -DCODECS2HTML
$(EXTRA_LIB
) $(I18NLIBS
)
276 if
test ! -d
$(BINDIR
) ; then mkdir
-p
$(BINDIR
) ; fi
277 $(INSTALL
) -m
755 $(INSTALLSTRIP
) $(PRG
) $(BINDIR
)/$(PRG
)
279 -ln
-sf
$(PRG
) $(BINDIR
)/gmplayer
281 if
test ! -d
$(MANDIR
)/man1
; then mkdir
-p
$(MANDIR
)/man1
; fi
282 for i in
$(MAN_LANG
); do \
283 if
test "$$i" = en
; then \
284 $(INSTALL
) -c
-m
644 DOCS
/man
/en
/mplayer
.1 $(MANDIR
)/man1
/mplayer
.1 ; \
286 mkdir
-p
$(MANDIR
)/$$i/man1
; \
287 $(INSTALL
) -c
-m
644 DOCS
/man
/$$i/mplayer
.1 $(MANDIR
)/$$i/man1
/mplayer
.1 ; \
290 ifeq ($(MENCODER
),yes
)
291 $(INSTALL
) -m
755 $(INSTALLSTRIP
) $(PRG_MENCODER
) $(BINDIR
)/$(PRG_MENCODER
)
292 for i in
$(MAN_LANG
); do \
293 if
test "$$i" = en
; then \
294 ln
-sf mplayer
.1 $(MANDIR
)/man1
/mencoder
.1 ; \
296 ln
-sf mplayer
.1 $(MANDIR
)/$$i/man1
/mencoder
.1 ; \
300 @if
test ! -d
$(DATADIR
) ; then mkdir
-p
$(DATADIR
) ; fi
301 @if
test ! -d
$(DATADIR
)/font
; then mkdir
-p
$(DATADIR
)/font
; fi
302 @if
test ! -f
$(DATADIR
)/font
/font.desc
; then \
303 echo
"*** Download font at http://www.mplayerhq.hu/homepage/dload.html" ; \
304 echo
"*** for OSD/Subtitles support and extract to $(DATADIR)/font/" ; \
307 @if
test ! -d
$(DATADIR
)/Skin
; then mkdir
-p
$(DATADIR
)/Skin
; fi
308 @echo
"*** Download skin(s) at http://www.mplayerhq.hu/homepage/dload.html"
309 @echo
"*** for GUI, and extract to $(DATADIR)/Skin/"
310 @if
test ! -d
$(prefix)/share
/pixmaps
; then mkdir
-p
$(prefix)/share
/pixmaps
; fi
311 $(INSTALL
) -m
644 Gui
/mplayer
/pixmaps
/mplayer-desktop.xpm
$(prefix)/share
/pixmaps
/mplayer-desktop.xpm
312 @if
test ! -d
$(prefix)/share
/applications
; then mkdir
-p
$(prefix)/share
/applications
; fi
313 $(INSTALL
) -m
644 etc
/mplayer.desktop
$(prefix)/share
/applications
/mplayer.desktop
315 @if
test ! -d
$(CONFDIR
) ; then mkdir
-p
$(CONFDIR
) ; fi
316 @if
test -f
$(CONFDIR
)/codecs.conf
; then mv
-f
$(CONFDIR
)/codecs.conf
$(CONFDIR
)/codecs.conf.old
; fi
317 ifeq ($(DVDKIT_SHARED
),yes
)
318 ifeq ($(DVDKIT2
),yes
)
319 if
test ! -d
$(LIBDIR
) ; then mkdir
-p
$(LIBDIR
) ; fi
320 $(INSTALL
) -m
755 $(INSTALLSTRIP
) libmpdvdkit2
/libmpdvdkit.so
$(LIBDIR
)/libmpdvdkit.so
323 if
test ! -d
$(LIBDIR
) ; then mkdir
-p
$(LIBDIR
) ; fi
324 $(INSTALL
) -m
755 $(INSTALLSTRIP
) libmpdvdkit
/libmpdvdkit.so
$(LIBDIR
)/libmpdvdkit.so
330 -rm -f
$(BINDIR
)/$(PRG
) $(BINDIR
)/gmplayer
$(MANDIR
)/man1
/mplayer
.1
331 -rm -f
$(BINDIR
)/$(PRG_MENCODER
) $(MANDIR
)/man1
/mencoder
.1
332 -rm -f
$(prefix)/share
/pixmaps
/mplayer-desktop.xpm
333 -rm -f
$(prefix)/share
/applications
/mplayer.desktop
334 -rm -f
$(LIBDIR
)/libmpdvdkit.so
335 for l in
$(MAN_LANG
); do \
336 if
test "i$$l" != "en"; then \
337 -rm -f
$(MANDIR
)/$$l/man1
/mplayer
.1 $(MANDIR
)/$$l/man1
/mencoder
.1 \
338 -rm -f
$(MANDIR
)/$$l/man1
/gmplayer
.1 \
344 @echo
"Uninstall completed"
347 -rm -f
*.o
*~
$(OBJS
) codecs.conf.h
349 distclean: doxygen_clean
350 -rm -f
*~
$(PRG
) $(PRG_MENCODER
) $(PRG_CFG
) $(OBJS
)
351 -rm -f
*.o
*.a .depend configure.log codecs.conf.h help_mp.h
352 @for a in
$(PARTS
); do
$(MAKE
) -C
$$a distclean; done
360 .
/version.sh
`$(CC) -dumpversion`
361 $(CC
) -MM
$(CFLAGS
) -DCODECS2HTML mplayer.c mencoder.c
$(SRCS_MPLAYER
) $(SRCS_MENCODER
) 1>.depend
362 @for a in
$(PARTS
); do
$(MAKE
) -C
$$a dep
; done
364 # ./configure must be run if it changed in CVS
366 @echo
"############################################################"
367 @echo
"####### Please run ./configure again - it's changed! #######"
368 @echo
"############################################################"
369 ifeq ($(wildcard .developer
),)
373 # do not rebuild after cvs commits if .developer file is present!
375 # rebuild at every config.h/config.mak change:
377 .
/version.sh
`$(CC) -dumpversion`
378 ifeq ($(wildcard .developer
),)
384 doxygen DOCS
/tech
/Doxyfile
387 -rm -rf DOCS
/tech
/doxygen
389 help_mp.h
: help
/help_mp-en.h
$(HELP_FILE
)
390 @echo
'// WARNING! This is a generated file. Do NOT edit.' > help_mp.h
391 @echo
'// See the help/ subdir for the editable files.' >> help_mp.h
392 @echo
'#include "$(HELP_FILE)"' >> help_mp.h
394 ifneq ($(HELP_FILE
),help
/help_mp-en.h
)
395 @echo
"Adding untranslated messages to help_mp.h"
396 @echo
'// untranslated messages from the English master file:' >> help_mp.h
397 @help
/help_diff.sh
$(HELP_FILE
) < help
/help_mp-en.h
>> help_mp.h
400 # rebuild at every CVS update or config/makefile change:
401 ifeq ($(wildcard .developer
),)
402 ifneq ($(wildcard CVS
/Entries
),)
403 version.h
: CVS
/Entries
405 version.h
: config.h config.mak Makefile
409 # include dependencies to get make to recurse into lib dirs,
410 # if the user desires such behavior
412 ifneq ($(wildcard .libdeps
),)
417 # include dependency files if they exist
419 ifneq ($(wildcard .depend
),)