obvious gcc warning fix, approved by Nico
[mplayer/glamo.git] / Makefile
blob5ebeb977d69908b585b35ca7c1ab75701c05b08f
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
5 # * DVD support
7 include config.mak
9 PRG_CFG = codec-cfg
11 # Do not strip the binaries at installation
12 ifeq ($(STRIPBINARIES),yes)
13 INSTALLSTRIP = -s
14 endif
16 # These subdirectories require installation due to binaries within them.
17 ifeq ($(VIDIX),yes)
18 SUBDIRS += libdha vidix
19 DO_MAKE = @ for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done
20 endif
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
28 endif
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
39 ifeq ($(TOOLAME),yes)
40 CFLAGS += $(TOOLAME_EXTRAFLAGS)
41 CODEC_LIBS += $(TOOLAME_LIB)
42 endif
44 PARTS = libmpdemux libmpcodecs libavcodec libavformat libao2 drivers osdep postproc input libvo libaf
45 ifeq ($(MP3LIB),yes)
46 PARTS += mp3lib
47 endif
48 ifeq ($(LIBA52),yes)
49 PARTS += liba52
50 endif
51 ifeq ($(LIBMPEG2),yes)
52 PARTS += libmpeg2
53 endif
54 ifeq ($(INTERNAL_FAAD),yes)
55 COMMON_LIBS += libfaad2/libfaad2.a
56 PARTS += libfaad2
57 endif
58 ifeq ($(VIDIX),yes)
59 PARTS += libdha vidix
60 endif
61 ifeq ($(FAME),yes)
62 PARTS += libfame
63 endif
64 ifeq ($(DVDKIT2),yes)
65 PARTS += libmpdvdkit2
66 else
67 ifeq ($(DVDKIT),yes)
68 PARTS += libmpdvdkit
69 endif
70 endif
71 ifeq ($(GUI),yes)
72 PARTS += Gui
73 endif
74 ifneq ($(W32_LIB),)
75 PARTS += loader loader/dshow loader/dmo
76 endif
77 ifeq ($(LIBMENU),yes)
78 PARTS += libmenu
79 endif
80 ifeq ($(TREMOR),yes)
81 PARTS += tremor
82 endif
84 ALL_PRG = $(PRG)
85 ifeq ($(MENCODER),yes)
86 ALL_PRG += $(PRG_MENCODER)
87 endif
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
91 ifeq ($(MP3LIB),yes)
92 COMMON_DEPS += mp3lib/libMP3.a
93 COMMON_LIBS += mp3lib/libMP3.a
94 endif
95 ifeq ($(LIBA52),yes)
96 COMMON_DEPS += liba52/liba52.a
97 COMMON_LIBS += liba52/liba52.a
98 endif
99 ifeq ($(LIBMPEG2),yes)
100 COMMON_DEPS += libmpeg2/libmpeg2.a
101 COMMON_LIBS += libmpeg2/libmpeg2.a
102 endif
103 ifeq ($(INTERNAL_FAAD),yes)
104 COMMON_DEPS += libfaad2/libfaad2.a
105 endif
106 ifeq ($(TREMOR),yes)
107 COMMON_DEPS += tremor/libvorbisidec.a
108 COMMON_LIBS += tremor/libvorbisidec.a
109 endif
110 ifeq ($(VIDIX),yes)
111 COMMON_DEPS += libdha/libdha.so vidix/libvidix.a
112 endif
113 ifeq ($(FAME),yes)
114 COMMON_DEPS += libfame/libfame.a
115 endif
116 ifeq ($(DVDKIT2),yes)
117 ifeq ($(DVDKIT_SHARED),yes)
118 COMMON_DEPS += libmpdvdkit2/libmpdvdkit.so
119 else
120 COMMON_DEPS += libmpdvdkit2/libmpdvdkit.a
121 endif
122 endif
124 ifeq ($(SHARED_PP),yes)
125 COMMON_DEPS += libavcodec/libpostproc/libpostproc.so
126 COMMON_LIBS += libavcodec/libpostproc/libpostproc.so
127 endif
129 ifeq ($(GUI),yes)
130 COMMON_DEPS += Gui/libgui.a
131 GUI_LIBS = Gui/libgui.a
132 endif
134 .SUFFIXES: .cc .c .o
136 #.PHONY: $(COMMON_DEPS)
138 all: version.h $(ALL_PRG)
140 .c.o:
141 $(CC) -c $(CFLAGS) -o $@ $<
143 libaf/libaf.a:
144 $(MAKE) -C libaf
146 libmpdvdkit2/libmpdvdkit.a:
147 $(MAKE) -C libmpdvdkit2
149 libmpdvdkit2/libmpdvdkit.so:
150 $(MAKE) -C libmpdvdkit2 libmpdvdkit.so
152 loader/libloader.a:
153 $(MAKE) -C loader
155 libfame/libfame.a:
156 $(MAKE) -C libfame
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
176 libmpeg2/libmpeg2.a:
177 $(MAKE) -C libmpeg2
179 libvo/libvo.a:
180 $(MAKE) -C libvo
182 libao2/libao2.a:
183 $(MAKE) -C libao2
185 liba52/liba52.a:
186 $(MAKE) -C liba52
188 libfaad2/libfaad2.a:
189 $(MAKE) -C libfaad2
191 mp3lib/libMP3.a:
192 $(MAKE) -C mp3lib
194 tremor/libvorbisidec.a:
195 $(MAKE) -C tremor
197 libdha/libdha.so:
198 $(MAKE) -C libdha
200 vidix/libvidix.a:
201 $(MAKE) -C vidix
203 Gui/libgui.a:
204 $(MAKE) -C Gui
206 osdep/libosdep.a:
207 $(MAKE) -C osdep
209 postproc/libswscale.a:
210 $(MAKE) -C postproc
212 input/libinput.a:
213 $(MAKE) -C input
215 libmenu/libmenu.a:
216 $(MAKE) -C libmenu
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
226 PARTS += libmenu
227 else
228 MENU_LIBS =
229 endif
231 MENCODER_DEP = $(OBJS_MENCODER) $(COMMON_DEPS) libmpcodecs/libmpencoders.a
233 ifeq ($(VIDIX),yes)
234 VIDIX_LIBS = vidix/libvidix.a
235 else
236 VIDIX_LIBS =
237 endif
239 ifeq ($(TARGET_WIN32),yes)
240 OBJS_MPLAYER += osdep/mplayer-rc.o
241 endif
243 $(PRG): $(MPLAYER_DEP)
244 ifeq ($(TARGET_WIN32),yes)
245 windres -o osdep/mplayer-rc.o osdep/mplayer.rc
246 endif
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)
263 endif
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)
282 install: $(ALL_PRG)
283 ifeq ($(VIDIX),yes)
284 $(DO_MAKE)
285 endif
286 ifeq ($(SHARED_PP),yes)
287 $(MAKE) install -C libavcodec/libpostproc
288 endif
289 if test ! -d $(BINDIR) ; then mkdir -p $(BINDIR) ; fi
290 $(INSTALL) -m 755 $(INSTALLSTRIP) $(PRG) $(BINDIR)/$(PRG)
291 ifeq ($(GUI),yes)
292 -ln -sf $(PRG) $(BINDIR)/gmplayer
293 endif
294 if test ! -d $(MANDIR)/man1 ; then mkdir -p $(MANDIR)/man1; fi
295 for i in $(MAN_LANG); do \
296 if test "$$i" = en ; then \
297 $(INSTALL) -c -m 644 DOCS/man/en/mplayer.1 $(MANDIR)/man1/mplayer.1 ; \
298 else \
299 mkdir -p $(MANDIR)/$$i/man1 ; \
300 $(INSTALL) -c -m 644 DOCS/man/$$i/mplayer.1 $(MANDIR)/$$i/man1/mplayer.1 ; \
301 fi ; \
302 done
303 ifeq ($(MENCODER),yes)
304 $(INSTALL) -m 755 $(INSTALLSTRIP) $(PRG_MENCODER) $(BINDIR)/$(PRG_MENCODER)
305 for i in $(MAN_LANG); do \
306 if test "$$i" = en ; then \
307 ln -sf mplayer.1 $(MANDIR)/man1/mencoder.1 ; \
308 else \
309 ln -sf mplayer.1 $(MANDIR)/$$i/man1/mencoder.1 ; \
310 fi ; \
311 done
312 endif
313 @if test ! -d $(DATADIR) ; then mkdir -p $(DATADIR) ; fi
314 @if test ! -d $(DATADIR)/font ; then mkdir -p $(DATADIR)/font ; fi
315 @if test ! -f $(DATADIR)/font/font.desc ; then \
316 echo "*** Download font at http://www.mplayerhq.hu/homepage/dload.html" ; \
317 echo "*** for OSD/Subtitles support and extract to $(DATADIR)/font/" ; \
319 ifeq ($(GUI),yes)
320 @if test ! -d $(DATADIR)/Skin ; then mkdir -p $(DATADIR)/Skin ; fi
321 @echo "*** Download skin(s) at http://www.mplayerhq.hu/homepage/dload.html"
322 @echo "*** for GUI, and extract to $(DATADIR)/Skin/"
323 @if test ! -d $(prefix)/share/pixmaps ; then mkdir -p $(prefix)/share/pixmaps ; fi
324 $(INSTALL) -m 644 Gui/mplayer/pixmaps/mplayer-desktop.xpm $(prefix)/share/pixmaps/mplayer-desktop.xpm
325 @if test ! -d $(prefix)/share/applications ; then mkdir -p $(prefix)/share/applications ; fi
326 $(INSTALL) -m 644 etc/mplayer.desktop $(prefix)/share/applications/mplayer.desktop
327 endif
328 @if test ! -d $(CONFDIR) ; then mkdir -p $(CONFDIR) ; fi
329 @if test -f $(CONFDIR)/codecs.conf ; then mv -f $(CONFDIR)/codecs.conf $(CONFDIR)/codecs.conf.old ; fi
330 ifeq ($(DVDKIT_SHARED),yes)
331 ifeq ($(DVDKIT2),yes)
332 if test ! -d $(LIBDIR) ; then mkdir -p $(LIBDIR) ; fi
333 $(INSTALL) -m 755 $(INSTALLSTRIP) libmpdvdkit2/libmpdvdkit.so $(LIBDIR)/libmpdvdkit.so
334 else
335 ifeq ($(DVDKIT),yes)
336 if test ! -d $(LIBDIR) ; then mkdir -p $(LIBDIR) ; fi
337 $(INSTALL) -m 755 $(INSTALLSTRIP) libmpdvdkit/libmpdvdkit.so $(LIBDIR)/libmpdvdkit.so
338 endif
339 endif
340 endif
342 uninstall:
343 -rm -f $(BINDIR)/$(PRG) $(BINDIR)/gmplayer $(MANDIR)/man1/mplayer.1
344 -rm -f $(BINDIR)/$(PRG_MENCODER) $(MANDIR)/man1/mencoder.1
345 -rm -f $(prefix)/share/pixmaps/mplayer-desktop.xpm
346 -rm -f $(prefix)/share/applications/mplayer.desktop
347 -rm -f $(LIBDIR)/libmpdvdkit.so
348 for l in $(MAN_LANG); do \
349 if test "i$$l" != "en"; then \
350 -rm -f $(MANDIR)/$$l/man1/mplayer.1 $(MANDIR)/$$l/man1/mencoder.1 \
351 -rm -f $(MANDIR)/$$l/man1/gmplayer.1 \
352 fi \
353 done
354 ifeq ($(VIDIX),yes)
355 $(DO_MAKE)
356 endif
357 @echo "Uninstall completed"
359 clean:
360 -rm -f *.o *~ $(OBJS) codecs.conf.h
362 distclean: doxygen_clean
363 -rm -f *~ $(PRG) $(PRG_MENCODER) $(PRG_CFG) $(OBJS)
364 -rm -f *.o *.a .depend configure.log codecs.conf.h help_mp.h
365 @for a in $(PARTS); do $(MAKE) -C $$a distclean; done
367 strip:
368 strip -s $(ALL_PRG)
370 dep: depend
372 depend: help_mp.h
373 ./version.sh `$(CC) -dumpversion`
374 $(CC) -MM $(CFLAGS) -DCODECS2HTML mplayer.c mencoder.c $(SRCS_MPLAYER) $(SRCS_MENCODER) 1>.depend
375 @for a in $(PARTS); do $(MAKE) -C $$a dep; done
377 # ./configure must be run if it changed in CVS
378 config.h: configure
379 @echo "############################################################"
380 @echo "####### Please run ./configure again - it's changed! #######"
381 @echo "############################################################"
382 ifeq ($(wildcard .developer),)
383 @exit 1
384 endif
386 # do not rebuild after cvs commits if .developer file is present!
388 # rebuild at every config.h/config.mak change:
389 version.h:
390 ./version.sh `$(CC) -dumpversion`
391 ifeq ($(wildcard .developer),)
392 $(MAKE) distclean
393 endif
394 $(MAKE) depend
396 doxygen:
397 doxygen DOCS/tech/Doxyfile
399 doxygen_clean:
400 -rm -rf DOCS/tech/doxygen
402 help_mp.h: help/help_mp-en.h $(HELP_FILE)
403 @echo '// WARNING! This is a generated file. Do NOT edit.' > help_mp.h
404 @echo '// See the help/ subdir for the editable files.' >> help_mp.h
405 ifeq ($(CHARSET),)
406 @echo '#include "$(HELP_FILE)"' >> help_mp.h
407 else
408 iconv -f `cat $(HELP_FILE).charset` -t $(CHARSET) "$(HELP_FILE)" >> help_mp.h
409 endif
411 ifneq ($(HELP_FILE),help/help_mp-en.h)
412 @echo "Adding untranslated messages to help_mp.h"
413 @echo '// untranslated messages from the English master file:' >> help_mp.h
414 @help/help_diff.sh $(HELP_FILE) < help/help_mp-en.h >> help_mp.h
415 endif
417 # rebuild at every CVS update or config/makefile change:
418 ifeq ($(wildcard .developer),)
419 ifneq ($(wildcard CVS/Entries),)
420 version.h: CVS/Entries
421 endif
422 version.h: config.h config.mak Makefile
423 endif
426 # include dependencies to get make to recurse into lib dirs,
427 # if the user desires such behavior
429 ifneq ($(wildcard .libdeps),)
430 include .libdeps
431 endif
434 # include dependency files if they exist
436 ifneq ($(wildcard .depend),)
437 include .depend
438 endif