tree/Makefile

23 lines
340 B
Makefile
Raw Normal View History

2025-02-02 16:18:26 -06:00
all: goimports vet
2025-02-01 07:42:53 -06:00
redo: clean proto goimports vet
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
proto:
autogenpb --proto widget.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