Files
certigo/Makefile
T
2016-06-02 14:42:41 -07:00

13 lines
216 B
Makefile

# Find all non-vendor source files
SOURCE_FILES = $(shell find . \( -name '*.go' -not -path './vendor*' \))
depends:
glide -q install
build:
go build .
check:
go vet -v .
!(gofmt -d $(SOURCE_FILES) | grep .)