Merge pull request #29 from orangebaron/patch-1

In the lesson 13 makefile, os-image.bin can be shortened to $@
This commit is contained in:
Carlos Fenollosa 2018-01-02 09:05:25 +01:00 committed by GitHub
commit 629cc84bc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 $<