diff options
| author | Jeff Carr <[email protected]> | 2024-10-26 06:01:19 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-26 06:01:19 -0500 |
| commit | ade54fdedac3bf89636f914b89fd17eaa972947f (patch) | |
| tree | c1f00a440a436a3b0738b865d89a1a8c5e3a81f7 /Makefile | |
| parent | a8484013dc62bc0750f780b04b46cd48fe85ee5b (diff) | |
events should not be plural
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -5,7 +5,7 @@ # go install -all: droplet.pb.go hypervisor.pb.go cluster.pb.go events.pb.go experiments.pb.go +all: droplet.pb.go hypervisor.pb.go cluster.pb.go event.pb.go experiments.pb.go make -C example vet: lint @@ -42,11 +42,11 @@ hypervisor.pb.go: hypervisor.proto --go_opt=Mhypervisor.proto=go.wit.com/lib/protobuf/virtbuf \ hypervisor.proto -events.pb.go: events.proto +event.pb.go: event.proto cd ~/go/src && protoc --go_out=. \ --proto_path=go.wit.com/lib/protobuf/virtbuf \ - --go_opt=Mevents.proto=go.wit.com/lib/protobuf/virtbuf \ - events.proto + --go_opt=Mevent.proto=go.wit.com/lib/protobuf/virtbuf \ + event.proto experiments.pb.go: experiments.proto cd ~/go/src && protoc --go_out=. \ @@ -59,6 +59,7 @@ cluster.pb.go: cluster.proto --go_opt=Mdroplet.proto=go.wit.com/lib/protobuf/virtbuf \ --go_opt=Mcluster.proto=go.wit.com/lib/protobuf/virtbuf \ --go_opt=Mhypervisor.proto=go.wit.com/lib/protobuf/virtbuf \ + --go_opt=Mevent.proto=go.wit.com/lib/protobuf/virtbuf \ cluster.proto deps: |
