Mercurial > mplayer.hg
annotate Makefile @ 1831:57afd6a8ae78
Ehh colaCounter++
author | atmos4 |
---|---|
date | Sat, 01 Sep 2001 20:15:21 +0000 |
parents | 0def229bd8bc |
children | e0cc7b7290ec |
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 | |
1562 | 19 SRCS = mp_msg.c open.c parse_es.c ac3-iec958.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 demux_mov.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) |
1680
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1562
diff
changeset
|
23 VO_LIBS = -Llibvo -lvo $(MLIB_LIB) $(X_LIBS) |
1 | 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 |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1497
diff
changeset
|
27 ifneq ($(W32_LIB),) |
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 endif |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1497
diff
changeset
|
31 LOADER_DEP = $(W32_DEP) $(DS_DEP) |
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1497
diff
changeset
|
32 LIB_LOADER = $(W32_LIB) $(DS_LIB) |
1309
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 |
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
|
45 COMMONLIBS = libvo/libvo.a libao2/libao2.a libac3/libac3.a mp3lib/libMP3.a libmpeg2/libmpeg2.a opendivx/libdecore.a encore/libencore.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 |
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
|
78 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
|
79 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
|
80 @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
|
81 |
1315
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
82 $(PRG): $(MPLAYER_DEP) |
1694 | 83 $(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) $(GUI_LIBS) $(ARCH_LIBS) |
1 | 84 |
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
|
85 $(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
|
86 $(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
|
87 |
1010 | 88 # $(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
|
89 # $(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 | 90 |
1010 | 91 # $(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
|
92 # $(CC) $(CFLAGS) -o $(PRG_AVIP) aviparse.o $(OBJS) $(A_LIBS) -lm $(TERMCAP_LIB) -Lloader -lloader -ldl $(VO_LIBS) -lpthread |
1 | 93 |
1010 | 94 # $(PRG_TV): depfile tvision.o $(OBJS) $(COMMONLIBS) |
627
f03f9ae6303a
DShow support selection is now by ./configure --disable-dshow
arpi_esp
parents:
608
diff
changeset
|
95 # $(CC) $(CFLAGS) -o $(PRG_TV) tvision.o $(OBJS) -lm $(TERMCAP_LIB) $(VO_LIBS) |
1 | 96 |
1315
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
97 # 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
|
98 # 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
|
99 # 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
|
100 # 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
|
101 # 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
|
102 $(MPLAYER_DEP): version.h |
1c214243caab
Reorder dependancies a bit, all *.o *.a files depend on version.h, this allows
jkeil
parents:
1309
diff
changeset
|
103 |
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
|
104 $(PRG_CFG): version.h codec-cfg.c codec-cfg.h |
608 | 105 $(CC) $(CFLAGS) -g codec-cfg.c -o $(PRG_CFG) -DCODECS2HTML |
297 | 106 |
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
|
107 install: $(PRG) $(PRG_FIBMAP) |
1356 | 108 install -d $(BINDIR) |
109 install -m 755 -s $(PRG) $(BINDIR)/$(PRG) | |
110 install -d $(prefix)/man/man1 | |
111 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
|
112 @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
|
113 @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
|
114 @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
|
115 @echo "able to play encrypted DVDs." |
1356 | 116 install -o root -g root -m 4755 -s $(PRG_FIBMAP) $(BINDIR)/$(PRG_FIBMAP) |
1 | 117 |
118 clean: | |
119 rm -f *.o *~ $(OBJS) | |
120 | |
121 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
|
122 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
|
123 @for a in $(PARTS); do $(MAKE) -C $$a distclean; done |
1 | 124 |
125 dep: depend | |
126 | |
1010 | 127 depend: |
1052 | 128 ./version.sh |
1010 | 129 $(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
|
130 @for a in $(PARTS); do $(MAKE) -C $$a dep; done |
1 | 131 |
643
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
132 # ./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
|
133 config.h: configure |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
134 @echo "############################################################" |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
135 @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
|
136 @echo "############################################################" |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
137 @exit 1 |
f1301ff4b979
forcing user to re-run ./configure if it's changed
arpi_esp
parents:
627
diff
changeset
|
138 |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
139 # 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
|
140 version.h: config.h config.mak Makefile |
1010 | 141 ./version.sh |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
142 $(MAKE) distclean |
1010 | 143 $(MAKE) depend |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
144 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
145 # rebuild at every CVS update: |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
146 ifneq ($(wildcard CVS/Entries),) |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
147 version.h: CVS/Entries |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
148 endif |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
444
diff
changeset
|
149 |
28 | 150 # |
151 # include dependency files if they exist | |
152 # | |
153 ifneq ($(wildcard .depend),) | |
154 include .depend | |
155 endif |