Browse Source

add deps target to makefile

pull/16/head
Brett Langdon 11 years ago
parent
commit
b4c09a0895
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      Makefile

+ 5
- 1
Makefile View File

@ -12,4 +12,8 @@ bench:
coverage:
out=`mktemp -t "forge-coverage"`; go test -coverprofile=$$out && go tool cover -html=$$out
.PHONY: lint test
deps:
go get golang.org/x/tools/cmd/cover
go get github.com/golang/lint/golint
.PHONY: test lint go-test bench coverage deps

Loading…
Cancel
Save