summaryrefslogtreecommitdiffstats
path: root/TOOLS/netstream/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-01 09:39:32 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-01 09:39:32 +0000
commitc38e260ff824af6f9aa83aefc4b20cfd000e12a1 (patch)
tree90213770de3ddb18c77cdc93c800e9bbed4d58c3 /TOOLS/netstream/Makefile
parent8bf84ebd469ae2024eaffc41e6ec37cef3d3c9e9 (diff)
downloadmpv-c38e260ff824af6f9aa83aefc4b20cfd000e12a1.tar.bz2
mpv-c38e260ff824af6f9aa83aefc4b20cfd000e12a1.tar.xz
Move netstream.c out of its single-file subdirectory.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22873 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS/netstream/Makefile')
-rw-r--r--TOOLS/netstream/Makefile33
1 files changed, 0 insertions, 33 deletions
diff --git a/TOOLS/netstream/Makefile b/TOOLS/netstream/Makefile
deleted file mode 100644
index 57f06a06af..0000000000
--- a/TOOLS/netstream/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-
-MPROOT=../..
-
-include $(MPROOT)/config.mak
-
-CFLAGS = $(OPTFLAGS) -I$(MPROOT)
-
-all: netstream
-
-# FIXME: linking is a mess that should be fixed properly some day
-# it does not work with either GUI, LIVE555, libavformat, cdparanoia enabled
-DEPS = $(MPROOT)/libmpdemux/libmpdemux.a \
- $(MPROOT)/stream/stream.a \
- $(MPROOT)/dvdread/libdvdread.a \
- $(MPROOT)/libdvdcss/libdvdcss.a \
- $(MPROOT)/libavutil/libavutil.a \
- $(MPROOT)/m_option.o \
- $(MPROOT)/m_struct.o \
- $(MPROOT)/mp_msg.o \
- $(MPROOT)/osdep/libosdep.a \
- -ltermcap -lm \
-
-ifeq ($(TARGET_WIN32),yes)
-DEPS += -lwsock32
-endif
-
-netstream: $(DEPS)
- $(CC) -o $@ netstream.o $^
-
-clean:
- rm -f *.o *.a *~
-
-.PHONY: all clean