aboutsummaryrefslogtreecommitdiff
path: root/boot/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2021-04-28 23:12:17 +0200
committerMarvin Borner2021-04-28 23:12:17 +0200
commit04104fc051d44f4f9b3328f29b4be91fa4060f34 (patch)
tree1677c1739c44bd7c7e8722ea00ca3c6b45158c85 /boot/Makefile
parent895a58b1b57a0ae8028576404a90f12e0133cf5f (diff)
Started conversion to Grub (#17)
Yes, the CI won't like this.
Diffstat (limited to 'boot/Makefile')
-rw-r--r--boot/Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/boot/Makefile b/boot/Makefile
deleted file mode 100644
index 5516a20..0000000
--- a/boot/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-# MIT License, Copyright (c) 2020 Marvin Borner
-
-CFLAGS = $(CFLAGS_DEFAULT) -ffreestanding -fno-stack-protector -fno-sanitize=undefined -Ofast
-
-ASFLAGS = -f elf32
-
-all: compile
-
-compile:
- @mkdir -p $(BUILD)
- @$(CC) -c $(CFLAGS) load.c -o load.o
- @$(LD) -N -emain -Ttext 0x00009000 -o $(BUILD)/load.bin load.o --oformat binary
- @$(AS) -f bin entry.asm -o $(BUILD)/boot.bin