diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-04-02 21:12:37 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-04-02 21:12:37 +0000 |
commit | 96749a768287761528a05670560402a16f6839ac (patch) | |
tree | c53550a3ec7458f02da07d465c74bae3f752f499 /Makefile | |
parent | abdb41c778c5892d51fe92879d383eb8ba000028 (diff) |
Steven J. Hill's latest mips dynamic loader updates
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -332,16 +332,17 @@ finished2: distclean clean: @rm -rf tmp lib include/bits libc/tmp _install - - find include -type l -exec rm -f {} \; - - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec rm -f {} \; $(MAKE) -C test clean $(MAKE) -C ldso clean $(MAKE) -C libc/misc clean $(MAKE) -C libc/unistd clean $(MAKE) -C libc/sysdeps/linux/common clean - $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean $(MAKE) -C extra/gcc-uClibc clean - find . -name mipsel -exec rm -rf {} \; + @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \ + $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \ + fi; + - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec rm -f {} \; + - find -type l -exec rm -f {} \; dist release: distclean cd ..; \ |