integrate sqlite with simple insert and select

This commit is contained in:
talksik
2025-08-03 16:44:52 -07:00
parent a423d52d96
commit 629ebf5b75
3 changed files with 70 additions and 13 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ CC = gcc
CFLAGS = -Wall -g -Iinclude
TARGET = main
SRC = main.c
LIBS = -lcurl
LIBS = -lcurl -lsqlite3
$(TARGET): $(SRC)
$(CC) $(CFLAGS) -o $(TARGET) $(SRC) $(LIBS)