summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-10-06 04:18:36 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-10-06 04:18:36 +0000
commit90d779b0c31cdc7952050231f436a1cdf4b530f2 (patch)
tree392400ca5fba684f42c3a752ac7216bde9f606bb /Makefile
parenta648743558a3316884c16b238009754a30527803 (diff)
Need to get both .o and .os files. (.os files are built for NPTL)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c54251dd2..2ba6d7c74 100644
--- a/Makefile
+++ b/Makefile
@@ -370,7 +370,7 @@ 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) {} \;
distclean: clean
-find . \( -name core -o -name \*.orig -o -name \*~ -o -name .\#\* \) -exec $(RM) {} \;