1
1
# ###############################################################################
2
2
3
- # This Makefile generated by GoMakeGen 3.0.0 using next command:
3
+ # This Makefile generated by GoMakeGen 3.0.1 using next command:
4
4
# gomakegen --mod .
5
5
#
6
6
# More info: https://kaos.sh/gomakegen
@@ -25,15 +25,15 @@ GITREV ?= $(shell test -s $(MAKEDIR)/.git && git rev-parse --short HEAD)
25
25
all : bibop # # Build all binaries
26
26
27
27
bibop :
28
- @echo " [37m[1/1][0m [ 36;1mBuilding bibop…[0m"
28
+ @echo " [36;1mBuilding bibop…[0m"
29
29
@go build $(VERBOSE_FLAG ) -ldflags=" -X main.gitrev=$( GITREV) " bibop.go
30
30
31
31
install : # # Install all binaries
32
- @echo " [37m[1/1][0m [ 36;1mInstalling binaries…[0m"
32
+ @echo " [36;1mInstalling binaries…[0m"
33
33
@cp bibop /usr/bin/bibop
34
34
35
35
uninstall : # # Uninstall all binaries
36
- @echo " [37m[1/1][0m [ 36;1mRemoving installed binaries…[0m"
36
+ @echo " [36;1mRemoving installed binaries…[0m"
37
37
@rm -f /usr/bin/bibop
38
38
39
39
init : mod-init # # Initialize new module
@@ -45,7 +45,7 @@ update: mod-update ## Update dependencies to the latest versions
45
45
vendor : mod-vendor # # Make vendored copy of dependencies
46
46
47
47
test : # # Run tests
48
- @echo " [37m[1/1][0m [ 36;1mStarting tests…[0m"
48
+ @echo " [36;1mStarting tests…[0m"
49
49
ifdef COVERAGE_FILE # # Save coverage data into file (String)
50
50
@go test $(VERBOSE_FLAG) -covermode=count -coverprofile=$(COVERAGE_FILE) ./parser ./recipe
51
51
else
54
54
55
55
gen-fuzz : # # Generate archives for fuzz testing
56
56
@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"
58
58
@go-fuzz-build -o parser-fuzz.zip github.com/essentialkaos/bibop/parser
59
59
60
60
mod-init :
@@ -94,23 +94,23 @@ endif
94
94
@test -d vendor && rm -rf vendor && go mod vendor $(VERBOSE_FLAG) || :
95
95
96
96
mod-download :
97
- @echo " [37m[1/1][0m [ 36;1mDownloading dependencies…[0m"
97
+ @echo " [36;1mDownloading dependencies…[0m"
98
98
@go mod download
99
99
100
100
mod-vendor :
101
- @echo " [37m[1/1][0m [ 36;1mVendoring dependencies…[0m"
101
+ @echo " [36;1mVendoring dependencies…[0m"
102
102
@rm -rf vendor && go mod vendor $(VERBOSE_FLAG ) || :
103
103
104
104
fmt : # # Format source code with gofmt
105
- @echo " [37m[1/1][0m [ 36;1mFormatting sources…[0m"
105
+ @echo " [36;1mFormatting sources…[0m"
106
106
@find . -name " *.go" -exec gofmt -s -w {} \;
107
107
108
108
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"
110
110
@go vet -composites=false -printfuncs=LPrintf,TLPrintf,TPrintf,log.Debug,log.Info,log.Warn,log.Error,log.Critical,log.Print ./...
111
111
112
112
clean : # # Remove generated files
113
- @echo " [37m[1/1][0m [ 36;1mRemoving built binaries…[0m"
113
+ @echo " [36;1mRemoving built binaries…[0m"
114
114
@rm -f bibop
115
115
116
116
help : # # Show this info
@@ -122,6 +122,6 @@ help: ## Show this info
122
122
| sed ' s/ifdef //' \
123
123
| awk ' BEGIN {FS = " .*?## "}; {printf " \033[32m%-13s\033[0m %s\n", $$1, $$2}'
124
124
@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'
126
126
127
127
# ###############################################################################
0 commit comments