diff options
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 |
commit | 90d779b0c31cdc7952050231f436a1cdf4b530f2 (patch) | |
tree | 392400ca5fba684f42c3a752ac7216bde9f606bb /Makefile | |
parent | a648743558a3316884c16b238009754a30527803 (diff) |
Need to get both .o and .os files. (.os files are built for NPTL)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) {} \; |