1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-27 08:24:38 +01:00
liquid/Makefile

48 lines
1.3 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
COMMIT_HASH = `git rev-parse --short HEAD 2>/dev/null`
BUILD_TIME = `date +%FT%T%z`
VERSION=0.0.0
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-05 19:46:30 +02:00
.PHONY: build clean ci command dependencies 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
2017-07-05 19:46:30 +02:00
$(LIB): $(SOURCES)
go build ${LDFLAGS} -o ${LIB} ${PACKAGE}
2017-06-27 19:25:07 +02:00
2017-07-05 19:46:30 +02:00
build: $(LIB) ## compile the package
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
go list -f '{{join .Imports "\n"}}' ./... | grep -v ${PACKAGE} | grep '\.' | sort | uniq
2017-07-02 14:01:12 +02:00
install-dev-tools: ## 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
2017-07-05 19:46:30 +02:00
install: $(SOURCES) ## install the liquid command-line tool
go install ${LDFLAGS} ${PACKAGE}/cmd/liquid
2017-06-27 19:25:07 +02:00
lint: ## lint the package
2017-07-04 17:12:40 +02:00
gometalinter ./... --deadline=5m --exclude expression/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}'