Hi Luiz, On Thu, Dec 12, 2013 at 4:57 PM, Luiz Augusto von Dentz <luiz.dentz@xxxxxxxxx> wrote: > +clean-local: clean-coverage > + @find $(top_builddir) -name "*.gcda" -exec $(RM) {} \; > + @find $(top_builddir) -name "*.gcno" -exec $(RM) {} \; Another simplification suggestion: Replace " -exec $(RM) {} \;" with "-delete", e.g.: @find $(top_builddir) -name "*.gcda" -delete BTW if the deletion fails (e.g. file was created as root but cleanup is done as non-root), the find command will fail. If it is desirable that the cleanup never fail, you may need to add a "-" before the command (or use "|| true", whatever is the convention in BlueZ). Best Regards, -- Anderson Lizardo Instituto Nokia de Tecnologia - INdT Manaus - Brazil -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html