build: merge remaining submodules and clean up .gitignore

This commit is contained in:
boreddevnl
2026-05-09 01:56:30 +02:00
parent 93722faa91
commit 14e38a5221
16 changed files with 2864 additions and 31 deletions

19
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 $@