summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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