On 06/10/16 15:37, Wei Liu wrote: > Signed-off-by: Wei Liu <[email protected]> > --- > Cc: Andrew Cooper <[email protected]> > Cc: George Dunlap <[email protected]> > Cc: Ian Jackson <[email protected]> > Cc: Jan Beulich <[email protected]> > Cc: Konrad Rzeszutek Wilk <[email protected]> > Cc: Stefano Stabellini <[email protected]> > Cc: Tim Deegan <[email protected]> > Cc: Wei Liu <[email protected]> > --- > xen/Makefile | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/xen/Makefile b/xen/Makefile > index c511330..80fff6d 100644 > --- a/xen/Makefile > +++ b/xen/Makefile > @@ -117,6 +117,7 @@ _clean: delete-unfresh-files > $(MAKE) -f $(BASEDIR)/Rules.mk -C test clean > $(MAKE) -f $(BASEDIR)/tools/kconfig/Makefile.kconfig ARCH=$(ARCH) > SRCARCH=$(SRCARCH) clean > find . \( -name "*.o" -o -name ".*.d" \) -exec rm -f {} \; > + find . -name "*.gcno" -exec rm -f {} \;
It would be a little more efficient to add `-o -name "*.gcno"` to the previous find invocation than to introduce a second. ~Andrew > rm -f include/asm $(TARGET) $(TARGET).gz $(TARGET).efi > $(TARGET).efi.map $(TARGET)-syms $(TARGET)-syms.map *~ core > rm -f include/asm-*/asm-offsets.h > rm -f .banner _______________________________________________ Xen-devel mailing list [email protected] https://lists.xen.org/xen-devel
