all: client server

client:
	go build -o ekho client.go

server:
	go build -o motd server.go
