summaryrefslogtreecommitdiffstats
path: root/stream/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-27 12:09:58 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-27 12:09:58 +0000
commite75bb06919e12ed128a34e5c0fd5fcb0b828430c (patch)
tree9bc7ca76b9846637e95148da37f502edd2f84d76 /stream/Makefile
parentb8f08fe3b0f4ecb3fb5ebb193845300265be0448 (diff)
downloadmpv-e75bb06919e12ed128a34e5c0fd5fcb0b828430c.tar.bz2
mpv-e75bb06919e12ed128a34e5c0fd5fcb0b828430c.tar.xz
cosmetics: Merge SRCS together, alphabetical order, whitespace.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21320 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/Makefile')
-rw-r--r--stream/Makefile48
1 files changed, 16 insertions, 32 deletions
diff --git a/stream/Makefile b/stream/Makefile
index c17520e367..be3f6a4361 100644
--- a/stream/Makefile
+++ b/stream/Makefile
@@ -3,28 +3,23 @@ LIBNAME = stream.a
include ../config.mak
-# Core
SRCS += open.c \
+ stream.c \
+ stream_cue.c \
+ stream_file.c \
+ stream_mf.c \
+ stream_null.c \
url.c \
ifeq ($(STREAM_CACHE),yes)
SRCS += cache2.c
endif
-
ifeq ($(CDDA),yes)
SRCS += stream_cdda.c cdinfo.c
ifeq ($(MPLAYER_NETWORK),yes)
SRCS += stream_cddb.c
endif
endif
-
-# Stream readers/writers
-SRCS += stream.c \
- stream_cue.c \
- stream_file.c \
- stream_mf.c \
- stream_null.c \
-
ifeq ($(DVDREAD),yes)
SRCS += stream_dvd.c
endif
@@ -49,8 +44,6 @@ endif
ifeq ($(VSTREAM),yes)
SRCS += stream_vstream.c
endif
-
-# TV in
ifeq ($(TV),yes)
SRCS += stream_tv.c tv.c frequencies.c tvi_dummy.c
endif
@@ -77,8 +70,6 @@ ifeq ($(TV_V4L),yes)
SRCS += ai_oss.c
endif
endif
-
-# Radio in
ifeq ($(RADIO),yes)
SRCS += stream_radio.c
endif
@@ -94,13 +85,12 @@ SRCS += audio_in.c
SRCS += ai_oss.c
endif
endif
-
ifeq ($(MPLAYER_NETWORK),yes)
-SRCS += asf_streaming.c \
+SRCS += asf_mmst_streaming.c \
+ asf_streaming.c \
+ cookies.c \
http.c \
network.c \
- cookies.c \
- asf_mmst_streaming.c \
pnm.c \
rtp.c \
udp.c \
@@ -108,26 +98,20 @@ SRCS += asf_streaming.c \
stream_rtsp.c \
stream_rtp.c \
stream_udp.c \
-
-SRCS += realrtsp/asmrp.c \
+ freesdp/common.c \
+ freesdp/errorlist.c \
+ freesdp/parser.c \
+ librtsp/rtsp.c \
+ librtsp/rtsp_rtp.c \
+ librtsp/rtsp_session.c \
+ realrtsp/asmrp.c \
realrtsp/real.c \
realrtsp/rmff.c \
realrtsp/sdpplin.c \
realrtsp/xbuffer.c \
-
-SRCS += librtsp/rtsp.c \
- librtsp/rtsp_rtp.c \
- librtsp/rtsp_session.c \
-
-SRCS += freesdp/common.c \
- freesdp/errorlist.c \
- freesdp/parser.c \
-
endif
-
ifeq ($(DVBIN),yes)
-SRCS += stream_dvb.c
-SRCS += dvb_tune.c
+SRCS += dvb_tune.c stream_dvb.c
endif
CFLAGS = -I../loader