Skip to content

Commit 864e893

Browse files
committed
Regenerate Makefile with the latest version of gomakegen
1 parent 791a8c7 commit 864e893

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Makefile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
################################################################################
22

3-
# This Makefile generated by GoMakeGen 3.0.0 using next command:
3+
# This Makefile generated by GoMakeGen 3.0.1 using next command:
44
# gomakegen --mod .
55
#
66
# More info: https://kaos.sh/gomakegen
@@ -25,15 +25,15 @@ GITREV ?= $(shell test -s $(MAKEDIR)/.git && git rev-parse --short HEAD)
2525
all: bibop ## Build all binaries
2626

2727
bibop:
28-
@echo "[37m[1/1][0m [36;1mBuilding bibop…[0m"
28+
@echo "[36;1mBuilding bibop…[0m"
2929
@go build $(VERBOSE_FLAG) -ldflags="-X main.gitrev=$(GITREV)" bibop.go
3030

3131
install: ## Install all binaries
32-
@echo "[37m[1/1][0m [36;1mInstalling binaries…[0m"
32+
@echo "[36;1mInstalling binaries…[0m"
3333
@cp bibop /usr/bin/bibop
3434

3535
uninstall: ## Uninstall all binaries
36-
@echo "[37m[1/1][0m [36;1mRemoving installed binaries…[0m"
36+
@echo "[36;1mRemoving installed binaries…[0m"
3737
@rm -f /usr/bin/bibop
3838

3939
init: mod-init ## Initialize new module
@@ -45,7 +45,7 @@ update: mod-update ## Update dependencies to the latest versions
4545
vendor: mod-vendor ## Make vendored copy of dependencies
4646

4747
test: ## Run tests
48-
@echo "[37m[1/1][0m [36;1mStarting tests…[0m"
48+
@echo "[36;1mStarting tests…[0m"
4949
ifdef COVERAGE_FILE ## Save coverage data into file (String)
5050
@go test $(VERBOSE_FLAG) -covermode=count -coverprofile=$(COVERAGE_FILE) ./parser ./recipe
5151
else
@@ -54,7 +54,7 @@ endif
5454

5555
gen-fuzz: ## Generate archives for fuzz testing
5656
@which go-fuzz-build &>/dev/null || go get -u -v github.com/dvyukov/go-fuzz/go-fuzz-build
57-
@echo "[37m[1/1][0m [36;1mGenerating fuzzing data…[0m"
57+
@echo "[36;1mGenerating fuzzing data…[0m"
5858
@go-fuzz-build -o parser-fuzz.zip github.com/essentialkaos/bibop/parser
5959

6060
mod-init:
@@ -94,23 +94,23 @@ endif
9494
@test -d vendor && rm -rf vendor && go mod vendor $(VERBOSE_FLAG) || :
9595

9696
mod-download:
97-
@echo "[37m[1/1][0m [36;1mDownloading dependencies…[0m"
97+
@echo "[36;1mDownloading dependencies…[0m"
9898
@go mod download
9999

100100
mod-vendor:
101-
@echo "[37m[1/1][0m [36;1mVendoring dependencies…[0m"
101+
@echo "[36;1mVendoring dependencies…[0m"
102102
@rm -rf vendor && go mod vendor $(VERBOSE_FLAG) || :
103103

104104
fmt: ## Format source code with gofmt
105-
@echo "[37m[1/1][0m [36;1mFormatting sources…[0m"
105+
@echo "[36;1mFormatting sources…[0m"
106106
@find . -name "*.go" -exec gofmt -s -w {} \;
107107

108108
vet: ## Runs 'go vet' over sources
109-
@echo "[37m[1/1][0m [36;1mRunning 'go vet' over sources…[0m"
109+
@echo "[36;1mRunning 'go vet' over sources…[0m"
110110
@go vet -composites=false -printfuncs=LPrintf,TLPrintf,TPrintf,log.Debug,log.Info,log.Warn,log.Error,log.Critical,log.Print ./...
111111

112112
clean: ## Remove generated files
113-
@echo "[37m[1/1][0m [36;1mRemoving built binaries…[0m"
113+
@echo "[36;1mRemoving built binaries…[0m"
114114
@rm -f bibop
115115

116116
help: ## Show this info
@@ -122,6 +122,6 @@ help: ## Show this info
122122
| sed 's/ifdef //' \
123123
| awk 'BEGIN {FS = " .*?## "}; {printf " \033[32m%-13s\033[0m %s\n", $$1, $$2}'
124124
@echo -e ''
125-
@echo -e '\033[90mGenerated by GoMakeGen 3.0.0\033[0m\n'
125+
@echo -e '\033[90mGenerated by GoMakeGen 3.0.1\033[0m\n'
126126

127127
################################################################################

0 commit comments

Comments
 (0)