blob: 4296147208553cccb38deb5c8d5e7e3e96e66457 [file] [log] [blame]
Dinesh Belwalkare1e85ad2019-07-31 23:06:47 +00001# Copyright 2018-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15prereq:
16 go get -v google.golang.org/grpc
17 go get -v github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
18 go get -v github.com/golang/protobuf/protoc-gen-go
Dinesh Belwalkare63f7f92019-11-22 23:11:16 +000019 go get github.com/sirupsen/logrus
Dinesh Belwalkare1e85ad2019-07-31 23:06:47 +000020 go get github.com/Shopify/sarama
21
22demotest: prereq proto/importer.pb.go
23 go build -i -v -o $@
24
25
26proto/importer.pb.go: ../proto/importer.proto
Dinesh Belwalkarb5db83f2019-10-24 17:27:58 +000027 mkdir -p proto
Dinesh Belwalkare1e85ad2019-07-31 23:06:47 +000028 protoc --proto_path=../proto \
29 -I${GOPATH}/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
30 --go_out=plugins=grpc:proto/ \
31 ../proto/importer.proto