mirror of
https://github.com/square/certigo.git
synced 2024-04-21 12:32:40 +00:00
13 lines
216 B
Makefile
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 .)
|