removed ghost line bug AGAIN, remade makefile, created justfile and servicefile, updated README

This commit is contained in:
2026-04-28 20:14:33 -04:00
parent eb71ae1c51
commit 8d65145c2c
7 changed files with 243 additions and 75 deletions
+26 -8
View File
@@ -1,12 +1,30 @@
all: client server
server_clean:
rm server
re: clean client server
client_clean:
rm client
clean:
rm client.o server.o
client:
go build -o client.o client.go
clean: server_clean client_clean
server:
go build -o server.o server.go
go build server.go
client:
go build client.go
build: server client
ins_server:
go build -o ekho_server server.go
mv ekho_server /usr/local/bin/
cp ekho.service /etc/systemd/system/ekho.service
mkdir -p ~/.config/ekho
ln -s -r ./list.q ~/.config/ekho/list.q
systemctl daemon-reload
systemctl enable ekho
systemctl start ekho
systemctl status ekho
ins_client:
go build -o ekho client.go
mv ekho /usr/local/bin/