summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-03-16 19:20:23 +0000
committernasr <nsrddyn@gmail.com>2026-03-16 19:20:23 +0000
commit180ccc84aac07c7bee2b09a6e07f7406908409b9 (patch)
treeefa39665e41c3132626f2c08b2f3ae0d18adc17a /Makefile
parent2e258673171c2e4663a8b5d58e2ad174bb0ecd96 (diff)
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0224a42..39e9b87 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,7 @@
1BIN = build/engine 1BIN = build/engine
2SRC = source/engine.c 2SRC = source/tb_db.c
3CC = clang 3CC = clang
4CFLAGS = -Wall -Wextra -Wfloat-equal -Wswitch-default -Wswitch-enum \ 4CFLAGS = -Wall -Wextra -Wpedantic -Wno-unused-function -g -Werror
5 -Wno-unused-parameter -Wno-implicit-fallthrough -Wno-unused-function -g -Werror
6 5
7$(BIN): $(SRC) 6$(BIN): $(SRC)
8 mkdir -p build 7 mkdir -p build