Kaydet (Commit) e3d91e91 authored tarafından Jan Holesovsky's avatar Jan Holesovsky

android: Allow verbose output from the ant build.

Change-Id: I1086a7ab6bc7913c9c9f2492d07915039007e613
üst c79e70f5
......@@ -58,7 +58,7 @@ properties:
echo "APP_PLATFORM := android-15" >> jni/Application.mk
install: build-ant
unset JAVA_HOME && $(ANT) -quiet debug install
unset JAVA_HOME && $(ANT) $(if $(VERBOSE)$(verbose),,-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) -quiet -keep-going clean
$(ANT) $(if $(VERBOSE)$(verbose),,-quiet) -keep-going clean
rm -rf assets libs $(SODEST) $(OBJLOCAL) $(BOOTSTRAPDIR)/no-resource-compress.xml
rm -f native-code.cxx
......
......@@ -128,7 +128,7 @@ build-ant: android_version_setup copy-stuff link-so properties
$(call COPYJAR,$(INSTDIR)/$(LIBO_SHARE_JAVA_FOLDER)/$${F}.jar); \
done
#
unset JAVA_HOME && $(ANT) -quiet debug
unset JAVA_HOME && $(ANT) $(if $(VERBOSE)$(verbose),,-quiet) debug
run:
adb shell am start -n org.libreoffice.android.examples/.DocumentLoader -e input /assets/test1.odt
......@@ -131,7 +131,7 @@ build-ant: android_version_setup copy-stuff link-so properties
$(call COPYJAR,$(INSTDIR)/$(LIBO_SHARE_JAVA_FOLDER)/$${F}.jar); \
done
#
unset JAVA_HOME && $(ANT) -quiet debug
unset JAVA_HOME && $(ANT) $(if $(VERBOSE)$(verbose),,-quiet) debug
run:
adb shell am start -n $(APP_PACKAGE)/.ui.LibreOfficeUIActivity -e input /assets/test1.odt
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment