diff options
| author | Jeff Carr <[email protected]> | 2024-12-01 00:48:51 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-01 00:48:51 -0600 |
| commit | 4e47dea41e48e6ee8a48c0bbf75b1ba36a1b8f2c (patch) | |
| tree | f7c2ab17c3e0bbb82322667cb5ded165f227b0b7 /Makefile | |
| parent | 0b5687f76618025230baa4cf31e56dc1aba52d8b (diff) | |
using mutex lock from protobufv0.0.12
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 15 |
1 files changed, 7 insertions, 8 deletions
@@ -5,15 +5,11 @@ # go install -all: forgeConfig.pb.go - reset - make -C forgeConfig - -vet: lint - GO111MODULE=off go vet +all: forgeConfig.pb.go vet -lint: - -buf lint repo.proto +vet: + @GO111MODULE=off go vet + @echo this go library package builds okay # autofixes your import headers in your golang files goimports: @@ -31,6 +27,9 @@ clean: -rm -f go.* make -C forgeConfig clean +build: + make -C forgeConfig + install: make -C forgeConfig install |
