diff --git a/Makefile b/Makefile index e1296cf..09764ea 100644 --- a/Makefile +++ b/Makefile @@ -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)