Ignore netstream and fix its compilation; remove object files on make clean.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22874 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-04-01 09:45:26 +00:00
parent c38e260ff8
commit cdcae64dc0
1 changed files with 4 additions and 4 deletions

View File

@ -65,11 +65,11 @@ ifeq ($(TARGET_WIN32),yes)
NETSTREAM_DEPS += -lwsock32
endif
netstream: $(NETSTREAM_DEPS)
$(CC) -o $@ netstream.o $^
netstream: netstream.o $(NETSTREAM_DEPS)
$(CC) -o $@ $^
clean distclean:
rm -f $(OBJS)
rm -f fastmem-* fastmem2-* fastmemcpybench
rm -f *.o *~ $(OBJS)
rm -f fastmem-* fastmem2-* fastmemcpybench netstream
rm -f cpuinfo$(EXESUF) bmovl-test$(EXESUF) vfw2menc$(EXESUF)
rm -f $(REAL_TARGETS)