-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Prefix
- Loading branch information
Showing
24 changed files
with
1,465 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
GOBINDATA=bin/go/github.com/kevinburke/go-bindata/go-bindata | ||
GOIMPORTS=bin/go/golang.org/x/tools/cmd/goimports | ||
GOVERALLS=bin/go/github.com/mattn/goveralls | ||
MOCKGEN=bin/go/github.com/golang/mock/mockgen | ||
TOOLS = $(GOBINDATA) \ | ||
$(GOIMPORTS) \ | ||
$(MOCKGEN) \ | ||
$(GOVERALLS) | ||
|
||
cleandeps: | ||
if [ -d "./bin" ]; then rm -rf "./bin"; fi | ||
|
||
freshdeps: cleandeps deps | ||
|
||
deps: $(TOOLS) | ||
bin/go/%: | ||
@echo "installing $*" | ||
$(GO) build -o bin/go/$* $* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
//go:generate go-enum -f=$GOFILE | ||
//go:generate ../bin/go-enum -f=$GOFILE | ||
|
||
package example | ||
|
||
|
Empty file.
Oops, something went wrong.