1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-26 21:14:45 +01:00
liquid/Makefile

41 lines
1.2 KiB
Makefile
Raw Normal View History

2017-06-27 19:25:07 +02:00
SOURCEDIR=.
SOURCES := $(shell find $(SOURCEDIR) -name '*.go')
2017-07-05 19:46:30 +02:00
LIB = liquid
2017-06-27 19:25:07 +02:00
PACKAGE = github.com/osteele/liquid
2017-07-05 19:46:30 +02:00
LDFLAGS=
2017-06-27 19:25:07 +02:00
2017-06-28 00:10:12 +02:00
.DEFAULT_GOAL: ci
2017-07-13 02:04:55 +02:00
.PHONY: clean ci deps setup install lint test help
2017-06-28 00:10:12 +02:00
ci: setup test #lint
2017-06-27 19:25:07 +02:00
clean: ## remove binary files
2017-07-05 19:46:30 +02:00
rm -f ${LIB} ${CMD}
2017-06-27 19:25:07 +02:00
2017-06-29 17:15:13 +02:00
deps: ## list dependencies
2017-07-14 02:18:23 +02:00
go list -f '{{join .Deps "\n"}}' ./... | grep -v `go list -f '{{.ImportPath}}'` | grep '\.' | sort | uniq
imports: ## list imports
go list -f '{{join .Imports "\n"}}' ./... | grep -v `go list -f '{{.ImportPath}}'` | grep '\.' | sort | uniq
2017-06-29 17:15:13 +02:00
2017-07-13 02:04:55 +02:00
generate:
go generate ./...
setup: ## install dependencies and development tools
2017-06-27 19:25:07 +02:00
go get github.com/alecthomas/gometalinter
go get golang.org/x/tools/cmd/stringer
go install golang.org/x/tools/cmd/goyacc
gometalinter --install
lint: ## lint the package
2017-07-14 02:18:23 +02:00
gometalinter ./... --deadline=5m --exclude expressions/scanner.go --exclude y.go --exclude '.*_string.go' --disable=gotype
2017-07-03 18:00:43 +02:00
@echo lint passed
2017-06-27 19:25:07 +02:00
test: ## test the package
go test ./...
# Source: https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'