Mercurial > mplayer.hg
annotate libmpdemux/Makefile @ 18344:690bc56d6ac0
French fixes by Bounec
author | gpoirier |
---|---|
date | Sat, 29 Apr 2006 17:18:07 +0000 |
parents | 75b56435f053 |
children | e3379df74bcd |
rev | line source |
---|---|
2311 | 1 |
2 LIBNAME = libmpdemux.a | |
3 | |
4 include ../config.mak | |
5 | |
15772 | 6 # Headers and header-dumpers |
7 SRCS = mp3_hdr.c \ | |
8 mpeg_hdr.c \ | |
9 asfheader.c \ | |
10 aviheader.c \ | |
11 aviprint.c \ | |
12 | |
13 # Core | |
14 SRCS += cache2.c \ | |
15 extension.c \ | |
16 mf.c \ | |
17 open.c \ | |
18 url.c \ | |
19 video.c \ | |
20 | |
21 # Miscellaneous | |
22 SRCS += cdda.c \ | |
23 cddb.c \ | |
24 cdinfo.c \ | |
25 cue_read.c \ | |
26 dvdnav_stream.c \ | |
27 parse_es.c \ | |
28 parse_mp4.c \ | |
29 yuv4mpeg.c \ | |
30 yuv4mpeg_ratio.c \ | |
31 | |
32 # Stream readers/writers | |
33 SRCS += stream.c \ | |
34 stream_file.c \ | |
35 stream_ftp.c \ | |
36 stream_livedotcom.c \ | |
37 stream_netstream.c \ | |
38 stream_null.c \ | |
39 stream_smb.c \ | |
40 stream_vcd.c \ | |
41 stream_vstream.c \ | |
42 | |
43 # TV in | |
44 SRCS += tv.c \ | |
45 frequencies.c \ | |
46 tvi_bsdbt848.c \ | |
47 tvi_dummy.c \ | |
48 tvi_v4l2.c \ | |
49 tvi_v4l.c \ | |
50 | |
51 # Audio in | |
52 SRCS += audio_in.c \ | |
53 ai_alsa1x.c \ | |
54 ai_alsa.c \ | |
55 ai_oss.c \ | |
56 | |
57 # Demuxers | |
58 SRCS += demuxer.c \ | |
59 demux_aac.c \ | |
60 demux_asf.c \ | |
61 demux_audio.c \ | |
62 demux_avi.c \ | |
63 demux_demuxers.c \ | |
64 demux_film.c \ | |
65 demux_fli.c \ | |
66 demux_gif.c \ | |
67 demux_lmlm4.c \ | |
68 demux_mf.c \ | |
69 demux_mov.c \ | |
15958
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15772
diff
changeset
|
70 demux_mpc.c \ |
15772 | 71 demux_mpg.c \ |
72 demux_nsv.c \ | |
73 demux_nuv.c \ | |
74 demux_ogg.c \ | |
75 demux_pva.c \ | |
76 demux_rawaudio.c \ | |
77 demux_rawdv.c \ | |
78 demux_rawvideo.c \ | |
79 demux_realaud.c \ | |
80 demux_real.c \ | |
81 demux_roq.c \ | |
82 demux_smjpeg.c \ | |
83 demux_ts.c \ | |
84 demux_ty.c \ | |
85 demux_ty_osd.c \ | |
86 demux_viv.c \ | |
87 demux_vqf.c \ | |
88 demux_y4m.c \ | |
89 | |
17191
6ac0b5f0d1ed
fix compilation when dvdkit and dvdread are not available
nicodvb
parents:
16572
diff
changeset
|
90 ifeq ($(HAVE_DVD),yes) |
6ac0b5f0d1ed
fix compilation when dvdkit and dvdread are not available
nicodvb
parents:
16572
diff
changeset
|
91 SRCS += stream_dvd.c |
6ac0b5f0d1ed
fix compilation when dvdkit and dvdread are not available
nicodvb
parents:
16572
diff
changeset
|
92 endif |
8528 | 93 ifeq ($(XMMS_PLUGINS),yes) |
94 SRCS += demux_xmms.c | |
95 endif | |
15772 | 96 ifneq ($(W32_LIB),) |
97 SRCS += demux_avs.c | |
98 endif | |
99 ifeq ($(MATROSKA),yes) | |
100 SRCS += demux_mkv.c ebml.c | |
101 endif | |
102 | |
103 # Muxers | |
17538 | 104 MUXERS = muxer.c \ |
15772 | 105 muxer_avi.c \ |
106 muxer_mpeg.c \ | |
107 muxer_rawaudio.c \ | |
108 muxer_rawvideo.c \ | |
109 | |
16165 | 110 LIBAV_INC = |
111 ifeq ($(CONFIG_LIBAVUTIL),yes) | |
112 LIBAV_INC += -I../libavutil | |
113 endif | |
114 ifeq ($(CONFIG_LIBAVCODEC),yes) | |
115 LIBAV_INC += -I../libavcodec | |
116 endif | |
15772 | 117 ifeq ($(CONFIG_LIBAVFORMAT),yes) |
16165 | 118 LIBAV_INC += -I../libavformat |
17538 | 119 SRCS += demux_lavf.c |
120 MUXERS += muxer_lavf.c | |
17354 | 121 endif |
122 ifeq ($(CONFIG_LIBAVFORMAT_SO),yes) | |
17538 | 123 SRCS += demux_lavf.c |
124 MUXERS += muxer_lavf.c | |
15772 | 125 endif |
126 | |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
10057
diff
changeset
|
127 ifeq ($(MPLAYER_NETWORK),yes) |
15772 | 128 SRCS += asf_streaming.c \ |
129 http.c \ | |
130 network.c \ | |
131 cookies.c \ | |
132 asf_mmst_streaming.c \ | |
133 pnm.c \ | |
134 rtp.c \ | |
135 | |
136 SRCS += realrtsp/asmrp.c \ | |
137 realrtsp/real.c \ | |
138 realrtsp/rmff.c \ | |
139 realrtsp/rtsp.c \ | |
140 realrtsp/rtsp_session.c \ | |
141 realrtsp/sdpplin.c \ | |
142 realrtsp/xbuffer.c \ | |
143 | |
16572
56a5f69e9b35
"LIVE.COM Streaming Media" is now called "LIVE555 Streaming Media".
rsf
parents:
16165
diff
changeset
|
144 ifeq ($(STREAMING_LIVE555),yes) |
9250 | 145 CPLUSPLUSSRCS = demux_rtp.cpp demux_rtp_codec.cpp |
13997 | 146 CPLUSPLUSINCLUDE = $(LIVE_INCLUDES) |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6474
diff
changeset
|
147 endif |
2311 | 148 endif |
149 | |
9610 | 150 ifeq ($(DVBIN),yes) |
151 SRCS += dvbin.c | |
152 SRCS += dvb_tune.c | |
153 endif | |
154 | |
17538 | 155 ifeq ($(MENCODER),yes) |
156 SRCS += $(MUXERS) | |
157 endif | |
158 | |
2311 | 159 OBJS = $(SRCS:.c=.o) |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6474
diff
changeset
|
160 OBJS += $(CPLUSPLUSSRCS:.cpp=.o) |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12958
diff
changeset
|
161 INCLUDE = -I.. -I../loader $(CSS_INC) $(EXTRA_INC) $(LIBAV_INC) |
10651
efb6dcac967d
--dvbincdir support by Gotz Waschk <waschk@informatik.uni-rostock.de>
alex
parents:
10634
diff
changeset
|
162 CFLAGS = $(OPTFLAGS) $(INCLUDE) $(XMMS_CFLAGS) $(CDPARANOIA_INC) $(DVB_INC) |
18137 | 163 CPLUSPLUSFLAGS = $(CFLAGS) $(CPLUSPLUSINCLUDE) -D__STDC_LIMIT_MACROS |
7168
cb1428dd4d79
assume $(CC) can compile c++ - fixes compile with non-default compiler
arpi
parents:
7148
diff
changeset
|
164 CPLUSPLUS = $(CC) |
2311 | 165 |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6474
diff
changeset
|
166 .SUFFIXES: .c .cpp .o |
2311 | 167 |
168 # .PHONY: all clean | |
169 | |
170 all: $(LIBNAME) | |
171 | |
172 .c.o: | |
173 $(CC) -c $(CFLAGS) -o $@ $< | |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6474
diff
changeset
|
174 .cpp.o: |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6474
diff
changeset
|
175 $(CPLUSPLUS) -c $(CPLUSPLUSFLAGS) -o $@ $< |
2311 | 176 |
177 $(LIBNAME): $(OBJS) | |
178 $(AR) r $(LIBNAME) $(OBJS) | |
12632 | 179 $(RANLIB) $(LIBNAME) |
2311 | 180 |
181 test: $(LIBNAME) test.c | |
17943
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17538
diff
changeset
|
182 $(CC) $(CFLAGS) test.c ../mp_msg.c ../osdep/shmem.c -o test \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17538
diff
changeset
|
183 ./libmpdemux.a ../libmpdvdkit2/libmpdvdkit.a ../libvo/aclib.o \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17538
diff
changeset
|
184 ../libmpcodecs/img_format.o ../libao2/afmt.o ../sub_cc.o \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17538
diff
changeset
|
185 ../m_option.o ../subreader.o \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17538
diff
changeset
|
186 $(ALSA_LIB) $(VORBIS_LIB) $(CDPARANOIA_LIB) -lz -lpthread |
2311 | 187 |
188 clean: | |
10057
d1f55b76ef2c
Made sure to clean out the "realrtsp" subdirectory when doing a "make clean"
rsf
parents:
10033
diff
changeset
|
189 rm -f *.o *.a *~ realrtsp/*.o realrtsp/*.a realrtsp/*~ |
2311 | 190 |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
17354
diff
changeset
|
191 distclean: clean |
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
17354
diff
changeset
|
192 rm -f .depend test |
2311 | 193 |
194 dep: depend | |
195 | |
196 depend: | |
197 $(CC) -MM $(CFLAGS) test.c $(SRCS) 1>.depend | |
198 | |
199 # | |
200 # include dependency files if they exist | |
201 # | |
202 ifneq ($(wildcard .depend),) | |
203 include .depend | |
204 endif |