From d9d5ae017676008ed538ca86c57dd9d0342cdf44 Mon Sep 17 00:00:00 2001 From: Sam Uwe Alws Date: Wed, 6 Dec 2017 23:39:30 -0500 Subject: [PATCH] os-image.bin can be shortened to $@ --- 13-kernel-barebones/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13-kernel-barebones/Makefile b/13-kernel-barebones/Makefile index 764f9b0..94e765f 100644 --- a/13-kernel-barebones/Makefile +++ b/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 $<