More code movement

Client can also now talk to the daemon, though still very rough
This commit is contained in:
2025-09-25 21:10:17 +02:00
parent cb642e905f
commit e0352ad73b
4 changed files with 175 additions and 182 deletions

View File

@@ -1,10 +1,10 @@
.POSIX:
hdb: src/db.c src/hdb.c
gcc -ansi -O2 -pipe -o build/hdb src/hdb.c src/db.c -lsqlite3
hdb: src/hdb.c
gcc -ansi -O2 -pipe -o build/hdb src/hdb.c
strip build/hdb
hdbd: src/db.c src/hdbd.c
gcc -ansi -O2 -pipe -o build/hdbd src/hdbd.c src/db.c -lsqlite3
hdbd: src/hdbd.c
gcc -ansi -O2 -pipe -o build/hdbd src/hdbd.c -lsqlite3
strip build/hdbd
.PHONY: install uninstall