Skip to content

Commit

Permalink
Add Makefile (#103)
Browse files Browse the repository at this point in the history
* Add Makefile
  • Loading branch information
zamaudio authored and brentp committed Feb 26, 2019
1 parent 16701a1 commit 5683246
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ go:
- 1.10.x

before_install:
- make
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
Expand Down
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
all: get build

get:
go get github.com/brentp/irelate
go get github.com/brentp/irelate/interfaces
go get github.com/brentp/irelate/parsers
go get github.com/brentp/vcfanno/api
go get github.com/brentp/vcfanno/shared
go get github.com/brentp/vcfgo
go get github.com/brentp/xopen

build:
go build -o vcfanno vcfanno.go

0 comments on commit 5683246

Please sign in to comment.