summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-09-27 08:43:33 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-09-27 08:43:33 +0000
commita29321c68e3477e7af06830c1b60184a3f20a6aa (patch)
treed93d2e9a4e05d8fa939c674142b40f457ede6dbb /Makefile
parent68a33eafc43aacb139ea21efbab91a5c2efe8069 (diff)
Target distclean removes now locales.txt/codesets.txt too. reorder clean target.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d1d7d9e64..817ae80ea 100644
--- a/Makefile
+++ b/Makefile
@@ -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