diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-09-27 08:43:33 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-09-27 08:43:33 +0000 |
commit | a29321c68e3477e7af06830c1b60184a3f20a6aa (patch) | |
tree | d93d2e9a4e05d8fa939c674142b40f457ede6dbb | |
parent | 68a33eafc43aacb139ea21efbab91a5c2efe8069 (diff) |
Target distclean removes now locales.txt/codesets.txt too. reorder clean target.
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -352,8 +352,8 @@ defconfig: extra/config/conf @./extra/config/conf -d extra/Configs/Config.in clean: - - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec $(RM) {} \; @$(RM) -r lib include/bits + $(RM) */*.so */*.a $(RM) libc/misc/internals/interp.c $(RM) include/fpu_control.h $(MAKE) -C extra/locale clean @@ -374,9 +374,11 @@ clean: @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \ $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \ fi + - find . \( -name \*.o -o -name core -o -name .\#\* \) -exec $(RM) {} \; distclean: clean $(RM) .config .config.old .config.cmd + $(RM) extra/locale/*.txt $(MAKE) -C extra clean release: distclean |