Don't wipe cscope database on make clean

This commit is contained in:
Thomas Graf 2008-04-29 22:59:30 +02:00
parent f4f7704b0d
commit 477e351fd4

View file

@ -22,13 +22,12 @@ all: Makefile.opts
done
clean: Makefile.opts
rm -f cscope.*
@for dir in $(SUBDIRS); do \
echo "Entering $$dir" && $(MAKE) -C $$dir clean || exit $$?; \
done
distclean: clean
@$(RM) -rf Makefile.opts autom4te.cache config.log config.status
@$(RM) -rf Makefile.opts autom4te.cache config.log config.status cscope.*
@for dir in $(SUBDIRS); do \
echo "Entering $$dir" && $(MAKE) -C $$dir distclean || exit $$?; \
done