# HG changeset patch # User diego # Date 1137284916 0 # Node ID 986716310195d5e6b25e906b7fe3f85e0394c37f # Parent 1dc89e24d9c224a98014c6288e87e8301e91f978 Don't use 'rm -f *$(SLIBSUF)' in a clean rule, $(SLIBSUF) might be empty. Remove all possible shared libs suffixes instead. diff -r 1dc89e24d9c2 -r 986716310195 Makefile --- 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/*~ \ diff -r 1dc89e24d9c2 -r 986716310195 libpostproc/Makefile --- a/libpostproc/Makefile Sat Jan 14 18:17:19 2006 +0000 +++ b/libpostproc/Makefile Sun Jan 15 00:28:36 2006 +0000 @@ -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