not broken

This commit is contained in:
Imbus 2025-05-12 12:29:30 +02:00
parent f2de9bcd07
commit e3debeac7a

View file

@ -1,7 +1,7 @@
CC := gcc
CFLAGS := -Wall -Wextra -O2
#CFLAGS += -std=c99 # C99 breaks sbrk for some reason (likely toolchain bug)
LIBS := -lsqlite3
LIBS := -lsqlite3 # Everything links to sqlite rofl
SRC := $(wildcard *.c)
OBJ := $(SRC:.c=.o)