tree/Makefile

22 lines
344 B
Makefile
Raw Permalink Normal View History

2025-02-22 22:18:13 -06:00
redo: proto goimports vet
2025-02-01 07:42:53 -06:00
vet:
@GO111MODULE=off go vet
2025-02-02 16:18:26 -06:00
@echo this go library builds okay
2025-02-01 07:42:53 -06:00
redomod: goimports
rm -f go.*
GO111MODULE= go mod init
GO111MODULE= go mod tidy
goimports:
goimports -w *.go
2025-02-01 07:42:53 -06:00
2025-02-22 22:18:13 -06:00
proto: toolkitConfig.pb.go
toolkitConfig.pb.go: toolkitConfig.proto
2025-02-08 06:35:38 -06:00
autogenpb --proto toolkitConfig.proto
2025-02-01 07:42:53 -06:00
clean:
rm -f go.* *.pb.go