[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec/libpostproc Makefile, 1.33, 1.34
Diego Biurrun CVS
diego
Sun Jan 15 01:28:38 CET 2006
Update of /cvsroot/ffmpeg/ffmpeg/libavcodec/libpostproc
In directory mail:/var2/tmp/cvs-serv8842/libavcodec/libpostproc
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/libavcodec/libpostproc/Makefile,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- Makefile 14 Jan 2006 18:07:36 -0000 1.33
+++ Makefile 15 Jan 2006 00:28:36 -0000 1.34
@@ -25,10 +25,10 @@
all: $(SWSLIB) $(LIB) $(SLIBNAME)
clean:
- rm -f *.o *.a *~ *$(SLIBSUF) $(LIB) $(SLIBNAME)
+ rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll
-distclean:
- rm -f Makefile.bak *.o *.a *~ *$(SLIBSUF) .depend
+distclean: clean
+ rm -f Makefile.bak .depend
dep: depend
More information about the ffmpeg-cvslog
mailing list