diff Makefile @ 3048:986716310195 libavcodec

Don't use 'rm -f *$(SLIBSUF)' in a clean rule, $(SLIBSUF) might be empty. Remove all possible shared libs suffixes instead.
author diego
date Sun, 15 Jan 2006 00:28:36 +0000
parents 1127b4455bec
children 61e47d203191
line wrap: on
line diff
--- a/Makefile	Sat Jan 14 18:17:19 2006 +0000
+++ b/Makefile	Sun Jan 15 00:28:36 2006 +0000
@@ -444,7 +444,8 @@
 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/*~ \