From 018d77f1c44e0d08025ce5240b1ed5c3c2887b0d Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Thu, 22 Jul 2021 07:01:43 +0430 Subject: want to switch to grpc for the telegram bot. obviously take the telegram bot out of hived. added a robots.txt hadnler --- makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..af3354d --- /dev/null +++ b/makefile @@ -0,0 +1,14 @@ +DST_DIR?=./protobuf +SRC_DIR?=./protobuf +PROTOBUF_SRC_LIST:=$(shell find ./protobuf -name '*.proto' ) +ARTIFACT_LIST:=$(patsubst %.proto, %.pb.go, $(shell find ./protobuf -name '*.proto')) + +DEFAULT: default + +default: $(ARTIFACT_LIST) + +$(SRC_DIR)/%.pb.go:$(SRC_DIR)/%.proto + protoc --proto_path=$(SRC_DIR) --go_out=$(DST_DIR) $< + +clean: + - rm $(ARTIFACT_LIST) -- cgit v1.2.3