summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-01 22:24:01 -0600
committerJeff Carr <[email protected]>2024-12-01 22:24:01 -0600
commit8f3953159a9c30f5fea1e8e5046026291e2f2958 (patch)
treeaf64e4a0079db08716671d4a22e72b244adec2ed /Makefile
parentaeac6b5af782c36279fc0f0f83e6120ec28bfd27 (diff)
autogenpb now configured in .proto filesv0.2.12
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index c9517e5..d8f264b 100644
--- a/Makefile
+++ b/Makefile
@@ -23,16 +23,16 @@ clean:
-rm -f go.*
droplet.pb.go: droplet.proto
- autogenpb --proto droplet.proto --mutex
+ autogenpb --proto droplet.proto
hypervisor.pb.go: hypervisor.proto
- autogenpb --proto hypervisor.proto --mutex
+ autogenpb --proto hypervisor.proto
event.pb.go: event.proto
- autogenpb --proto event.proto --mutex --no-sort
+ autogenpb --proto event.proto
experiments.pb.go: experiments.proto
- autogenpb --proto experiments.proto --no-marshal --no-sort
+ autogenpb --proto experiments.proto
deps:
apt install golang-goprotobuf-dev