Add limine as raw source

This commit is contained in:
2025-12-17 22:45:17 +01:00
parent f60d8d6861
commit 84c600b903
15 changed files with 2606 additions and 1 deletions

19
boot/limine/Makefile Normal file
View File

@@ -0,0 +1,19 @@
.POSIX:
SHELL=/bin/sh
CC=cc
CFLAGS=-g -O2 -pipe
CPPFLAGS=
LDFLAGS=
LIBS=
.PHONY: all
all: limine
.PHONY: clean
clean:
rm -f limine limine.exe
limine: limine.c
$(CC) $(CFLAGS) -std=c99 $(CPPFLAGS) $(LDFLAGS) $< $(LIBS) -o $@