Browse Source

Oops, that was a bad wildcard.

"Steven J. Hill" 18 years ago
parent
commit
7840e3a378
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Makefile

+ 2 - 1
Makefile

@@ -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) {} \;