Cleanup from Paul Fox. One find piped to xargs is faster/simpler than
lots of finds doing individual -exec rm.
This commit is contained in:
parent
ac664e07df
commit
31e3610c4b
10
Makefile
10
Makefile
@ -441,18 +441,14 @@ clean:
|
|||||||
libbusybox.so* \
|
libbusybox.so* \
|
||||||
.config.old busybox busybox_unstripped
|
.config.old busybox busybox_unstripped
|
||||||
- rm -r -f _install testsuite/links
|
- rm -r -f _install testsuite/links
|
||||||
- find . -name .\*.flags -exec rm -f {} \;
|
- find . -name .\*.flags -o -name \*.o -o -name \*.om \
|
||||||
- find . -name \*.o -exec rm -f {} \;
|
-o -name \*.os -o -name \*.osm -o -name \*.a | xargs 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 {} \;
|
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
- $(MAKE) -C scripts/config clean
|
- $(MAKE) -C scripts/config clean
|
||||||
- rm -f scripts/bb_mkdep
|
- rm -f scripts/bb_mkdep
|
||||||
- rm -r -f include/config $(DEP_INCLUDES)
|
- 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
|
rm -f .config .config.old .config.cmd
|
||||||
|
|
||||||
release: distclean #doc
|
release: distclean #doc
|
||||||
|
Loading…
Reference in New Issue
Block a user