diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-06 04:21:07 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-06 04:21:07 +0000 |
commit | 7840e3a378de082ed52d6886ca6db128f5536f38 (patch) | |
tree | b23b5fa4b75fc577a7153aef1a8008bd8f634094 | |
parent | 90d779b0c31cdc7952050231f436a1cdf4b530f2 (diff) |
Oops, that was a bad wildcard.
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -370,7 +370,8 @@ clean: @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \ $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \ fi - -find . -name \*.o* -exec $(RM) {} \; + -find . -name \*.o -exec $(RM) {} \; + -find . -name \*.os -exec $(RM) {} \; distclean: clean -find . \( -name core -o -name \*.orig -o -name \*~ -o -name .\#\* \) -exec $(RM) {} \; |