Mercurial > mplayer.hg
annotate Makefile @ 1423:3a347b949c5d
Furter compatibility with new ffmpeg stuff.
author | nick |
---|---|
date | Mon, 30 Jul 2001 09:08:23 +0000 |
parents | 8ecf18884ad8 |
children | f352e1e951ba |
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 | |
1405 | 19 SRCS = seek.c parse_es.c 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 | |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1376
diff
changeset
|
25 PARTS = mp3lib libac3 libmpeg2 opendivx libavcodec encore libvo libao2 drivers drivers/syncfb |
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1376
diff
changeset
|
26 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
27 ifeq ($(TARGET_ARCH_X86),yes) |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1376
diff
changeset
|
28 PARTS += loader loader/DirectShow |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
29 SRCS += dll_init.c |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
30 LOADER_DEP = loader/libloader.a $(DS_DEP) |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
31 LIB_LOADER = -Lloader -lloader $(DS_LIB) |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
32 else |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
33 LOADER_DEP = |
1315
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
34 LIB_LOADER = |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
35 endif |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
36 |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
37 |
1 | 38 .SUFFIXES: .c .o |
39 | |
40 # .PHONY: all clean | |
41 | |
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
|
42 all: $(PRG) $(PRG_FIBMAP) |
1 | 43 # $(PRG_AVIP) |
44 | |
45 .c.o: | |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
608
diff
changeset
|
46 $(CC) -c $(CFLAGS) -o $@ $< |
1 | 47 |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1376
diff
changeset
|
48 COMMONLIBS = libvo/libvo.a libao2/libao2.a libac3/libac3.a mp3lib/libMP3.a libmpeg2/libmpeg2.a opendivx/libdecore.a encore/libencore.a |
1 | 49 |
50 loader/libloader.a: | |
51 $(MAKE) -C loader | |
52 | |
257 | 53 loader/DirectShow/libDS_Filter.a: |
54 $(MAKE) -C loader/DirectShow | |
55 | |
1279 | 56 libavcodec/libavcodec.a: |
57 $(MAKE) -C libavcodec | |
58 | |
1 | 59 libmpeg2/libmpeg2.a: |
60 $(MAKE) -C libmpeg2 | |
61 | |
62 libvo/libvo.a: | |
63 $(MAKE) -C libvo | |
64 | |
1013
74d55f3c4680
libao->libao2 because of conflict with OMS's libao
arpi_esp
parents:
1010
diff
changeset
|
65 libao2/libao2.a: |
955 | 66 $(MAKE) -C libao2 |
67 | |
1 | 68 libac3/libac3.a: |
69 $(MAKE) -C libac3 | |
70 | |
71 mp3lib/libMP3.a: | |
72 $(MAKE) -C mp3lib | |
73 | |
74 opendivx/libdecore.a: | |
75 $(MAKE) -C opendivx | |
76 | |
77 encore/libencore.a: | |
78 $(MAKE) -C encore | |
79 | |
723 | 80 |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1376
diff
changeset
|
81 MPLAYER_DEP = mplayer.o $(OBJS) $(LOADER_DEP) $(AV_DEP) $(COMMONLIBS) |
1315
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
82 mplayerwithoutlink: $(MPLAYER_DEP) |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1376
diff
changeset
|
83 @for a in $(PARTS); do $(MAKE) -C $$a all ; done |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1291
diff
changeset
|
84 |
1315
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
85 $(PRG): $(MPLAYER_DEP) |
1349 | 86 $(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 | 87 |
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
|
88 $(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
|
89 $(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
|
90 |
1010 | 91 # $(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
|
92 # $(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 | 93 |
1010 | 94 # $(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
|
95 # $(CC) $(CFLAGS) -o $(PRG_AVIP) aviparse.o $(OBJS) $(A_LIBS) -lm $(TERMCAP_LIB) -Lloader -lloader -ldl $(VO_LIBS) -lpthread |
1 | 96 |
1010 | 97 # $(PRG_TV): depfile tvision.o $(OBJS) $(COMMONLIBS) |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
608
diff
changeset
|
98 # $(CC) $(CFLAGS) -o $(PRG_TV) tvision.o $(OBJS) -lm $(TERMCAP_LIB) $(VO_LIBS) |
1 | 99 |
1315
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
100 # 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
|
101 # 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
|
102 # 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
|
103 # 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
|
104 # 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
|
105 $(MPLAYER_DEP): version.h |
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
106 |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1376
diff
changeset
|
107 $(PRG_CFG): version.h codec-cfg.c codec-cfg.h |
608 | 108 $(CC) $(CFLAGS) -g codec-cfg.c -o $(PRG_CFG) -DCODECS2HTML |
297 | 109 |
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
|
110 install: $(PRG) $(PRG_FIBMAP) |
1356 | 111 install -d $(BINDIR) |
112 install -m 755 -s $(PRG) $(BINDIR)/$(PRG) | |
113 install -d $(prefix)/man/man1 | |
114 install -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
|
115 @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
|
116 @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
|
117 @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
|
118 @echo "able to play encrypted DVDs." |
1356 | 119 install -o root -g root -m 4755 -s $(PRG_FIBMAP) $(BINDIR)/$(PRG_FIBMAP) |
1 | 120 |
121 clean: | |
122 rm -f *.o *~ $(OBJS) | |
123 | |
124 distclean: | |
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
|
125 rm -f *~ $(PRG) $(PRG_FIBMAP) $(PRG_HQ) $(PRG_AVIP) $(PRG_TV) $(OBJS) *.o *.a .depend |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1376
diff
changeset
|
126 @for a in $(PARTS); do $(MAKE) -C $$a distclean; done |
1 | 127 |
128 dep: depend | |
129 | |
1010 | 130 depend: |
1052 | 131 ./version.sh |
1010 | 132 $(CC) -MM $(CFLAGS) mplayer.c $(SRCS) 1>.depend |
1395
a721a2b91d3d
Added StrongARM crosscompiling support by Maksim Krasnyanskiy <maxk at qualcomm.com> and fixed a --datadir bug in configure.
atmos4
parents:
1376
diff
changeset
|
133 @for a in $(PARTS); do $(MAKE) -C $$a dep; done |
1 | 134 |
643
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
135 # ./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
|
136 config.h: configure |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
137 @echo "############################################################" |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
138 @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
|
139 @echo "############################################################" |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
140 @exit 1 |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
141 |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
142 # 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
|
143 version.h: config.h config.mak Makefile |
1010 | 144 ./version.sh |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
145 $(MAKE) distclean |
1010 | 146 $(MAKE) depend |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
147 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
148 # rebuild at every CVS update: |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
149 ifneq ($(wildcard CVS/Entries),) |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
150 version.h: CVS/Entries |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
151 endif |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
152 |
28 | 153 # |
154 # include dependency files if they exist | |
155 # | |
156 ifneq ($(wildcard .depend),) | |
157 include .depend | |
158 endif |