make clean should remove depend.bak too (Sérgio Moneiro Basto)

This commit is contained in:
Brian Paul 2004-10-04 14:47:48 +00:00
parent be76b7fe1e
commit ddfec59bcd
3 changed files with 4 additions and 3 deletions

View file

@ -176,7 +176,7 @@ tags:
clean:
-rm -f */*.o
-rm -f depend mesa.a
-rm -f depend depend.bak mesa.a
-rm -f drivers/*/*.o
(cd drivers/dri ; $(MAKE) clean)

View file

@ -95,6 +95,7 @@ tags:
# Remove .o and backup files
clean:
-rm -f *.o */*.o *~ *.o *~ *.so server/*.o $(SYMLINKS) depend
-rm -f *.o */*.o *~ *.o *~ *.so server/*.o $(SYMLINKS)
-rm -f depend depend.bak
include depend

View file

@ -53,6 +53,6 @@ dri.a: $(OBJECTS)
# Remove .o and backup files
clean:
-rm -f *.o */*.o *~ *.so *.a
-rm -f *.o */*.o *~ *.so *.a depend depend.bak
include depend