From 04104fc051d44f4f9b3328f29b4be91fa4060f34 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 28 Apr 2021 23:12:17 +0200 Subject: Started conversion to Grub (#17) Yes, the CI won't like this. --- boot/Makefile | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 boot/Makefile (limited to 'boot/Makefile') 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 -- cgit v1.2.3