Forráskód Böngészése

os-image.bin can be shortened to $@

Sam Uwe Alws 7 éve
szülő
commit
d9d5ae0176
1 módosított fájl, 1 hozzáadás és 1 törlés
  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 $<