diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-01-15 00:28:36 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-01-15 00:28:36 +0000 |
commit | 29a10be0d4c748446de746eecf1cfeaedcbe0aff (patch) | |
tree | 2e8cee3980e07f6b9c9b8b71d0cbcf74ef8f28d8 /libavutil | |
parent | 69e9b2cf451eda4f9500cbe3c5a0419fef821078 (diff) | |
download | ffmpeg-29a10be0d4c748446de746eecf1cfeaedcbe0aff.tar.gz |
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
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |