comparison stream/Makefile @ 21304:f6dbc626d84f

cosmetics: Merge SRCS together, alphabetical order, whitespace.
author diego
date Mon, 27 Nov 2006 12:09:58 +0000
parents 69380fc05a3e
children ef59ac68c9b6
comparison
equal deleted inserted replaced
21303:66605be4662b 21304:f6dbc626d84f
1 1
2 LIBNAME = stream.a 2 LIBNAME = stream.a
3 3
4 include ../config.mak 4 include ../config.mak
5 5
6 # Core
7 SRCS += open.c \ 6 SRCS += open.c \
7 stream.c \
8 stream_cue.c \
9 stream_file.c \
10 stream_mf.c \
11 stream_null.c \
8 url.c \ 12 url.c \
9 13
10 ifeq ($(STREAM_CACHE),yes) 14 ifeq ($(STREAM_CACHE),yes)
11 SRCS += cache2.c 15 SRCS += cache2.c
12 endif 16 endif
13
14 ifeq ($(CDDA),yes) 17 ifeq ($(CDDA),yes)
15 SRCS += stream_cdda.c cdinfo.c 18 SRCS += stream_cdda.c cdinfo.c
16 ifeq ($(MPLAYER_NETWORK),yes) 19 ifeq ($(MPLAYER_NETWORK),yes)
17 SRCS += stream_cddb.c 20 SRCS += stream_cddb.c
18 endif 21 endif
19 endif 22 endif
20
21 # Stream readers/writers
22 SRCS += stream.c \
23 stream_cue.c \
24 stream_file.c \
25 stream_mf.c \
26 stream_null.c \
27
28 ifeq ($(DVDREAD),yes) 23 ifeq ($(DVDREAD),yes)
29 SRCS += stream_dvd.c 24 SRCS += stream_dvd.c
30 endif 25 endif
31 ifeq ($(DVDNAV),yes) 26 ifeq ($(DVDNAV),yes)
32 SRCS += stream_dvdnav.c 27 SRCS += stream_dvdnav.c
47 SRCS += stream_livedotcom.c 42 SRCS += stream_livedotcom.c
48 endif 43 endif
49 ifeq ($(VSTREAM),yes) 44 ifeq ($(VSTREAM),yes)
50 SRCS += stream_vstream.c 45 SRCS += stream_vstream.c
51 endif 46 endif
52
53 # TV in
54 ifeq ($(TV),yes) 47 ifeq ($(TV),yes)
55 SRCS += stream_tv.c tv.c frequencies.c tvi_dummy.c 48 SRCS += stream_tv.c tv.c frequencies.c tvi_dummy.c
56 endif 49 endif
57 ifeq ($(TV_BSDBT848),yes) 50 ifeq ($(TV_BSDBT848),yes)
58 SRCS += tvi_bsdbt848.c 51 SRCS += tvi_bsdbt848.c
75 endif 68 endif
76 ifeq ($(OSS),yes) 69 ifeq ($(OSS),yes)
77 SRCS += ai_oss.c 70 SRCS += ai_oss.c
78 endif 71 endif
79 endif 72 endif
80
81 # Radio in
82 ifeq ($(RADIO),yes) 73 ifeq ($(RADIO),yes)
83 SRCS += stream_radio.c 74 SRCS += stream_radio.c
84 endif 75 endif
85 ifeq ($(RADIO_CAPTURE),yes) 76 ifeq ($(RADIO_CAPTURE),yes)
86 SRCS += audio_in.c 77 SRCS += audio_in.c
92 endif 83 endif
93 ifeq ($(OSS),yes) 84 ifeq ($(OSS),yes)
94 SRCS += ai_oss.c 85 SRCS += ai_oss.c
95 endif 86 endif
96 endif 87 endif
97
98 ifeq ($(MPLAYER_NETWORK),yes) 88 ifeq ($(MPLAYER_NETWORK),yes)
99 SRCS += asf_streaming.c \ 89 SRCS += asf_mmst_streaming.c \
90 asf_streaming.c \
91 cookies.c \
100 http.c \ 92 http.c \
101 network.c \ 93 network.c \
102 cookies.c \
103 asf_mmst_streaming.c \
104 pnm.c \ 94 pnm.c \
105 rtp.c \ 95 rtp.c \
106 udp.c \ 96 udp.c \
107 tcp.c \ 97 tcp.c \
108 stream_rtsp.c \ 98 stream_rtsp.c \
109 stream_rtp.c \ 99 stream_rtp.c \
110 stream_udp.c \ 100 stream_udp.c \
111 101 freesdp/common.c \
112 SRCS += realrtsp/asmrp.c \ 102 freesdp/errorlist.c \
103 freesdp/parser.c \
104 librtsp/rtsp.c \
105 librtsp/rtsp_rtp.c \
106 librtsp/rtsp_session.c \
107 realrtsp/asmrp.c \
113 realrtsp/real.c \ 108 realrtsp/real.c \
114 realrtsp/rmff.c \ 109 realrtsp/rmff.c \
115 realrtsp/sdpplin.c \ 110 realrtsp/sdpplin.c \
116 realrtsp/xbuffer.c \ 111 realrtsp/xbuffer.c \
117
118 SRCS += librtsp/rtsp.c \
119 librtsp/rtsp_rtp.c \
120 librtsp/rtsp_session.c \
121
122 SRCS += freesdp/common.c \
123 freesdp/errorlist.c \
124 freesdp/parser.c \
125
126 endif 112 endif
127
128 ifeq ($(DVBIN),yes) 113 ifeq ($(DVBIN),yes)
129 SRCS += stream_dvb.c 114 SRCS += dvb_tune.c stream_dvb.c
130 SRCS += dvb_tune.c
131 endif 115 endif
132 116
133 CFLAGS = -I../loader 117 CFLAGS = -I../loader
134 118
135 include ../mpcommon.mak 119 include ../mpcommon.mak