feat: add initial project scaffold with clang-format, gitignore, Makefile, core C headers, main entry, Python bindings, and dynamic library build

This commit is contained in:
2024-11-22 13:45:03 +00:00
commit 0f0657496b
11 changed files with 1218 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
all: build run
build:
gcc main.c -lsqlite3 -lreadline -o sorm
gcc -shared -o sorm.so -fPIC main.c -lsqlite3 -lreadline
run:
./sorm