Explorar o código

Merge pull request #29 from orangebaron/patch-1

In the lesson 13 makefile, os-image.bin can be shortened to $@
Carlos Fenollosa %!s(int64=7) %!d(string=hai) anos
pai
achega
629cc84bc1
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      13-kernel-barebones/Makefile

+ 1 - 1
13-kernel-barebones/Makefile

@@ -23,7 +23,7 @@ bootsect.bin: bootsect.asm
 	nasm $< -f bin -o $@
 
 os-image.bin: bootsect.bin kernel.bin
-	cat $^ > os-image.bin
+	cat $^ > $@
 
 run: os-image.bin
 	qemu-system-i386 -fda $<