Avoid argument list too long issue in make clean.
This commit is contained in:
parent
2f5fdd2000
commit
6d8095bcb9
|
@ -606,7 +606,8 @@ clean ::
|
||||||
@if test -d $(ARCH); then \
|
@if test -d $(ARCH); then \
|
||||||
(cd $(ARCH) && $(MAKE) clean) \
|
(cd $(ARCH) && $(MAKE) clean) \
|
||||||
fi
|
fi
|
||||||
@rm -rf *.a *.s *.o *.po *.obj *.i *.so core core.* gmon.out *.cso \
|
@find . -name '*.o' | xargs rm -rf
|
||||||
|
@rm -rf *.a *.s *.po *.obj *.i *.so core core.* gmon.out *.cso \
|
||||||
*.csx *.is *~ *.exe *.flame *.pdb *.dwf \
|
*.csx *.is *~ *.exe *.flame *.pdb *.dwf \
|
||||||
gen_insn_flash.c gen_insn_flash *.stackdump *.dll *.exp *.lib \
|
gen_insn_flash.c gen_insn_flash *.stackdump *.dll *.exp *.lib \
|
||||||
*.pc *.pcl *.def *.i *.prof linktest.c \
|
*.pc *.pcl *.def *.i *.prof linktest.c \
|
||||||
|
|
Loading…
Reference in New Issue