From 29a10be0d4c748446de746eecf1cfeaedcbe0aff Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 15 Jan 2006 00:28:36 +0000 Subject: Don't use 'rm -f *$(SLIBSUF)' in a clean rule, $(SLIBSUF) might be empty. Remove all possible shared libs suffixes instead. Originally committed as revision 4860 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil') diff --git a/libavutil/Makefile b/libavutil/Makefile index a4b902c62a..99a4c114f7 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -50,7 +50,7 @@ depend: $(SRCS) dep: depend clean: - rm -f *.o *.d *~ .depend $(LIB) $(SLIBNAME) *$(SLIBSUF) + rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll distclean: clean rm -f Makefile.bak .depend -- cgit v1.2.3