From 0c8c603662d84974bfc681509694c27df404e7bf Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Fri, 12 Nov 2021 18:38:26 +0330 Subject: restructuring WIP --- makefile | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile deleted file mode 100644 index af3354d..0000000 --- a/makefile +++ /dev/null @@ -1,14 +0,0 @@ -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