[Ffmpeg-cvslog] CVS: ffmpeg/vhook Makefile,1.27,1.28

Diego Biurrun CVS diego
Sun Jan 15 01:28:39 CET 2006


Update of /cvsroot/ffmpeg/ffmpeg/vhook
In directory mail:/var2/tmp/cvs-serv8842/vhook

Modified Files:
	Makefile 
Log Message:
Don't use 'rm -f *$(SLIBSUF)' in a clean rule, $(SLIBSUF) might be empty.
Remove all possible shared libs suffixes instead.


Index: Makefile
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/vhook/Makefile,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- Makefile	12 Jan 2006 00:00:00 -0000	1.27
+++ Makefile	15 Jan 2006 00:28:36 -0000	1.28
@@ -40,7 +40,7 @@
 	$(CC) $(LDFLAGS) -g -o $@ $(SHFLAGS) $<
 
 clean:
-	rm -f *.o *.d .depend *$(SLIBSUF) *~
+	rm -f *.o *.d *~ .depend *.a *.lib *.so *.dylib *.dll
 
 ifneq ($(wildcard .depend),)
 include .depend





More information about the ffmpeg-cvslog mailing list