# HG changeset patch # User diego # Date 1137284916 0 # Node ID b102533871375b3fe8b1fef9f90369ebc2b62e83 # Parent 51a83f9981f2de41ce56b003affdbaf2a93cc9bf Don't use 'rm -f *$(SLIBSUF)' in a clean rule, $(SLIBSUF) might be empty. Remove all possible shared libs suffixes instead. diff -r 51a83f9981f2 -r b10253387137 Makefile --- a/Makefile Sat Jan 14 15:54:58 2006 +0000 +++ b/Makefile Sun Jan 15 00:28:36 2006 +0000 @@ -143,7 +143,7 @@ g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< distclean clean: - rm -f *.o *.d .depend *~ *.a *$(SLIBSUF) $(LIB) + rm -f *.o *.d *~ .depend *.a *.lib *.so *.dylib *.dll # # include dependency files if they exist