Skip to content

Commit 629cc84

Browse files
authored
Merge pull request cfenollosa#29 from orangebaron/patch-1
In the lesson 13 makefile, os-image.bin can be shortened to $@
2 parents 9f013c0 + d9d5ae0 commit 629cc84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

13-kernel-barebones/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bootsect.bin: bootsect.asm
2323
nasm $< -f bin -o $@
2424

2525
os-image.bin: bootsect.bin kernel.bin
26-
cat $^ > os-image.bin
26+
cat $^ > $@
2727

2828
run: os-image.bin
2929
qemu-system-i386 -fda $<

0 commit comments

Comments
 (0)