s/service/hwt/

This commit is contained in:
Stephen McQuay 2018-01-16 21:18:38 -08:00
parent 8f3623ac1a
commit db3de8c61f
Signed by: sm
GPG Key ID: 4E4B72F479BA3CE5
3 changed files with 13 additions and 11 deletions

4
.gitignore vendored
View File

@ -1,3 +1,3 @@
service.pb.go
service.twirp.go
hwt.pb.go
hwt.twirp.go
vendor

View File

@ -4,23 +4,25 @@ rwildcard=$(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(subst
default: ${GOPATH}/bin/hwtd ${GOPATH}/bin/hwtc
${GOPATH}/bin/hwtd: vendor $(call rwildcard,,*.go) hwt.go
go install -v mcquay.me/hwt/cmd/hwtd
@go install -v mcquay.me/hwt/cmd/hwtd
${GOPATH}/bin/hwtc: vendor $(call rwildcard,,*.go) hwt.go
go install -v mcquay.me/hwt/cmd/hwtc
@go install -v mcquay.me/hwt/cmd/hwtc
hwt.go: service.twirp.go service.pb.go
hwt.go: hwt.twirp.go hwt.pb.go
service.twirp.go: service.proto
protoc --proto_path=${GOPATH}/src:. --twirp_out=. --go_out=. ./service.proto
hwt.twirp.go: hwt.proto
@echo "generating twirp file"
@protoc --proto_path=${GOPATH}/src:. --twirp_out=. --go_out=. ./hwt.proto
service.pb.go: service.proto
protoc --proto_path=${GOPATH}/src:. --twirp_out=. --go_out=. ./service.proto
hwt.pb.go: hwt.proto
@echo "generating pb file"
@protoc --proto_path=${GOPATH}/src:. --twirp_out=. --go_out=. ./hwt.proto
vendor: Gopkg.toml Gopkg.lock service.twirp.go service.pb.go
vendor: Gopkg.toml Gopkg.lock hwt.twirp.go hwt.pb.go
dep ensure
.PHONY: clean
clean:
@rm -f service.{twirp,pb}.go
@rm -f hwt.{twirp,pb}.go
@rm -rf vendor