Mercurial > mplayer.hg
annotate stream/Makefile @ 22044:1169d24cecb6
alphabetical order
author | diego |
---|---|
date | Mon, 29 Jan 2007 14:29:00 +0000 |
parents | af809f05ed57 |
children | 8bcff5c7e387 |
rev | line source |
---|---|
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
1 |
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
2 LIBNAME = stream.a |
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
3 |
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
4 include ../config.mak |
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
5 |
19300 | 6 SRCS += open.c \ |
21304
f6dbc626d84f
cosmetics: Merge SRCS together, alphabetical order, whitespace.
diego
parents:
21302
diff
changeset
|
7 stream.c \ |
f6dbc626d84f
cosmetics: Merge SRCS together, alphabetical order, whitespace.
diego
parents:
21302
diff
changeset
|
8 stream_cue.c \ |
f6dbc626d84f
cosmetics: Merge SRCS together, alphabetical order, whitespace.
diego
parents:
21302
diff
changeset
|
9 stream_file.c \ |
f6dbc626d84f
cosmetics: Merge SRCS together, alphabetical order, whitespace.
diego
parents:
21302
diff
changeset
|
10 stream_mf.c \ |
f6dbc626d84f
cosmetics: Merge SRCS together, alphabetical order, whitespace.
diego
parents:
21302
diff
changeset
|
11 stream_null.c \ |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
12 url.c \ |
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
13 |
21309 | 14 SRCS-$(CDDA) += stream_cdda.c cdinfo.c |
21326 | 15 SRCS-$(CDDB) += stream_cddb.c |
21309 | 16 SRCS-$(DVBIN) += dvb_tune.c stream_dvb.c |
17 SRCS-$(DVDNAV) += stream_dvdnav.c | |
18 SRCS-$(DVDREAD) += stream_dvd.c | |
19 SRCS-$(FTP) += stream_ftp.c | |
20 SRCS-$(LIBSMBCLIENT) += stream_smb.c | |
21 SRCS-$(MPLAYER_NETWORK) += stream_netstream.c \ | |
22 asf_mmst_streaming.c \ | |
23 asf_streaming.c \ | |
24 cookies.c \ | |
25 http.c \ | |
26 network.c \ | |
27 pnm.c \ | |
28 rtp.c \ | |
29 udp.c \ | |
30 tcp.c \ | |
31 stream_rtp.c \ | |
32 stream_rtsp.c \ | |
33 stream_udp.c \ | |
34 freesdp/common.c \ | |
35 freesdp/errorlist.c \ | |
36 freesdp/parser.c \ | |
37 librtsp/rtsp.c \ | |
38 librtsp/rtsp_rtp.c \ | |
39 librtsp/rtsp_session.c \ | |
40 realrtsp/asmrp.c \ | |
41 realrtsp/real.c \ | |
42 realrtsp/rmff.c \ | |
43 realrtsp/sdpplin.c \ | |
44 realrtsp/xbuffer.c \ | |
45 | |
46 SRCS-$(PVR) += stream_pvr.c | |
47 SRCS-$(RADIO) += stream_radio.c | |
48 SRCS-$(RADIO_CAPTURE) += audio_in.c | |
49 SRCS-$(STREAM_CACHE) += cache2.c | |
50 SRCS-$(STREAMING_LIVE555) += stream_livedotcom.c | |
51 SRCS-$(TV) += stream_tv.c tv.c frequencies.c tvi_dummy.c | |
52 SRCS-$(TV_BSDBT848) += tvi_bsdbt848.c | |
53 SRCS-$(TV_V4L1) += tvi_v4l.c audio_in.c | |
54 SRCS-$(TV_V4L2) += tvi_v4l2.c audio_in.c | |
55 SRCS-$(VCD) += stream_vcd.c | |
56 SRCS-$(VSTREAM) += stream_vstream.c | |
57 | |
58 #FIXME: These should have variables assigned in configure. | |
21302 | 59 ifeq ($(TV_V4L),yes) |
21309 | 60 SRCS-$(ALSA1X) += ai_alsa1x.c |
61 SRCS-$(ALSA9) += ai_alsa.c | |
62 SRCS-$(OSS) += ai_oss.c | |
21301
c5b4fa823865
Untangle dependencies that are handled by configure.
diego
parents:
21300
diff
changeset
|
63 endif |
21302 | 64 ifeq ($(RADIO_CAPTURE),yes) |
21309 | 65 SRCS-$(ALSA1X) += ai_alsa1x.c |
66 SRCS-$(ALSA9) += ai_alsa.c | |
67 SRCS-$(OSS) += ai_oss.c | |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
68 endif |
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
69 |
21300 | 70 CFLAGS = -I../loader |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
71 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
72 include ../mpcommon.mak |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
73 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
74 clean:: |
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
75 rm -f realrtsp/*.o realrtsp/*.a realrtsp/*~ \ |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
76 librtsp/*.o librtsp/*.a librtsp/*~ \ |
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
diff
changeset
|
77 freesdp/*.o freesdp/*.a freesdp/*~ |