Don't delete .deps files on make clean.

This commit is contained in:
Jonathan Schleifer 2008-11-01 21:03:17 +01:00
parent bc6c5ab32d
commit 1e743d0e0a
2 changed files with 5 additions and 3 deletions

View file

@ -398,7 +398,7 @@ clean:
${DIR_LEAVE}; \
done
for i in ${OBJS} ${CLEAN} ${CLEAN_LIB} .deps ${DEPS}; do \
for i in ${OBJS} ${CLEAN} ${CLEAN_LIB} ${DEPS}; do \
if test -f $$i -o -d $$i; then \
if rm -fr $$i; then \
${DELETE_OK}; \