Skip to content

Commit d8d0f01

Browse files
committed
Add build.sh and clean.sh for easier building
1 parent 7ed67ab commit d8d0f01

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

build.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/sh
2+
3+
cd hijack/jni
4+
ndk-build
5+
cd ../..
6+
7+
cd instruments
8+
cd base/jni
9+
ndk-build
10+
cd ../..
11+
12+
cd example/jni
13+
ndk-build
14+
cd ../..
15+
16+
cd ..
17+

clean.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
3+
rm -vrf ./hijack/libs ./hijack/obj ./instruments/base/obj ./instruments/example/libs ./instruments/example/obj

0 commit comments

Comments
 (0)