1default:	test
2
3test:	*.go
4	go test -v -race ./...
5
6fmt:
7	gofmt -w .
8
9# Run the test in an isolated environment.
10fulltest:
11	docker build -t hpcloud/tail .
12