aboutsummaryrefslogtreecommitdiff
path: root/boot/Makefile
diff options
context:
space:
mode:
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