Makefile cleaning

This commit is contained in:
Imbus 2025-06-25 07:32:33 +02:00
parent 12b2d399d6
commit 433837e33d

View file

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