comparison Makefile @ 8353:6dd42a044681

a little (my first!) patch to add some info about MPlayer on Irix 6.5 to documentation.html and some changes to the configure script + Makefile to support optional different "install" location and change ranlib to ar when Irix is detected. Steffen Boelaars <mplayer.development@graphicscave.com>
author arpi
date Wed, 04 Dec 2002 23:29:41 +0000
parents cd02bf201f38
children 3ca9cc46df5c
comparison
equal deleted inserted replaced
8352:2aed330d2054 8353:6dd42a044681
14 # Do not strip the binaries at installation 14 # Do not strip the binaries at installation
15 ifeq ($(STRIPBINARIES),yes) 15 ifeq ($(STRIPBINARIES),yes)
16 INSTALLSTRIP = -s 16 INSTALLSTRIP = -s
17 endif 17 endif
18 18
19
20 # These subdirectories require installation due to binaries within them. 19 # These subdirectories require installation due to binaries within them.
21 ifeq ($(VIDIX),yes) 20 ifeq ($(VIDIX),yes)
22 SUBDIRS += libdha vidix 21 SUBDIRS += libdha vidix
23 DO_MAKE = @ for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done 22 DO_MAKE = @ for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done
24 endif 23 endif
25
26 # a BSD compatible 'install' program
27 INSTALL = install
28 24
29 SRCS_COMMON = cpudetect.c codec-cfg.c cfgparser.c my_profile.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 25 SRCS_COMMON = cpudetect.c codec-cfg.c cfgparser.c my_profile.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
30 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 26 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
31 SRCS_MPLAYER = mplayer.c mp_msg.c $(SRCS_COMMON) mixer.c parser-mpcmd.c 27 SRCS_MPLAYER = mplayer.c mp_msg.c $(SRCS_COMMON) mixer.c parser-mpcmd.c
32 28