Mercurial > mplayer.hg
annotate Makefile @ 1351:d0d27f5800ea
info about odivx vs. divx4
author | arpi |
---|---|
date | Thu, 19 Jul 2001 23:40:33 +0000 |
parents | 3db173705860 |
children | e28a160922d4 |
rev | line source |
---|---|
1 | 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 | |
492 | 5 # * DVD support |
1 | 6 |
7 include config.mak | |
8 | |
9 PRG = mplayer | |
118 | 10 PRG_HQ = mplayerHQ |
1 | 11 PRG_AVIP = aviparse |
1163
ac1341d4a2a7
According an idea, mplayer now can use external setuid root wrapper to do FIBMAP ioctl (requires root priv). Also, a serious bug was fixed in dvdauth.c made by some guy when mixing old and new style CSS API into dvdauth.c ;-)
lgb
parents:
1060
diff
changeset
|
12 PRG_FIBMAP = fibmap_mplayer |
1 | 13 PRG_TV = tvision |
297 | 14 PRG_CFG = codec-cfg |
15 | |
912 | 16 #prefix = /usr/local |
1 | 17 BINDIR = ${prefix}/bin |
18 # BINDIR = /usr/local/bin | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
19 SRCS = find_sub.c aviprint.c dec_audio.c dec_video.c aviwrite.c aviheader.c asfheader.c demux_avi.c demux_asf.c demux_mpg.c demuxer.c stream.c codec-cfg.c subreader.c linux/getch2.c linux/timer-lx.c linux/shmem.c xa/xa_gsm.c lirc_mp.c cfgparser.c mixer.c dvdauth.c spudec.c $(STREAM_SRCS) |
866
91087aaea5c7
using gcc -MM instead of makedepend, make OBJS from SRCS where possible
arpi_esp
parents:
833
diff
changeset
|
20 OBJS = $(SRCS:.c=.o) |
1234 | 21 CFLAGS = $(OPTFLAGS) -Iloader -Ilibvo $(CSS_INC) $(EXTRA_INC) # -Wall |
1033 | 22 A_LIBS = -Lmp3lib -lMP3 -Llibac3 -lac3 $(ALSA_LIB) $(ESD_LIB) |
1 | 23 VO_LIBS = -Llibvo -lvo $(X_LIBS) |
24 | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
25 ifeq ($(TARGET_ARCH_X86),yes) |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
26 SRCS += dll_init.c |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
27 LOADER_DEP = loader/libloader.a $(DS_DEP) |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
28 LIB_LOADER = -Lloader -lloader $(DS_LIB) |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
29 else |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
30 LOADER_DEP = |
1315
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
31 LIB_LOADER = |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
32 endif |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
33 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
34 |
1 | 35 .SUFFIXES: .c .o |
36 | |
37 # .PHONY: all clean | |
38 | |
1163
ac1341d4a2a7
According an idea, mplayer now can use external setuid root wrapper to do FIBMAP ioctl (requires root priv). Also, a serious bug was fixed in dvdauth.c made by some guy when mixing old and new style CSS API into dvdauth.c ;-)
lgb
parents:
1060
diff
changeset
|
39 all: $(PRG) $(PRG_FIBMAP) |
1 | 40 # $(PRG_AVIP) |
41 | |
42 .c.o: | |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
608
diff
changeset
|
43 $(CC) -c $(CFLAGS) -o $@ $< |
1 | 44 |
1013
74d55f3c4680
libao->libao2 because of conflict with OMS's libao
arpi_esp
parents:
1010
diff
changeset
|
45 COMMONLIBS = libvo/libvo.a libao2/libao2.a libac3/libac3.a mp3lib/libMP3.a |
1 | 46 |
47 loader/libloader.a: | |
48 $(MAKE) -C loader | |
49 | |
257 | 50 loader/DirectShow/libDS_Filter.a: |
51 $(MAKE) -C loader/DirectShow | |
52 | |
1279 | 53 libavcodec/libavcodec.a: |
54 $(MAKE) -C libavcodec | |
55 | |
1 | 56 libmpeg2/libmpeg2.a: |
57 $(MAKE) -C libmpeg2 | |
58 | |
59 libvo/libvo.a: | |
60 $(MAKE) -C libvo | |
61 | |
1013
74d55f3c4680
libao->libao2 because of conflict with OMS's libao
arpi_esp
parents:
1010
diff
changeset
|
62 libao2/libao2.a: |
955 | 63 $(MAKE) -C libao2 |
64 | |
1 | 65 libac3/libac3.a: |
66 $(MAKE) -C libac3 | |
67 | |
68 mp3lib/libMP3.a: | |
69 $(MAKE) -C mp3lib | |
70 | |
71 opendivx/libdecore.a: | |
72 $(MAKE) -C opendivx | |
73 | |
74 encore/libencore.a: | |
75 $(MAKE) -C encore | |
76 | |
723 | 77 |
1315
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
78 MPLAYER_DEP = mplayer.o $(OBJS) $(LOADER_DEP) $(AV_DEP) libmpeg2/libmpeg2.a opendivx/libdecore.a $(COMMONLIBS) encore/libencore.a |
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
79 |
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
80 mplayerwithoutlink: $(MPLAYER_DEP) |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
81 @for a in mp3lib libac3 libmpeg2 libvo opendivx libavcodec encore loader/DirectShow ; do $(MAKE) -C $$a all ; done |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
82 |
1315
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
83 $(PRG): $(MPLAYER_DEP) |
1349 | 84 $(CC) $(CFLAGS) -o $(PRG) mplayer.o $(OBJS) $(XMM_LIBS) $(LIRC_LIBS) $(A_LIBS) -lm $(TERMCAP_LIB) $(LIB_LOADER) $(AV_LIB) -Llibmpeg2 -lmpeg2 -Llibao2 -lao2 $(VO_LIBS) $(CSS_LIB) -Lencore -lencore $(DECORE_LIBS) $(ARCH_LIBS) |
1 | 85 |
1163
ac1341d4a2a7
According an idea, mplayer now can use external setuid root wrapper to do FIBMAP ioctl (requires root priv). Also, a serious bug was fixed in dvdauth.c made by some guy when mixing old and new style CSS API into dvdauth.c ;-)
lgb
parents:
1060
diff
changeset
|
86 $(PRG_FIBMAP): fibmap_mplayer.o |
ac1341d4a2a7
According an idea, mplayer now can use external setuid root wrapper to do FIBMAP ioctl (requires root priv). Also, a serious bug was fixed in dvdauth.c made by some guy when mixing old and new style CSS API into dvdauth.c ;-)
lgb
parents:
1060
diff
changeset
|
87 $(CC) -o $(PRG_FIBMAP) fibmap_mplayer.o |
ac1341d4a2a7
According an idea, mplayer now can use external setuid root wrapper to do FIBMAP ioctl (requires root priv). Also, a serious bug was fixed in dvdauth.c made by some guy when mixing old and new style CSS API into dvdauth.c ;-)
lgb
parents:
1060
diff
changeset
|
88 |
1010 | 89 # $(PRG_HQ): depfile mplayerHQ.o $(OBJS) loader/libloader.a libmpeg2/libmpeg2.a opendivx/libdecore.a $(COMMONLIBS) encore/libencore.a |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
608
diff
changeset
|
90 # $(CC) $(CFLAGS) -o $(PRG_HQ) mplayerHQ.o $(OBJS) $(XMM_LIBS) $(LIRC_LIBS) $(A_LIBS) -lm $(TERMCAP_LIB) -Lloader -lloader -ldl -Llibmpeg2 -lmpeg2 -Lopendivx -ldecore $(VO_LIBS) -Lencore -lencore -lpthread |
118 | 91 |
1010 | 92 # $(PRG_AVIP): depfile aviparse.o $(OBJS) loader/libloader.a $(COMMONLIBS) |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
608
diff
changeset
|
93 # $(CC) $(CFLAGS) -o $(PRG_AVIP) aviparse.o $(OBJS) $(A_LIBS) -lm $(TERMCAP_LIB) -Lloader -lloader -ldl $(VO_LIBS) -lpthread |
1 | 94 |
1010 | 95 # $(PRG_TV): depfile tvision.o $(OBJS) $(COMMONLIBS) |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
608
diff
changeset
|
96 # $(CC) $(CFLAGS) -o $(PRG_TV) tvision.o $(OBJS) -lm $(TERMCAP_LIB) $(VO_LIBS) |
1 | 97 |
1315
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
98 # Every mplayer dependancy depends on version.h, to force building version.h |
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
99 # first (in serial mode) before any other of the dependancies for a parallel make |
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
100 # run. This is necessary, because the make rule for version.h removes objects |
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
101 # in a recursive "make distclean" and we must wait for this "make distclean" to |
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
102 # finish before be can start builing new object files. |
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
103 $(MPLAYER_DEP): version.h |
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
104 |
1010 | 105 $(PRG_CFG): version.h codec-cfg.c codec-cfg.h |
608 | 106 $(CC) $(CFLAGS) -g codec-cfg.c -o $(PRG_CFG) -DCODECS2HTML |
297 | 107 |
1163
ac1341d4a2a7
According an idea, mplayer now can use external setuid root wrapper to do FIBMAP ioctl (requires root priv). Also, a serious bug was fixed in dvdauth.c made by some guy when mixing old and new style CSS API into dvdauth.c ;-)
lgb
parents:
1060
diff
changeset
|
108 install: $(PRG) $(PRG_FIBMAP) |
953 | 109 install -D -m 755 -s $(PRG) $(BINDIR)/$(PRG) |
22 | 110 install -D -m 644 DOCS/mplayer.1 $(prefix)/man/man1/mplayer.1 |
1163
ac1341d4a2a7
According an idea, mplayer now can use external setuid root wrapper to do FIBMAP ioctl (requires root priv). Also, a serious bug was fixed in dvdauth.c made by some guy when mixing old and new style CSS API into dvdauth.c ;-)
lgb
parents:
1060
diff
changeset
|
111 @echo "Following task requires root privs. If it fails don't panic" |
ac1341d4a2a7
According an idea, mplayer now can use external setuid root wrapper to do FIBMAP ioctl (requires root priv). Also, a serious bug was fixed in dvdauth.c made by some guy when mixing old and new style CSS API into dvdauth.c ;-)
lgb
parents:
1060
diff
changeset
|
112 @echo "however it means you can't use fibmap_mplayer." |
ac1341d4a2a7
According an idea, mplayer now can use external setuid root wrapper to do FIBMAP ioctl (requires root priv). Also, a serious bug was fixed in dvdauth.c made by some guy when mixing old and new style CSS API into dvdauth.c ;-)
lgb
parents:
1060
diff
changeset
|
113 @echo "Without this (or without running mplayer as root) you won't be" |
1319
7e52516cb3d7
Added some directory existance tests to the distclean and depend targets, so
jkeil
parents:
1315
diff
changeset
|
114 @echo "able to play encrypted DVDs." |
1163
ac1341d4a2a7
According an idea, mplayer now can use external setuid root wrapper to do FIBMAP ioctl (requires root priv). Also, a serious bug was fixed in dvdauth.c made by some guy when mixing old and new style CSS API into dvdauth.c ;-)
lgb
parents:
1060
diff
changeset
|
115 install -D -o root -g root -m 4755 -s $(PRG_FIBMAP) $(BINDIR)/$(PRG_FIBMAP) |
1 | 116 |
117 clean: | |
118 rm -f *.o *~ $(OBJS) | |
119 | |
120 distclean: | |
1319
7e52516cb3d7
Added some directory existance tests to the distclean and depend targets, so
jkeil
parents:
1315
diff
changeset
|
121 @for a in mp3lib libac3 libmpeg2 opendivx libavcodec encore libvo libao2 loader loader/DirectShow drivers drivers/syncfb ; do \ |
7e52516cb3d7
Added some directory existance tests to the distclean and depend targets, so
jkeil
parents:
1315
diff
changeset
|
122 if [ -d $$a ] ; then \ |
7e52516cb3d7
Added some directory existance tests to the distclean and depend targets, so
jkeil
parents:
1315
diff
changeset
|
123 $(MAKE) -C $$a distclean ; \ |
7e52516cb3d7
Added some directory existance tests to the distclean and depend targets, so
jkeil
parents:
1315
diff
changeset
|
124 fi; \ |
7e52516cb3d7
Added some directory existance tests to the distclean and depend targets, so
jkeil
parents:
1315
diff
changeset
|
125 done |
1163
ac1341d4a2a7
According an idea, mplayer now can use external setuid root wrapper to do FIBMAP ioctl (requires root priv). Also, a serious bug was fixed in dvdauth.c made by some guy when mixing old and new style CSS API into dvdauth.c ;-)
lgb
parents:
1060
diff
changeset
|
126 rm -f *~ $(PRG) $(PRG_FIBMAP) $(PRG_HQ) $(PRG_AVIP) $(PRG_TV) $(OBJS) *.o *.a .depend |
1 | 127 |
128 dep: depend | |
129 | |
1010 | 130 depend: |
1052 | 131 ./version.sh |
1010 | 132 $(CC) -MM $(CFLAGS) mplayer.c $(SRCS) 1>.depend |
1319
7e52516cb3d7
Added some directory existance tests to the distclean and depend targets, so
jkeil
parents:
1315
diff
changeset
|
133 @for a in mp3lib libac3 libmpeg2 libvo libao2 opendivx libavcodec encore loader/DirectShow ; do \ |
7e52516cb3d7
Added some directory existance tests to the distclean and depend targets, so
jkeil
parents:
1315
diff
changeset
|
134 if [ -d $$a ] ; then \ |
7e52516cb3d7
Added some directory existance tests to the distclean and depend targets, so
jkeil
parents:
1315
diff
changeset
|
135 $(MAKE) -C $$a dep ; \ |
7e52516cb3d7
Added some directory existance tests to the distclean and depend targets, so
jkeil
parents:
1315
diff
changeset
|
136 fi ; \ |
7e52516cb3d7
Added some directory existance tests to the distclean and depend targets, so
jkeil
parents:
1315
diff
changeset
|
137 done |
1 | 138 |
643
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
139 # ./configure must be run if it changed in CVS |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
140 config.h: configure |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
141 @echo "############################################################" |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
142 @echo "####### Please run ./configure again - it's changed! #######" |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
143 @echo "############################################################" |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
144 @exit 1 |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
145 |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
146 # rebuild at every config.h/config.mak change: |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
147 version.h: config.h config.mak Makefile |
1010 | 148 ./version.sh |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
149 $(MAKE) distclean |
1010 | 150 $(MAKE) depend |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
151 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
152 # rebuild at every CVS update: |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
153 ifneq ($(wildcard CVS/Entries),) |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
154 version.h: CVS/Entries |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
155 endif |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
156 |
28 | 157 # |
158 # include dependency files if they exist | |
159 # | |
160 ifneq ($(wildcard .depend),) | |
161 include .depend | |
162 endif | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
163 |
1042
b333271f4e7c
Solaris 8 DVD support and other fixes by Juergen Keil <jk@tools.de>
arpi_esp
parents:
1033
diff
changeset
|
164 |