File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
pes_parent_dir: =$(shell pwd) /$(lastword $(MAKEFILE_LIST ) )
2
2
cur_makefile_path := $(shell dirname $(pes_parent_dir ) )
3
3
4
- all : build build-example target/tikv-example
4
+ all : build target/tikv-example
5
5
6
6
build : pre-build target/debug/libtikv_client.a
7
7
8
8
release : pre-build target/release/libtikv_client.a
9
9
10
- pre-build : target/tikv_client_glue.cc include/tikv_client_glue.h
11
- mkdir target
10
+ .PHONY : directories
11
+
12
+ directories :
13
+ mkdir -p target
14
+
15
+ pre-build : directories target/tikv_client_glue.cc include/tikv_client_glue.h
12
16
13
17
clean :
14
18
cargo clean
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ This client is still in the stage of prove-of-concept and under heavy developmen
10
10
## Build
11
11
12
12
``` bash
13
+ # cxxbridge-cmd 1.0.18 requires rustc 1.48+ and c++11 or newer
13
14
cargo install cxxbridge-cmd --force --version 1.0.18
14
15
make
15
16
```
You can’t perform that action at this time.
0 commit comments