From 180ccc84aac07c7bee2b09a6e07f7406908409b9 Mon Sep 17 00:00:00 2001 From: nasr Date: Mon, 16 Mar 2026 19:20:23 +0000 Subject: feature(main): lots of stuff see description 1. increased compile time warnings to help with some optimizations. 2. impelmeented csv lexing helper functions that do stuff on tokenlists like appending and concatenating lists with each other 3. realiszed that btree design in faulty so disabled it and will refactor it in the next approach --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0224a42..39e9b87 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,7 @@ BIN = build/engine -SRC = source/engine.c +SRC = source/tb_db.c CC = clang -CFLAGS = -Wall -Wextra -Wfloat-equal -Wswitch-default -Wswitch-enum \ - -Wno-unused-parameter -Wno-implicit-fallthrough -Wno-unused-function -g -Werror +CFLAGS = -Wall -Wextra -Wpedantic -Wno-unused-function -g -Werror $(BIN): $(SRC) mkdir -p build -- cgit v1.3