summaryrefslogtreecommitdiff
path: root/android/Bootstrap/Makefile.shared
diff options
context:
space:
mode:
Diffstat (limited to 'android/Bootstrap/Makefile.shared')
-rw-r--r--android/Bootstrap/Makefile.shared6
1 files changed, 3 insertions, 3 deletions
diff --git a/android/Bootstrap/Makefile.shared b/android/Bootstrap/Makefile.shared
index 9eb1800ae51e..de025c0a578c 100644
--- a/android/Bootstrap/Makefile.shared
+++ b/android/Bootstrap/Makefile.shared
@@ -23,7 +23,7 @@ define COPYSO
endef
define COPYJAR
-cp $(1) libs
+mkdir -p libs && cp $(1) libs
endef
#
@@ -58,7 +58,7 @@ properties:
echo "APP_PLATFORM := android-14" >> jni/Application.mk
install: build-ant
- unset JAVA_HOME && $(ANT) debug install
+ unset JAVA_HOME && $(ANT) -quiet debug install
@echo
@echo 'Run it with "make run"'
@echo
@@ -67,7 +67,7 @@ uninstall:
$(ANDROID_SDK_HOME)/platform-tools/adb uninstall $(APP_PACKAGE)
clean: android_version_setup properties
- $(ANT) clean
+ $(ANT) -quiet -keep-going clean
rm -rf assets libs $(SODEST) $(OBJLOCAL) $(BOOTSTRAPDIR)/no-resource-compress.xml
#