File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -47,15 +47,20 @@ build-amalgamation:
47
47
build-java :
48
48
ant release
49
49
50
- build-native :
50
+ build-native-32 :
51
51
cd ${JNI_DIR} && \
52
52
ndk-build V=1 --environment-overrides NDK_LIBS_OUT=$(JNI_DIR ) /libs32 \
53
53
NDK_APPLICATION_MK=$(JNI_DIR ) /Application32.mk \
54
- SQLCIPHER_CFLAGS=" ${SQLCIPHER_CFLAGS} " && \
54
+ SQLCIPHER_CFLAGS=" ${SQLCIPHER_CFLAGS} "
55
+
56
+ build-native-64 :
57
+ cd ${JNI_DIR} && \
55
58
ndk-build V=1 --environment-overrides NDK_LIBS_OUT=$(JNI_DIR ) /libs64 \
56
59
NDK_APPLICATION_MK=$(JNI_DIR ) /Application64.mk \
57
60
SQLCIPHER_CFLAGS=" ${SQLCIPHER_CFLAGS} "
58
61
62
+ build-native : build-native-32 build-native-64
63
+
59
64
clean-java :
60
65
ant clean
61
66
rm -rf ${LIBS_DIR}
@@ -77,7 +82,7 @@ distclean: clean
77
82
rm -rf ${EXTERNAL_DIR} /android-libs
78
83
79
84
copy-libs :
80
- cp -R ${JNI_DIR} /libs32/* ${JNI_DIR} /libs64/* ${LIBS_DIR}
85
+ - cp -R ${JNI_DIR} /libs32/* ${JNI_DIR} /libs64/* ${LIBS_DIR}
81
86
82
87
release-aar :
83
88
-rm ${LIBS_DIR} /sqlcipher.jar
You can’t perform that action at this time.
0 commit comments