8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10e14f3 commit 93fa8f9Copy full SHA for 93fa8f9
Makefile
@@ -38,15 +38,17 @@ build-native:
38
ndk-build V=1 --environment-overrides NDK_LIBS_OUT=$(JNI_DIR)/libs \
39
SQLCIPHER_CFLAGS="${SQLCIPHER_CFLAGS}"
40
41
-ndk-clean:
+clean-java:
42
+ ant clean
43
+ rm -rf ${LIBS_DIR}
44
+
45
+clean-ndk:
46
-cd ${JNI_DIR} && \
47
ndk-build clean
48
-clean: ndk-clean
49
+clean: clean-ndk clean-java
50
-cd ${SQLCIPHER_DIR} && \
51
make clean
- ant clean
- rm -rf ${LIBS_DIR}
52
53
distclean: clean
54
rm -rf ${EXTERNAL_DIR}/android-libs
0 commit comments