Files
HDB/Makefile
AustrianToast e0352ad73b More code movement
Client can also now talk to the daemon, though still very rough
2025-09-25 21:10:17 +02:00

18 lines
328 B
Makefile

.POSIX:
hdb: src/hdb.c
gcc -ansi -O2 -pipe -o build/hdb src/hdb.c
strip build/hdb
hdbd: src/hdbd.c
gcc -ansi -O2 -pipe -o build/hdbd src/hdbd.c -lsqlite3
strip build/hdbd
.PHONY: install uninstall
install: hdb hdbd
sudo mv build/hdb build/hdbd /usr/local/bin
uninstall:
sudo rm /usr/local/bin/hdb /usr/local/bin/hdbd