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:
4747build-java :
4848 ant release
4949
50- build-native :
50+ build-native-32 :
5151 cd ${JNI_DIR} && \
5252 ndk-build V=1 --environment-overrides NDK_LIBS_OUT=$(JNI_DIR ) /libs32 \
5353 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} && \
5558 ndk-build V=1 --environment-overrides NDK_LIBS_OUT=$(JNI_DIR ) /libs64 \
5659 NDK_APPLICATION_MK=$(JNI_DIR ) /Application64.mk \
5760 SQLCIPHER_CFLAGS=" ${SQLCIPHER_CFLAGS} "
5861
62+ build-native : build-native-32 build-native-64
63+
5964clean-java :
6065 ant clean
6166 rm -rf ${LIBS_DIR}
@@ -77,7 +82,7 @@ distclean: clean
7782 rm -rf ${EXTERNAL_DIR} /android-libs
7883
7984copy-libs :
80- cp -R ${JNI_DIR} /libs32/* ${JNI_DIR} /libs64/* ${LIBS_DIR}
85+ - cp -R ${JNI_DIR} /libs32/* ${JNI_DIR} /libs64/* ${LIBS_DIR}
8186
8287release-aar :
8388 -rm ${LIBS_DIR} /sqlcipher.jar
You can’t perform that action at this time.
0 commit comments