-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
26 lines (23 loc) · 1.15 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
hbase_tmp_path := /tmp/hbase
bindings_path := $(CURDIR)/hbase-protobuf-python
all:
@echo Generating Python Protobuf bindings from HBase source
-mkdir $(bindings_path)
-git clone --depth 1 https://github.com/apache/hbase $(hbase_tmp_path)
cd $(hbase_tmp_path)/hbase-protocol-shaded/src/main/protobuf; \
protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) *.proto
cd $(hbase_tmp_path)/hbase-protocol-shaded/src/main/protobuf; \
protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) client/*.proto
cd $(hbase_tmp_path)/hbase-protocol-shaded/src/main/protobuf; \
protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) server/*.proto
cd $(hbase_tmp_path)/hbase-protocol-shaded/src/main/protobuf; \
protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) server/io/*.proto
cd $(hbase_tmp_path)/hbase-protocol-shaded/src/main/protobuf; \
protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) server/zookeeper/*.proto
test:
./tests/install_bash_unit.sh
./bash_unit
./bash_unit tests/test_hbase_exporter.sh
clean:
rm -rf $(hbase_tmp_path)
rm -rf $(bindings_path)