summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index f44f839..4df65dd 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,7 @@
-BOOTLOADER=./bootloader.asm
-TARGET=./boot.img
+BOOTLOADER=./src/boot/bootloader.asm
+TARGET=./bin/boot.bin
all:
nasm -f bin $(BOOTLOADER) -o $(TARGET)
- dd if=./boot.txt >> $(TARGET)
- dd if=/dev/zero bs=512 count=1 >> $(TARGET)
clean:
rm -f $(TARGET)