build:
	go build -o bin/game ./cmd/game

run:
	go run ./cmd/game

clean:
	rm -fr bin

install:
	go install ./cmd/game

