UNPKG

@chatie/grpc

Version:
31 lines (23 loc) 451 B
# Makefile for Python Wechaty # # GitHb: https://github.com/wechaty/python-wechaty # Author: Huan LI <zixia@zixia.net> git.io/zixia # .PHONY: all all : clean lint .PHONY: clean clean: rm -fr generated/* .PHONY: install install: go get -u github.com/golang/protobuf/protoc-gen-go go get -v -t -d ./... .PHONY: test test: go test ./... .PHONY: generate generate: bash -x ./generate.sh .PHONY: publish publish: clean generate ./publish.sh