Cleanup from Paul Fox. One find piped to xargs is faster/simpler than
authorRob Landley <rob@landley.net>
Thu, 9 Mar 2006 22:01:05 +0000 (22:01 -0000)
committerRob Landley <rob@landley.net>
Thu, 9 Mar 2006 22:01:05 +0000 (22:01 -0000)
lots of finds doing individual -exec rm.

Makefile

index 7fcdd45e56b85227b23d36a127bd8c5486588aca..f255394ff784b017dcb20d87d086b8389e447af5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -441,18 +441,14 @@ clean:
            libbusybox.so* \
            .config.old busybox busybox_unstripped
        - rm -r -f _install testsuite/links
-       - find . -name .\*.flags -exec rm -f {} \;
-       - find . -name \*.o -exec rm -f {} \;
-       - find . -name \*.om -exec rm -f {} \;
-       - find . -name \*.os -exec rm -f {} \;
-       - find . -name \*.osm -exec rm -f {} \;
-       - find . -name \*.a -exec rm -f {} \;
+       - find . -name .\*.flags -o -name \*.o  -o -name \*.om \
+           -o -name \*.os -o -name \*.osm -o -name \*.a | xargs rm -f
 
 distclean: clean
        - $(MAKE) -C scripts/config clean
        - rm -f scripts/bb_mkdep
        - rm -r -f include/config $(DEP_INCLUDES)
-       - find . -name .depend'*' -exec rm -f {} \;
+       - find . -name .depend'*' | xargs rm -f 
        rm -f .config .config.old .config.cmd
 
 release: distclean #doc