mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-23 10:25:24 +00:00
28 lines
400 B
Makefile
28 lines
400 B
Makefile
.PHONY: bootstrap
|
|
bootstrap: clean deps
|
|
|
|
.PHONY: deps
|
|
deps:
|
|
dep ensure -v
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf ./vendor/
|
|
rm -rf ./git-chglog
|
|
rm -rf $(GOPATH)/bin/git-chglog
|
|
|
|
.PHONY: bulid
|
|
build:
|
|
go build -i -o git-chglog
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -v `go list ./... | grep -v /vendor/`
|
|
|
|
.PHONY: install
|
|
install:
|
|
go install ./cmd/git-chglog
|
|
|
|
.PHONY: chglog
|
|
chglog:
|
|
git-chglog -c ./.chglog/config.yml
|