Explorar el Código

Oops, that was a bad wildcard.

"Steven J. Hill" hace 18 años
padre
commit
7840e3a378
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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) {} \;