소스 검색

Merge pull request #29 from orangebaron/patch-1

In the lesson 13 makefile, os-image.bin can be shortened to $@
Carlos Fenollosa 7 년 전
부모
커밋
629cc84bc1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 $<