add vendoring
This commit is contained in:
34
vendor/github.com/jhillyerd/enmime/Makefile
generated
vendored
Normal file
34
vendor/github.com/jhillyerd/enmime/Makefile
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
SHELL := /bin/sh
|
||||
|
||||
SRC := $(shell find . -type f -name '*.go' -not -path "./vendor/*")
|
||||
PKGS := $(shell go list ./... | grep -v /vendor/)
|
||||
|
||||
.PHONY: all build clean fmt lint reflex simplify test
|
||||
|
||||
all: clean test lint build
|
||||
|
||||
clean:
|
||||
go clean $(PKGS)
|
||||
|
||||
deps:
|
||||
go get ./...
|
||||
|
||||
build:
|
||||
go build
|
||||
|
||||
test:
|
||||
go test -race ./...
|
||||
|
||||
fmt:
|
||||
@gofmt -l -w $(SRC)
|
||||
|
||||
simplify:
|
||||
@gofmt -s -l -w $(SRC)
|
||||
|
||||
lint:
|
||||
@test -z "$(shell gofmt -l . | tee /dev/stderr)" || echo "[WARN] Fix formatting issues with 'make fmt'"
|
||||
@golint -set_exit_status $(PKGS)
|
||||
@go vet $(PKGS)
|
||||
|
||||
reflex:
|
||||
reflex -r '\.go$$' -- sh -c 'echo; date; echo; go test ./... && echo ALL PASS'
|
||||
Reference in New Issue
Block a user