1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-06 08:29:25 +02:00

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
This commit is contained in:
Diego Biurrun
2006-01-15 00:28:36 +00:00
parent 69e9b2cf45
commit 29a10be0d4
5 changed files with 8 additions and 7 deletions

View File

@@ -444,7 +444,8 @@ depend: $(SRCS)
dep: depend
clean: $(CLEANAMR)
rm -f *.o *.d *~ .depend $(LIB) $(SLIBNAME) *$(SLIBSUF) i386/*.o i386/*~ \
rm -f *.o *.d *~ i386/*.o i386/*~ \
*.a *.lib *.so *.dylib *.dll \
armv4l/*.o armv4l/*~ \
mlib/*.o mlib/*~ \
alpha/*.o alpha/*~ \