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
) 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 subopt-helper.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
85 ifeq ($(MENCODER
),yes
)
86 ALL_PRG
+= $(PRG_MENCODER
)
89 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
92 COMMON_DEPS
+= mp3lib
/libMP3.a
93 COMMON_LIBS
+= mp3lib
/libMP3.a
96 COMMON_DEPS
+= liba52
/liba52.a
97 COMMON_LIBS
+= liba52
/liba52.a
99 ifeq ($(LIBMPEG2
),yes
)
100 COMMON_DEPS
+= libmpeg2
/libmpeg2.a
101 COMMON_LIBS
+= libmpeg2
/libmpeg2.a
103 ifeq ($(INTERNAL_FAAD
),yes
)
104 COMMON_DEPS
+= libfaad2
/libfaad2.a
107 COMMON_DEPS
+= tremor
/libvorbisidec.a
108 COMMON_LIBS
+= tremor
/libvorbisidec.a
111 COMMON_DEPS
+= libdha
/libdha.so vidix
/libvidix.a
114 COMMON_DEPS
+= libfame
/libfame.a
116 ifeq ($(DVDKIT2
),yes
)
117 ifeq ($(DVDKIT_SHARED
),yes
)
118 COMMON_DEPS
+= libmpdvdkit2
/libmpdvdkit.so
120 COMMON_DEPS
+= libmpdvdkit2
/libmpdvdkit.a
124 ifeq ($(SHARED_PP
),yes
)
125 COMMON_DEPS
+= libavcodec
/libpostproc
/libpostproc.so
126 COMMON_LIBS
+= libavcodec
/libpostproc
/libpostproc.so
130 COMMON_DEPS
+= Gui
/libgui.a
131 GUI_LIBS
= Gui
/libgui.a
136 #.PHONY: $(COMMON_DEPS)
138 all: version.h
$(ALL_PRG
)
141 $(CC
) -c
$(CFLAGS
) -o
$@
$<
146 libmpdvdkit2
/libmpdvdkit.a
:
147 $(MAKE
) -C libmpdvdkit2
149 libmpdvdkit2
/libmpdvdkit.so
:
150 $(MAKE
) -C libmpdvdkit2 libmpdvdkit.so
158 libmpdemux
/libmpdemux.a
:
159 $(MAKE
) -C libmpdemux
161 libmpcodecs
/libmpcodecs.a
:
162 $(MAKE
) -C libmpcodecs
164 loader
/dshow
/libDS_Filter.a
:
165 $(MAKE
) -C loader
/dshow
167 loader
/dmo
/libDMO_Filter.a
:
168 $(MAKE
) -C loader
/dmo
170 libavcodec
/libavcodec.a
:
171 $(MAKE
) -C libavcodec LIBPREF
=lib LIBSUF
=.a
173 libavformat
/libavformat.a
:
174 $(MAKE
) -C libavformat LIBPREF
=lib LIBSUF
=.a
194 tremor
/libvorbisidec.a
:
209 postproc
/libswscale.a
:
218 libavcodec
/libpostproc
/libpostproc.so
:
219 $(MAKE
) -C libavcodec
/libpostproc
221 MPLAYER_DEP
= $(OBJS_MPLAYER
) $(COMMON_DEPS
)
223 ifeq ($(LIBMENU
),yes
)
224 MPLAYER_DEP
+= libmenu
/libmenu.a
225 MENU_LIBS
= libmenu
/libmenu.a
231 MENCODER_DEP
= $(OBJS_MENCODER
) $(COMMON_DEPS
) libmpcodecs
/libmpencoders.a
234 VIDIX_LIBS
= vidix
/libvidix.a
239 ifeq ($(TARGET_WIN32
),yes
)
240 OBJS_MPLAYER
+= osdep
/mplayer-rc.o
243 $(PRG
): $(MPLAYER_DEP
)
244 ifeq ($(TARGET_WIN32
),yes
)
245 windres
-o osdep
/mplayer-rc.o osdep
/mplayer.rc
247 $(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
)
249 mplayer.exe.spec.c
: libmpcodecs
/libmpcodecs.a
250 winebuild
-fPIC
-o mplayer.exe.spec.c
-exe mplayer.exe
-mcui \
251 libmpcodecs
/ad_qtaudio.o libmpcodecs
/vd_qtvideo.o \
252 -L
/usr
/local
/lib
/wine
-lkernel32
254 mplayer.exe.so
: $(MPLAYER_DEP
) mplayer.exe.spec.c
255 $(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
)
257 mplayer_wine.so
: $(MPLAYER_DEP
)
258 $(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
)
260 ifeq ($(MENCODER
),yes
)
261 $(PRG_MENCODER
): $(MENCODER_DEP
)
262 $(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
)
265 codecs.conf.h
: $(PRG_CFG
) etc
/codecs.conf
266 .
/$(PRG_CFG
) .
/etc
/codecs.conf
> $@
268 codec-cfg.o
: codecs.conf.h
270 # Every mplayer dependency depends on version.h, to force building version.h
271 # first (in serial mode) before any other of the dependencies for a parallel make
272 # run. This is necessary, because the make rule for version.h removes objects
273 # in a recursive "make distclean" and we must wait for this "make distclean" to
274 # finish before we can start building new object files.
275 # help_mp.h is also required by a lot of files, so force generating it early.
276 $(MPLAYER_DEP
): version.h help_mp.h
277 $(MENCODER_DEP
): version.h help_mp.h
279 $(PRG_CFG
): version.h codec-cfg.c codec-cfg.h
280 $(HOST_CC
) $(CFLAGS
) -g codec-cfg.c mp_msg.c
-o
$(PRG_CFG
) -DCODECS2HTML
$(EXTRA_LIB
) $(I18NLIBS
)
286 if
test ! -d
$(BINDIR
) ; then mkdir
-p
$(BINDIR
) ; fi
287 $(INSTALL
) -m
755 $(INSTALLSTRIP
) $(PRG
) $(BINDIR
)/$(PRG
)
289 -ln
-sf
$(PRG
) $(BINDIR
)/gmplayer
291 if
test ! -d
$(MANDIR
)/man1
; then mkdir
-p
$(MANDIR
)/man1
; fi
292 for i in
$(MAN_LANG
); do \
293 if
test "$$i" = en
; then \
294 $(INSTALL
) -c
-m
644 DOCS
/man
/en
/mplayer
.1 $(MANDIR
)/man1
/mplayer
.1 ; \
296 mkdir
-p
$(MANDIR
)/$$i/man1
; \
297 $(INSTALL
) -c
-m
644 DOCS
/man
/$$i/mplayer
.1 $(MANDIR
)/$$i/man1
/mplayer
.1 ; \
300 ifeq ($(MENCODER
),yes
)
301 $(INSTALL
) -m
755 $(INSTALLSTRIP
) $(PRG_MENCODER
) $(BINDIR
)/$(PRG_MENCODER
)
302 for i in
$(MAN_LANG
); do \
303 if
test "$$i" = en
; then \
304 ln
-sf mplayer
.1 $(MANDIR
)/man1
/mencoder
.1 ; \
306 ln
-sf mplayer
.1 $(MANDIR
)/$$i/man1
/mencoder
.1 ; \
310 @if
test ! -d
$(DATADIR
) ; then mkdir
-p
$(DATADIR
) ; fi
311 @if
test ! -d
$(DATADIR
)/font
; then mkdir
-p
$(DATADIR
)/font
; fi
312 @if
test ! -f
$(DATADIR
)/font
/font.desc
; then \
313 echo
"*** Download font at http://www.mplayerhq.hu/homepage/dload.html" ; \
314 echo
"*** for OSD/Subtitles support and extract to $(DATADIR)/font/" ; \
317 @if
test ! -d
$(DATADIR
)/Skin
; then mkdir
-p
$(DATADIR
)/Skin
; fi
318 @echo
"*** Download skin(s) at http://www.mplayerhq.hu/homepage/dload.html"
319 @echo
"*** for GUI, and extract to $(DATADIR)/Skin/"
320 @if
test ! -d
$(prefix)/share
/pixmaps
; then mkdir
-p
$(prefix)/share
/pixmaps
; fi
321 $(INSTALL
) -m
644 Gui
/mplayer
/pixmaps
/mplayer-desktop.xpm
$(prefix)/share
/pixmaps
/mplayer-desktop.xpm
322 @if
test ! -d
$(prefix)/share
/applications
; then mkdir
-p
$(prefix)/share
/applications
; fi
323 $(INSTALL
) -m
644 etc
/mplayer.desktop
$(prefix)/share
/applications
/mplayer.desktop
325 @if
test ! -d
$(CONFDIR
) ; then mkdir
-p
$(CONFDIR
) ; fi
326 @if
test -f
$(CONFDIR
)/codecs.conf
; then mv
-f
$(CONFDIR
)/codecs.conf
$(CONFDIR
)/codecs.conf.old
; fi
327 ifeq ($(DVDKIT_SHARED
),yes
)
328 ifeq ($(DVDKIT2
),yes
)
329 if
test ! -d
$(LIBDIR
) ; then mkdir
-p
$(LIBDIR
) ; fi
330 $(INSTALL
) -m
755 $(INSTALLSTRIP
) libmpdvdkit2
/libmpdvdkit.so
$(LIBDIR
)/libmpdvdkit.so
333 if
test ! -d
$(LIBDIR
) ; then mkdir
-p
$(LIBDIR
) ; fi
334 $(INSTALL
) -m
755 $(INSTALLSTRIP
) libmpdvdkit
/libmpdvdkit.so
$(LIBDIR
)/libmpdvdkit.so
340 -rm -f
$(BINDIR
)/$(PRG
) $(BINDIR
)/gmplayer
$(MANDIR
)/man1
/mplayer
.1
341 -rm -f
$(BINDIR
)/$(PRG_MENCODER
) $(MANDIR
)/man1
/mencoder
.1
342 -rm -f
$(prefix)/share
/pixmaps
/mplayer-desktop.xpm
343 -rm -f
$(prefix)/share
/applications
/mplayer.desktop
344 -rm -f
$(LIBDIR
)/libmpdvdkit.so
345 for l in
$(MAN_LANG
); do \
346 if
test "i$$l" != "en"; then \
347 -rm -f
$(MANDIR
)/$$l/man1
/mplayer
.1 $(MANDIR
)/$$l/man1
/mencoder
.1 \
348 -rm -f
$(MANDIR
)/$$l/man1
/gmplayer
.1 \
354 @echo
"Uninstall completed"
357 -rm -f
*.o
*~
$(OBJS
) codecs.conf.h
359 distclean: doxygen_clean
360 -rm -f
*~
$(PRG
) $(PRG_MENCODER
) $(PRG_CFG
) $(OBJS
)
361 -rm -f
*.o
*.a .depend configure.log codecs.conf.h help_mp.h
362 @for a in
$(PARTS
); do
$(MAKE
) -C
$$a distclean; done
370 .
/version.sh
`$(CC) -dumpversion`
371 $(CC
) -MM
$(CFLAGS
) -DCODECS2HTML mplayer.c mencoder.c
$(SRCS_MPLAYER
) $(SRCS_MENCODER
) 1>.depend
372 @for a in
$(PARTS
); do
$(MAKE
) -C
$$a dep
; done
374 # ./configure must be run if it changed in CVS
376 @echo
"############################################################"
377 @echo
"####### Please run ./configure again - it's changed! #######"
378 @echo
"############################################################"
379 ifeq ($(wildcard .developer
),)
383 # do not rebuild after cvs commits if .developer file is present!
385 # rebuild at every config.h/config.mak change:
387 .
/version.sh
`$(CC) -dumpversion`
388 ifeq ($(wildcard .developer
),)
394 doxygen DOCS
/tech
/Doxyfile
397 -rm -rf DOCS
/tech
/doxygen
399 help_mp.h
: help
/help_mp-en.h
$(HELP_FILE
)
400 @echo
'// WARNING! This is a generated file. Do NOT edit.' > help_mp.h
401 @echo
'// See the help/ subdir for the editable files.' >> help_mp.h
402 @echo
'#include "$(HELP_FILE)"' >> help_mp.h
404 ifneq ($(HELP_FILE
),help
/help_mp-en.h
)
405 @echo
"Adding untranslated messages to help_mp.h"
406 @echo
'// untranslated messages from the English master file:' >> help_mp.h
407 @help
/help_diff.sh
$(HELP_FILE
) < help
/help_mp-en.h
>> help_mp.h
410 # rebuild at every CVS update or config/makefile change:
411 ifeq ($(wildcard .developer
),)
412 ifneq ($(wildcard CVS
/Entries
),)
413 version.h
: CVS
/Entries
415 version.h
: config.h config.mak Makefile
419 # include dependencies to get make to recurse into lib dirs,
420 # if the user desires such behavior
422 ifneq ($(wildcard .libdeps
),)
427 # include dependency files if they exist
429 ifneq ($(wildcard .depend
),)