ssh-chat/Makefile
Brendan Ashworth 4227e0d8d4 Adds Travis-CI testing
This commit adds Travis-CI testing, which allows
free and easy continuous integration for pull requests
and new commits. It also adds a `make deps` target
in the Makefile for easily adding the dependencies.

It can be enabled here:
http://docs.travis-ci.com/user/getting-started/#Step-one%3A-Sign-in

Just follow instructions 1-2, three is already done. Thanks.
2014-12-13 10:53:14 -08:00

29 lines
304 B
Makefile

BINARY = ssh-chat
KEY = host_key
PORT = 2022
all: $(BINARY)
**/*.go:
go build ./...
$(BINARY): **/*.go *.go
go build .
deps:
go get .
build: $(BINARY)
clean:
rm $(BINARY)
$(KEY):
ssh-keygen -f $(KEY) -P ''
run: $(BINARY) $(KEY)
./$(BINARY) -i $(KEY) --bind ":$(PORT)" -vv
test:
go test .