[MPlayer-cvslog] r22874 - in trunk/TOOLS: . Makefile

diego subversion at mplayerhq.hu
Sun Apr 1 11:45:27 CEST 2007


Author: diego
Date: Sun Apr  1 11:45:26 2007
New Revision: 22874

Modified:
   trunk/TOOLS/   (props changed)
   trunk/TOOLS/Makefile

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


Modified: trunk/TOOLS/Makefile
==============================================================================
--- trunk/TOOLS/Makefile	(original)
+++ trunk/TOOLS/Makefile	Sun Apr  1 11:45:26 2007
@@ -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)



More information about the MPlayer-cvslog mailing list