moving from gitlab

This commit is contained in:
2026-05-15 13:26:54 -04:00
commit 7391c21087
33 changed files with 2539 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
all:
$(CC) -Wall server.c db.c -O2 -std=c23 -lpthread -lsqlite3 -o server
debug:
$(CC) -Wall -g server.c db.c -O0 -std=c23 -lpthread -lsqlite3 -o serverDebug
clean:
$(RM) -rf server serverDebug