tremor uses integer types
[mplayer/glamo.git] / Makefile
blob00bfea45a6bd8fa3e5316ed7db43cb14105e3643
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 LIBAV_INC =
12 ifeq ($(CONFIG_LIBAVUTIL),yes)
13 LIBAV_INC += -I./libavutil
14 endif
15 ifeq ($(CONFIG_LIBAVCODEC),yes)
16 LIBAV_INC += -I./libavcodec
17 endif
19 # Do not strip the binaries at installation
20 ifeq ($(STRIPBINARIES),yes)
21 INSTALLSTRIP = -s
22 endif
24 # These subdirectories require installation due to binaries within them.
25 ifeq ($(VIDIX),yes)
26 SUBDIRS += libdha vidix
27 DO_MAKE = @ for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done
28 endif
30 SRCS_COMMON = asxparser.c \
31 codec-cfg.c \
32 cpudetect.c \
33 edl.c \
34 find_sub.c \
35 m_config.c \
36 m_option.c \
37 m_struct.c \
38 parser-cfg.c \
39 playtree.c \
40 playtreeparser.c \
41 spudec.c \
42 sub_cc.c \
43 subreader.c \
44 vobsub.c \
46 SRCS_MENCODER = mencoder.c \
47 mp_msg-mencoder.c \
48 $(SRCS_COMMON) \
49 divx4_vbr.c \
50 libvo/aclib.c \
51 libvo/font_load.c \
52 libvo/font_load_ft.c \
53 libvo/osd.c \
54 libvo/sub.c \
55 parser-mecmd.c \
56 xvid_vbr.c \
58 SRCS_MPLAYER = mplayer.c \
59 mp_msg.c \
60 $(SRCS_COMMON) \
61 mixer.c \
62 parser-mpcmd.c \
63 subopt-helper.c \
65 ifeq ($(UNRARLIB),yes)
66 SRCS_COMMON += unrarlib.c
67 endif
69 OBJS_MENCODER = $(SRCS_MENCODER:.c=.o)
70 OBJS_MPLAYER = $(SRCS_MPLAYER:.c=.o)
72 VO_LIBS = $(AA_LIB) \
73 $(X_LIB) \
74 $(SDL_LIB) \
75 $(GGI_LIB) \
76 $(MP1E_LIB) \
77 $(MLIB_LIB) \
78 $(SVGA_LIB) \
79 $(DIRECTFB_LIB) \
80 $(CACA_LIB) \
82 AO_LIBS = $(ARTS_LIB) \
83 $(ESD_LIB) \
84 $(JACK_LIB) \
85 $(NAS_LIB) \
86 $(SGIAUDIO_LIB) \
87 $(POLYP_LIB) \
89 CODEC_LIBS = $(AV_LIB) \
90 $(FAME_LIB) \
91 $(MAD_LIB) \
92 $(VORBIS_LIB) \
93 $(THEORA_LIB) \
94 $(FAAD_LIB) \
95 $(LIBLZO_LIB) \
96 $(DECORE_LIB) \
97 $(XVID_LIB) \
98 $(DTS_LIB) \
99 $(PNG_LIB) \
100 $(Z_LIB) \
101 $(JPEG_LIB) \
102 $(ALSA_LIB) \
103 $(XMMS_LIB) \
104 $(X264_LIB) \
105 $(MUSEPACK_LIB) \
107 COMMON_LIBS = libmpcodecs/libmpcodecs.a \
108 $(W32_LIB) \
109 $(DS_LIB) \
110 libaf/libaf.a \
111 libmpdemux/libmpdemux.a \
112 input/libinput.a \
113 postproc/libswscale.a \
114 osdep/libosdep.a \
115 $(DVDREAD_LIB) \
116 $(CODEC_LIBS) \
117 $(FREETYPE_LIB) \
118 $(TERMCAP_LIB) \
119 $(CDPARANOIA_LIB) \
120 $(MPLAYER_NETWORK_LIB) \
121 $(WIN32_LIB) \
122 $(GIF_LIB) \
123 $(MACOSX_FRAMEWORKS) \
124 $(SMBSUPPORT_LIB) \
125 $(FRIBIDI_LIB) \
126 $(FONTCONFIG_LIB) \
127 $(ENCA_LIB) \
129 CFLAGS = $(OPTFLAGS) -I. \
130 $(CACA_INC) \
131 $(CDPARANOIA_INC) \
132 $(DVB_INC) \
133 $(EXTRA_INC) \
134 $(FONTCONFIG_INC) \
135 $(FREETYPE_INC) \
136 $(FRIBIDI_INC) \
137 $(SDL_INC) \
138 $(X11_INC) \
139 $(XVID_INC) \
140 $(LIBAV_INC) \
142 #CFLAGS += -Wall
144 ifeq ($(TOOLAME),yes)
145 CFLAGS += $(TOOLAME_EXTRAFLAGS)
146 CODEC_LIBS += $(TOOLAME_LIB)
147 endif
149 ifeq ($(TWOLAME),yes)
150 CODEC_LIBS += $(TWOLAME_LIB)
151 endif
153 ifeq ($(FAAC),yes)
154 CODEC_LIBS += $(FAAC_LIB)
155 endif
157 PARTS = libmpdemux \
158 libmpcodecs \
159 libavcodec \
160 libavformat \
161 libao2 \
162 osdep \
163 postproc \
164 input \
165 libvo \
166 libaf \
168 ifeq ($(MP3LIB),yes)
169 PARTS += mp3lib
170 endif
171 ifeq ($(LIBA52),yes)
172 PARTS += liba52
173 endif
174 ifeq ($(LIBMPEG2),yes)
175 PARTS += libmpeg2
176 endif
177 ifeq ($(INTERNAL_FAAD),yes)
178 COMMON_LIBS += libfaad2/libfaad2.a
179 PARTS += libfaad2
180 endif
181 ifeq ($(VIDIX),yes)
182 PARTS += libdha vidix
183 endif
184 ifeq ($(FAME),yes)
185 PARTS += libfame
186 endif
187 ifeq ($(DVDKIT2),yes)
188 PARTS += libmpdvdkit2
189 else
190 ifeq ($(DVDKIT),yes)
191 PARTS += libmpdvdkit
192 endif
193 endif
194 ifeq ($(GUI),yes)
195 PARTS += Gui
196 endif
197 ifneq ($(W32_LIB),)
198 PARTS += loader loader/dshow loader/dmo
199 endif
200 ifeq ($(LIBMENU),yes)
201 PARTS += libmenu
202 endif
203 ifeq ($(TREMOR),yes)
204 PARTS += tremor
205 endif
207 ALL_PRG = $(PRG)
208 ifeq ($(MENCODER),yes)
209 ALL_PRG += $(PRG_MENCODER)
210 endif
212 COMMON_DEPS = $(W32_DEP) \
213 $(DS_DEP) \
214 $(MP1E_DEP) \
215 $(AV_DEP) \
216 libmpdemux/libmpdemux.a \
217 libmpcodecs/libmpcodecs.a \
218 libao2/libao2.a \
219 osdep/libosdep.a \
220 postproc/libswscale.a \
221 input/libinput.a \
222 libvo/libvo.a \
223 libaf/libaf.a \
225 ifeq ($(MP3LIB),yes)
226 COMMON_DEPS += mp3lib/libMP3.a
227 COMMON_LIBS += mp3lib/libMP3.a
228 endif
229 ifeq ($(LIBA52),yes)
230 COMMON_DEPS += liba52/liba52.a
231 COMMON_LIBS += liba52/liba52.a
232 endif
233 ifeq ($(LIBMPEG2),yes)
234 COMMON_DEPS += libmpeg2/libmpeg2.a
235 COMMON_LIBS += libmpeg2/libmpeg2.a
236 endif
237 ifeq ($(INTERNAL_FAAD),yes)
238 COMMON_DEPS += libfaad2/libfaad2.a
239 endif
240 ifeq ($(TREMOR),yes)
241 COMMON_DEPS += tremor/libvorbisidec.a
242 COMMON_LIBS += tremor/libvorbisidec.a
243 endif
244 ifeq ($(VIDIX),yes)
245 COMMON_DEPS += libdha/libdha.so vidix/libvidix.a
246 endif
247 ifeq ($(FAME),yes)
248 COMMON_DEPS += libfame/libfame.a
249 endif
250 ifeq ($(DVDKIT2),yes)
251 ifeq ($(DVDKIT_SHARED),yes)
252 COMMON_DEPS += libmpdvdkit2/libmpdvdkit.so
253 else
254 COMMON_DEPS += libmpdvdkit2/libmpdvdkit.a
255 endif
256 endif
258 ifeq ($(SHARED_PP),yes)
259 COMMON_DEPS += libavcodec/libpostproc/libpostproc.so
260 COMMON_LIBS += libavcodec/libpostproc/libpostproc.so
261 endif
263 ifeq ($(GUI),yes)
264 COMMON_DEPS += Gui/libgui.a
265 GUI_LIBS = Gui/libgui.a
266 endif
268 .SUFFIXES: .cc .c .o
270 #.PHONY: $(COMMON_DEPS)
272 all: version.h $(ALL_PRG)
274 .c.o:
275 $(CC) -c $(CFLAGS) -o $@ $<
277 libaf/libaf.a:
278 $(MAKE) -C libaf
280 libmpdvdkit2/libmpdvdkit.a:
281 $(MAKE) -C libmpdvdkit2
283 libmpdvdkit2/libmpdvdkit.so:
284 $(MAKE) -C libmpdvdkit2 libmpdvdkit.so
286 loader/libloader.a:
287 $(MAKE) -C loader
289 libfame/libfame.a:
290 $(MAKE) -C libfame
292 libmpdemux/libmpdemux.a:
293 $(MAKE) -C libmpdemux
295 libmpcodecs/libmpcodecs.a:
296 $(MAKE) -C libmpcodecs
298 loader/dshow/libDS_Filter.a:
299 $(MAKE) -C loader/dshow
301 loader/dmo/libDMO_Filter.a:
302 $(MAKE) -C loader/dmo
304 libavutil/libavutil.a:
305 $(MAKE) -C libavutil LIBPREF=lib LIBSUF=.a
307 libavcodec/libavcodec.a:
308 $(MAKE) -C libavcodec LIBPREF=lib LIBSUF=.a
310 libavformat/libavformat.a:
311 $(MAKE) -C libavformat LIBPREF=lib LIBSUF=.a
313 libmpeg2/libmpeg2.a:
314 $(MAKE) -C libmpeg2
316 libvo/libvo.a:
317 $(MAKE) -C libvo
319 libao2/libao2.a:
320 $(MAKE) -C libao2
322 liba52/liba52.a:
323 $(MAKE) -C liba52
325 libfaad2/libfaad2.a:
326 $(MAKE) -C libfaad2
328 mp3lib/libMP3.a:
329 $(MAKE) -C mp3lib
331 tremor/libvorbisidec.a:
332 $(MAKE) -C tremor
334 libdha/libdha.so:
335 $(MAKE) -C libdha
337 vidix/libvidix.a:
338 $(MAKE) -C vidix
340 Gui/libgui.a:
341 $(MAKE) -C Gui
343 osdep/libosdep.a:
344 $(MAKE) -C osdep
346 postproc/libswscale.a:
347 $(MAKE) -C postproc
349 input/libinput.a:
350 $(MAKE) -C input
352 libmenu/libmenu.a:
353 $(MAKE) -C libmenu
355 libavcodec/libpostproc/libpostproc.so:
356 $(MAKE) -C libavcodec/libpostproc
358 MPLAYER_DEP = $(OBJS_MPLAYER) $(COMMON_DEPS)
360 ifeq ($(LIBMENU),yes)
361 MPLAYER_DEP += libmenu/libmenu.a
362 MENU_LIBS = libmenu/libmenu.a
363 PARTS += libmenu
364 else
365 MENU_LIBS =
366 endif
368 MENCODER_DEP = $(OBJS_MENCODER) $(COMMON_DEPS) libmpcodecs/libmpencoders.a
370 ifeq ($(VIDIX),yes)
371 VIDIX_LIBS = vidix/libvidix.a
372 else
373 VIDIX_LIBS =
374 endif
376 ifeq ($(TARGET_WIN32),yes)
377 OBJS_MPLAYER += osdep/mplayer-rc.o
378 endif
380 LIBS_MPLAYER = libvo/libvo.a \
381 libao2/libao2.a \
382 $(MENU_LIBS) \
383 $(VIDIX_LIBS) \
384 $(GUI_LIBS) \
385 $(COMMON_LIBS) \
386 $(GTK_LIBS) \
387 $(VO_LIBS) \
388 $(AO_LIBS) \
389 $(EXTRA_LIB)\
390 $(LIRC_LIB) \
391 $(LIRCC_LIB) \
392 $(STATIC_LIB) \
393 $(ARCH_LIB) \
394 $(I18NLIBS) \
395 $(MATH_LIB) \
397 $(PRG): $(MPLAYER_DEP)
398 ifeq ($(TARGET_WIN32),yes)
399 windres -o osdep/mplayer-rc.o osdep/mplayer.rc
400 endif
401 $(CC) $(CFLAGS) -o $(PRG) $(OBJS_MPLAYER) $(LIBS_MPLAYER)
403 mplayer.exe.spec.c: libmpcodecs/libmpcodecs.a
404 winebuild -fPIC -o mplayer.exe.spec.c -exe mplayer.exe -mcui \
405 libmpcodecs/ad_qtaudio.o libmpcodecs/vd_qtvideo.o \
406 -L/usr/local/lib/wine -lkernel32
408 mplayer.exe.so: $(MPLAYER_DEP) mplayer.exe.spec.c
409 $(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)
411 mplayer_wine.so: $(MPLAYER_DEP)
412 $(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)
414 ifeq ($(MENCODER),yes)
415 LIBS_MENCODER = libmpcodecs/libmpencoders.a \
416 $(ENCORE_LIB) \
417 $(COMMON_LIBS) \
418 $(EXTRA_LIB) \
419 $(MLIB_LIB) \
420 $(LIRC_LIB) \
421 $(LIRCC_LIB) \
422 $(ARCH_LIB) \
423 $(I18NLIBS) \
424 $(MATH_LIB) \
426 $(PRG_MENCODER): $(MENCODER_DEP)
427 $(CC) $(CFLAGS) -o $(PRG_MENCODER) $(OBJS_MENCODER) $(LIBS_MENCODER)
428 endif
430 codecs.conf.h: $(PRG_CFG) etc/codecs.conf
431 ./$(PRG_CFG) ./etc/codecs.conf > $@
433 codec-cfg.o: codecs.conf.h
435 # Every mplayer dependency depends on version.h, to force building version.h
436 # first (in serial mode) before any other of the dependencies for a parallel make
437 # run. This is necessary, because the make rule for version.h removes objects
438 # in a recursive "make distclean" and we must wait for this "make distclean" to
439 # finish before we can start building new object files.
440 # help_mp.h is also required by a lot of files, so force generating it early.
441 $(MPLAYER_DEP): version.h help_mp.h
442 $(MENCODER_DEP): version.h help_mp.h
444 $(PRG_CFG): version.h codec-cfg.c codec-cfg.h
445 $(HOST_CC) $(HOST_CFLAGS) -I. -g codec-cfg.c mp_msg.c -o $(PRG_CFG) -DCODECS2HTML $(EXTRA_LIB) $(EXTRA_INC) $(I18NLIBS)
447 install: $(ALL_PRG)
448 ifeq ($(VIDIX),yes)
449 $(DO_MAKE)
450 endif
451 ifeq ($(SHARED_PP),yes)
452 $(MAKE) install -C libavcodec/libpostproc
453 endif
454 if test ! -d $(BINDIR) ; then mkdir -p $(BINDIR) ; fi
455 $(INSTALL) -m 755 $(INSTALLSTRIP) $(PRG) $(BINDIR)/$(PRG)
456 ifeq ($(GUI),yes)
457 -ln -sf $(PRG) $(BINDIR)/gmplayer
458 endif
459 if test ! -d $(MANDIR)/man1 ; then mkdir -p $(MANDIR)/man1; fi
460 for i in $(MAN_LANG); do \
461 if test "$$i" = en ; then \
462 $(INSTALL) -c -m 644 DOCS/man/en/mplayer.1 $(MANDIR)/man1/mplayer.1 ; \
463 else \
464 mkdir -p $(MANDIR)/$$i/man1 ; \
465 $(INSTALL) -c -m 644 DOCS/man/$$i/mplayer.1 $(MANDIR)/$$i/man1/mplayer.1 ; \
466 fi ; \
467 done
468 ifeq ($(MENCODER),yes)
469 $(INSTALL) -m 755 $(INSTALLSTRIP) $(PRG_MENCODER) $(BINDIR)/$(PRG_MENCODER)
470 for i in $(MAN_LANG); do \
471 if test "$$i" = en ; then \
472 ln -sf mplayer.1 $(MANDIR)/man1/mencoder.1 ; \
473 else \
474 ln -sf mplayer.1 $(MANDIR)/$$i/man1/mencoder.1 ; \
475 fi ; \
476 done
477 endif
478 @if test ! -d $(DATADIR) ; then mkdir -p $(DATADIR) ; fi
479 @if test ! -d $(DATADIR)/font ; then mkdir -p $(DATADIR)/font ; fi
480 @if test ! -f $(DATADIR)/font/font.desc ; then \
481 echo "*** Download font at http://www.mplayerhq.hu/homepage/dload.html" ; \
482 echo "*** for OSD/Subtitles support and extract to $(DATADIR)/font/" ; \
484 ifeq ($(GUI),yes)
485 @if test ! -d $(DATADIR)/Skin ; then mkdir -p $(DATADIR)/Skin ; fi
486 @echo "*** Download skin(s) at http://www.mplayerhq.hu/homepage/dload.html"
487 @echo "*** for GUI, and extract to $(DATADIR)/Skin/"
488 @if test ! -d $(prefix)/share/pixmaps ; then mkdir -p $(prefix)/share/pixmaps ; fi
489 $(INSTALL) -m 644 Gui/mplayer/pixmaps/mplayer-desktop.xpm $(prefix)/share/pixmaps/mplayer-desktop.xpm
490 @if test ! -d $(prefix)/share/applications ; then mkdir -p $(prefix)/share/applications ; fi
491 $(INSTALL) -m 644 etc/mplayer.desktop $(prefix)/share/applications/mplayer.desktop
492 endif
493 @if test ! -d $(CONFDIR) ; then mkdir -p $(CONFDIR) ; fi
494 @if test -f $(CONFDIR)/codecs.conf ; then mv -f $(CONFDIR)/codecs.conf $(CONFDIR)/codecs.conf.old ; fi
495 ifeq ($(DVDKIT_SHARED),yes)
496 ifeq ($(DVDKIT2),yes)
497 if test ! -d $(LIBDIR) ; then mkdir -p $(LIBDIR) ; fi
498 $(INSTALL) -m 755 $(INSTALLSTRIP) libmpdvdkit2/libmpdvdkit.so $(LIBDIR)/libmpdvdkit.so
499 else
500 ifeq ($(DVDKIT),yes)
501 if test ! -d $(LIBDIR) ; then mkdir -p $(LIBDIR) ; fi
502 $(INSTALL) -m 755 $(INSTALLSTRIP) libmpdvdkit/libmpdvdkit.so $(LIBDIR)/libmpdvdkit.so
503 endif
504 endif
505 endif
507 uninstall:
508 -rm -f $(BINDIR)/$(PRG) $(BINDIR)/gmplayer $(MANDIR)/man1/mplayer.1
509 -rm -f $(BINDIR)/$(PRG_MENCODER) $(MANDIR)/man1/mencoder.1
510 -rm -f $(prefix)/share/pixmaps/mplayer-desktop.xpm
511 -rm -f $(prefix)/share/applications/mplayer.desktop
512 -rm -f $(LIBDIR)/libmpdvdkit.so
513 for l in $(MAN_LANG); do \
514 if test "i$$l" != "en"; then \
515 -rm -f $(MANDIR)/$$l/man1/mplayer.1 $(MANDIR)/$$l/man1/mencoder.1 \
516 -rm -f $(MANDIR)/$$l/man1/gmplayer.1 \
517 fi \
518 done
519 ifeq ($(VIDIX),yes)
520 $(DO_MAKE)
521 endif
522 @echo "Uninstall completed"
524 clean:
525 -rm -f *.o *~ $(OBJS) codecs.conf.h
527 distclean: doxygen_clean
528 -rm -f *~ $(PRG) $(PRG_MENCODER) $(PRG_CFG) $(OBJS)
529 -rm -f *.o *.a .depend configure.log codecs.conf.h help_mp.h
530 @for a in $(PARTS); do $(MAKE) -C $$a distclean; done
532 strip:
533 strip -s $(ALL_PRG)
535 dep: depend
537 depend: help_mp.h
538 ./version.sh `$(CC) -dumpversion`
539 $(CC) -MM $(CFLAGS) -DCODECS2HTML mplayer.c mencoder.c $(SRCS_MPLAYER) $(SRCS_MENCODER) 1>.depend
540 @for a in $(PARTS); do $(MAKE) -C $$a dep; done
542 # ./configure must be run if it changed in CVS
543 config.h: configure
544 @echo "############################################################"
545 @echo "####### Please run ./configure again - it's changed! #######"
546 @echo "############################################################"
547 ifeq ($(wildcard .developer),)
548 @exit 1
549 endif
551 # do not rebuild after cvs commits if .developer file is present!
553 # rebuild at every config.h/config.mak change:
554 version.h:
555 ./version.sh `$(CC) -dumpversion`
556 ifeq ($(wildcard .developer),)
557 $(MAKE) distclean
558 endif
559 $(MAKE) depend
561 doxygen:
562 doxygen DOCS/tech/Doxyfile
564 doxygen_clean:
565 -rm -rf DOCS/tech/doxygen
567 help_mp.h: help/help_mp-en.h $(HELP_FILE)
568 @echo '// WARNING! This is a generated file. Do NOT edit.' > help_mp.h
569 @echo '// See the help/ subdir for the editable files.' >> help_mp.h
570 ifeq ($(CHARSET),)
571 @echo '#include "$(HELP_FILE)"' >> help_mp.h
572 else
573 iconv -f `cat $(HELP_FILE).charset` -t $(CHARSET) "$(HELP_FILE)" >> help_mp.h
574 endif
576 ifneq ($(HELP_FILE),help/help_mp-en.h)
577 @echo "Adding untranslated messages to help_mp.h"
578 @echo '// untranslated messages from the English master file:' >> help_mp.h
579 @help/help_diff.sh $(HELP_FILE) < help/help_mp-en.h >> help_mp.h
580 endif
582 # rebuild at every CVS update or config/makefile change:
583 ifeq ($(wildcard .developer),)
584 ifneq ($(wildcard CVS/Entries),)
585 version.h: CVS/Entries
586 endif
587 version.h: config.h config.mak Makefile
588 endif
591 # include dependencies to get make to recurse into lib dirs,
592 # if the user desires such behavior
594 ifneq ($(wildcard .libdeps),)
595 include .libdeps
596 endif
599 # include dependency files if they exist
601 ifneq ($(wildcard .depend),)
602 include .depend
603 endif