comparison stream/Makefile @ 21309:ef59ac68c9b6

FFmpeg-style dependency declaration
author diego
date Mon, 27 Nov 2006 13:42:36 +0000
parents f6dbc626d84f
children af809f05ed57
comparison
equal deleted inserted replaced
21308:22a33d822400 21309:ef59ac68c9b6
9 stream_file.c \ 9 stream_file.c \
10 stream_mf.c \ 10 stream_mf.c \
11 stream_null.c \ 11 stream_null.c \
12 url.c \ 12 url.c \
13 13
14 ifeq ($(STREAM_CACHE),yes) 14 SRCS-$(CDDA) += stream_cdda.c cdinfo.c
15 SRCS += cache2.c 15 SRCS-$(DVBIN) += dvb_tune.c stream_dvb.c
16 endif 16 SRCS-$(DVDNAV) += stream_dvdnav.c
17 SRCS-$(DVDREAD) += stream_dvd.c
18 SRCS-$(FTP) += stream_ftp.c
19 SRCS-$(LIBSMBCLIENT) += stream_smb.c
20 SRCS-$(MPLAYER_NETWORK) += stream_netstream.c \
21 asf_mmst_streaming.c \
22 asf_streaming.c \
23 cookies.c \
24 http.c \
25 network.c \
26 pnm.c \
27 rtp.c \
28 udp.c \
29 tcp.c \
30 stream_rtp.c \
31 stream_rtsp.c \
32 stream_udp.c \
33 freesdp/common.c \
34 freesdp/errorlist.c \
35 freesdp/parser.c \
36 librtsp/rtsp.c \
37 librtsp/rtsp_rtp.c \
38 librtsp/rtsp_session.c \
39 realrtsp/asmrp.c \
40 realrtsp/real.c \
41 realrtsp/rmff.c \
42 realrtsp/sdpplin.c \
43 realrtsp/xbuffer.c \
44
45 SRCS-$(PVR) += stream_pvr.c
46 SRCS-$(RADIO) += stream_radio.c
47 SRCS-$(RADIO_CAPTURE) += audio_in.c
48 SRCS-$(STREAM_CACHE) += cache2.c
49 SRCS-$(STREAMING_LIVE555) += stream_livedotcom.c
50 SRCS-$(TV) += stream_tv.c tv.c frequencies.c tvi_dummy.c
51 SRCS-$(TV_BSDBT848) += tvi_bsdbt848.c
52 SRCS-$(TV_V4L1) += tvi_v4l.c audio_in.c
53 SRCS-$(TV_V4L2) += tvi_v4l2.c audio_in.c
54 SRCS-$(VCD) += stream_vcd.c
55 SRCS-$(VSTREAM) += stream_vstream.c
56
57 #FIXME: These should have variables assigned in configure.
17 ifeq ($(CDDA),yes) 58 ifeq ($(CDDA),yes)
18 SRCS += stream_cdda.c cdinfo.c 59 SRCS-$(MPLAYER_NETWORK) += stream_cddb.c
19 ifeq ($(MPLAYER_NETWORK),yes)
20 SRCS += stream_cddb.c
21 endif
22 endif
23 ifeq ($(DVDREAD),yes)
24 SRCS += stream_dvd.c
25 endif
26 ifeq ($(DVDNAV),yes)
27 SRCS += stream_dvdnav.c
28 endif
29 ifeq ($(VCD),yes)
30 SRCS += stream_vcd.c
31 endif
32 ifeq ($(FTP),yes)
33 SRCS += stream_ftp.c
34 endif
35 ifeq ($(LIBSMBCLIENT),yes)
36 SRCS += stream_smb.c
37 endif
38 ifeq ($(MPLAYER_NETWORK),yes)
39 SRCS += stream_netstream.c
40 endif
41 ifeq ($(STREAMING_LIVE555),yes)
42 SRCS += stream_livedotcom.c
43 endif
44 ifeq ($(VSTREAM),yes)
45 SRCS += stream_vstream.c
46 endif
47 ifeq ($(TV),yes)
48 SRCS += stream_tv.c tv.c frequencies.c tvi_dummy.c
49 endif
50 ifeq ($(TV_BSDBT848),yes)
51 SRCS += tvi_bsdbt848.c
52 endif
53 ifeq ($(TV_V4L2),yes)
54 SRCS += tvi_v4l2.c audio_in.c
55 endif
56 ifeq ($(PVR),yes)
57 SRCS += stream_pvr.c
58 endif
59 ifeq ($(TV_V4L1),yes)
60 SRCS += tvi_v4l.c audio_in.c
61 endif 60 endif
62 ifeq ($(TV_V4L),yes) 61 ifeq ($(TV_V4L),yes)
63 ifeq ($(ALSA1X),yes) 62 SRCS-$(ALSA1X) += ai_alsa1x.c
64 SRCS += ai_alsa1x.c 63 SRCS-$(ALSA9) += ai_alsa.c
65 endif 64 SRCS-$(OSS) += ai_oss.c
66 ifeq ($(ALSA9),yes)
67 SRCS += ai_alsa.c
68 endif
69 ifeq ($(OSS),yes)
70 SRCS += ai_oss.c
71 endif
72 endif
73 ifeq ($(RADIO),yes)
74 SRCS += stream_radio.c
75 endif 65 endif
76 ifeq ($(RADIO_CAPTURE),yes) 66 ifeq ($(RADIO_CAPTURE),yes)
77 SRCS += audio_in.c 67 SRCS-$(ALSA1X) += ai_alsa1x.c
78 ifeq ($(ALSA1X),yes) 68 SRCS-$(ALSA9) += ai_alsa.c
79 SRCS += ai_alsa1x.c 69 SRCS-$(OSS) += ai_oss.c
80 endif
81 ifeq ($(ALSA9),yes)
82 SRCS += ai_alsa.c
83 endif
84 ifeq ($(OSS),yes)
85 SRCS += ai_oss.c
86 endif
87 endif
88 ifeq ($(MPLAYER_NETWORK),yes)
89 SRCS += asf_mmst_streaming.c \
90 asf_streaming.c \
91 cookies.c \
92 http.c \
93 network.c \
94 pnm.c \
95 rtp.c \
96 udp.c \
97 tcp.c \
98 stream_rtsp.c \
99 stream_rtp.c \
100 stream_udp.c \
101 freesdp/common.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 \
108 realrtsp/real.c \
109 realrtsp/rmff.c \
110 realrtsp/sdpplin.c \
111 realrtsp/xbuffer.c \
112 endif
113 ifeq ($(DVBIN),yes)
114 SRCS += dvb_tune.c stream_dvb.c
115 endif 70 endif
116 71
117 CFLAGS = -I../loader 72 CFLAGS = -I../loader
118 73
119 include ../mpcommon.mak 74 include ../mpcommon.mak