1
mirror of https://github.com/mpv-player/mpv synced 2024-10-22 08:51:57 +02:00
mpv/TOOLS/netstream/Makefile
diego d4d454e307 Simplify link command.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22658 b3059339-0415-0410-9bf9-f77b7e298cf2
2007-03-17 00:28:30 +00:00

40 lines
871 B
Makefile

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)/libvo/aclib.o \
$(MPROOT)/libmpcodecs/img_format.o \
$(MPROOT)/liba52/liba52.a \
$(MPROOT)/m_option.o \
$(MPROOT)/m_struct.o \
$(MPROOT)/subreader.o \
$(MPROOT)/mp_msg.o \
$(MPROOT)/osdep/shmem.o \
$(MPROOT)/osdep/timer-*.o \
$(MPROOT)/osdep/strlcpy.o \
$(MPROOT)/osdep/getch2.o \
-ltermcap -lm \
ifeq ($(TARGET_WIN32),yes)
DEPS += $(MPROOT)/osdep/glob-win.o -lwsock32
endif
netstream: $(DEPS)
$(CC) -o $@ netstream.o $^
clean:
rm -f *.o *.a *~
.PHONY: all clean