Mercurial > mplayer.hg
view TOOLS/netstream/Makefile @ 22853:aaaedf34d589
Get netstream somewhat closer to linking.
author | diego |
---|---|
date | Sun, 01 Apr 2007 09:24:30 +0000 |
parents | d90e39c776b0 |
children | 404750261cfc |
line wrap: on
line source
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)/liba52/liba52.a \ $(MPROOT)/m_option.o \ $(MPROOT)/m_struct.o \ $(MPROOT)/subreader.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