Index: arch/ia32/boot/Makefile
===================================================================
--- arch/ia32/boot/Makefile	(revision e16e036a378fc32c389e8e9d78aabfc0682401f2)
+++ arch/ia32/boot/Makefile	(revision 849ba5cb5ef4a54b549d2ea7b31a150dc6822678)
@@ -1,9 +1,7 @@
-.PHONY: nothing build clean
-
-nothing:
+.PHONY: build clean
 
 build: boot.bin
 	dd if=boot.bin of=../../../image.bin bs=512 conv=sync
-	-cat ../../../kernel.bin >>../../../image.bin
+	-cat ../../../kernel.bin >> ../../../image.bin
 	dd if=/dev/zero of=../../../image.bin bs=1 seek=1474559 count=1
 
@@ -12,8 +10,8 @@
 
 boot.o: boot.S
-	gcc -E -DKERNEL_SIZE=$(KERNEL_SIZE) boot.S >boot.s
+	gcc -E -DKERNEL_SIZE=$(KERNEL_SIZE) boot.S > boot.s
 	as boot.s -o $@
 	rm boot.s
 
 clean:
-	-rm *.o *.bin
+	-rm -f boot.o boot.bin ../../../image.bin
