Ævar Arnfjörð Bjarmason wrote: > --- a/Makefile > +++ b/Makefile > @@ -2737,10 +2737,11 @@ tags: FORCE > $(FIND_SOURCE_FILES) | xargs ctags -a -o tags+ && \ > mv tags+ tags > > +cscope.out: > + $(FIND_SOURCE_FILES) | xargs cscope -f$@ -b > + > .PHONY: cscope > -cscope: > - $(RM) cscope* > - $(FIND_SOURCE_FILES) | xargs cscope -b > +cscope: cscope.out The reason for the $(RM) removal is not explained in the commit message. Otherwise the pach looks good to me. -- Felipe Contreras