diff options
author | terminaldweller <thabogre@gmail.com> | 2021-11-12 15:08:26 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-11-12 15:08:26 +0000 |
commit | 0c8c603662d84974bfc681509694c27df404e7bf (patch) | |
tree | b70d9d2860ddf5a2474f3ee10f2f8033deeb0e47 /makefile | |
parent | removed travis (diff) | |
download | hived-0c8c603662d84974bfc681509694c27df404e7bf.tar.gz hived-0c8c603662d84974bfc681509694c27df404e7bf.zip |
restructuring WIP
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 14 |
1 files changed, 0 insertions, 14 deletions
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) |