Move *~ from clean to distclean.

This commit is contained in:
Jonathan Schleifer 2007-09-25 17:52:49 +02:00
parent cdb78b882a
commit 4defdcc6c7

View file

@ -349,7 +349,7 @@ clean:
${DIR_LEAVE}; \ ${DIR_LEAVE}; \
done done
for i in ${OBJS} ${CLEAN} ${CLEAN_LIB} .deps *~; do \ for i in ${OBJS} ${CLEAN} ${CLEAN_LIB} .deps; do \
if test -f $$i -o -d $$i; then \ if test -f $$i -o -d $$i; then \
if rm -fr $$i; then \ if rm -fr $$i; then \
${DELETE_OK}; \ ${DELETE_OK}; \
@ -366,7 +366,7 @@ distclean: clean
${DIR_LEAVE}; \ ${DIR_LEAVE}; \
done done
for i in ${PROG} ${PROG_NOINST} ${LIB} ${LIB_NOINST} ${STATIC_LIB} ${STATIC_LIB_NOINST} ${PLUGIN} ${PLUGIN_NOINST} ${DISTCLEAN}; do \ for i in ${PROG} ${PROG_NOINST} ${LIB} ${LIB_NOINST} ${STATIC_LIB} ${STATIC_LIB_NOINST} ${PLUGIN} ${PLUGIN_NOINST} ${DISTCLEAN} *~; do \
if test -f $$i -o -d $$i; then \ if test -f $$i -o -d $$i; then \
if rm -fr $$i; then \ if rm -fr $$i; then \
${DELETE_OK}; \ ${DELETE_OK}; \