From 433837e33d4199e342fbf1cc509b784c8b17297a Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Wed, 25 Jun 2025 07:32:33 +0200 Subject: [PATCH] Makefile cleaning --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 7e9495c..3d483b8 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,5 @@ CC := gcc 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) OBJ := $(SRC:.c=.o)