summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-24 16:57:50 -0500
committerJeff Carr <[email protected]>2024-10-24 16:57:50 -0500
commit87b7bc17b313c04806981408943923d8e66f960a (patch)
tree2124e618a2dd06fc0aefa6b4a3a1d449e504bf8a /Makefile
parentdac27e31b5cdf7f9aa382cd342dcfa79423a0f69 (diff)
seperate config files for droplets, hypervisors & events
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index fc490a4..9f4d4ce 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
all: droplet.pb.go hypervisor.pb.go cluster.pb.go events.pb.go
- make -C configfile
+ make -C example
vet: lint
GO111MODULE=off go vet
@@ -17,7 +17,7 @@ lint:
# autofixes your import headers in your golang files
goimports:
goimports -w *.go
- make -C configfile goimports
+ make -C example goimports
redomod:
rm -f go.*
@@ -27,7 +27,7 @@ redomod:
clean:
rm -f *.pb.go
-rm -f go.*
- make -C configfile clean
+ make -C example clean
droplet.pb.go: droplet.proto
# protoc --go_out=. droplet.proto