diff options
| author | nasr <nsrddyn@gmail.com> | 2026-03-16 19:20:23 +0000 |
|---|---|---|
| committer | nasr <nsrddyn@gmail.com> | 2026-03-16 19:20:23 +0000 |
| commit | 180ccc84aac07c7bee2b09a6e07f7406908409b9 (patch) | |
| tree | efa39665e41c3132626f2c08b2f3ae0d18adc17a /Makefile | |
| parent | 2e258673171c2e4663a8b5d58e2ad174bb0ecd96 (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-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
| @@ -1,8 +1,7 @@ | |||
| 1 | BIN = build/engine | 1 | BIN = build/engine |
| 2 | SRC = source/engine.c | 2 | SRC = source/tb_db.c |
| 3 | CC = clang | 3 | CC = clang |
| 4 | CFLAGS = -Wall -Wextra -Wfloat-equal -Wswitch-default -Wswitch-enum \ | 4 | CFLAGS = -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 |
