summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-01 00:48:51 -0600
committerJeff Carr <[email protected]>2024-12-01 00:48:51 -0600
commit4e47dea41e48e6ee8a48c0bbf75b1ba36a1b8f2c (patch)
treef7c2ab17c3e0bbb82322667cb5ded165f227b0b7 /Makefile
parent0b5687f76618025230baa4cf31e56dc1aba52d8b (diff)
using mutex lock from protobufv0.0.12
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 7 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 78a60fd..e20aa05 100644
--- a/Makefile
+++ b/Makefile
@@ -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