summaryrefslogtreecommitdiff
path: root/android/sdremote
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-03-01 10:55:34 +0200
committerTor Lillqvist <tml@iki.fi>2013-03-01 10:55:51 +0200
commit18e035964e92cb4348a4de0bafc4114608ed4754 (patch)
tree297d0af5e517f1c41f04b83e3d8d96fb41a6f7f5 /android/sdremote
parent6a1cb54c31a0e7591173afa167938535bbe5cf6e (diff)
Cleanups to the android and ios makefilery
Also build the "desktop" app from gbuild. Change-Id: I45fc265c9515b22e10bd7644f54dbfa23601e063
Diffstat (limited to 'android/sdremote')
-rw-r--r--android/sdremote/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/android/sdremote/Makefile b/android/sdremote/Makefile
index 9d9712ad6a72..49fad9219b3b 100644
--- a/android/sdremote/Makefile
+++ b/android/sdremote/Makefile
@@ -11,14 +11,14 @@ include ../../config_host.mk
all: properties translations.done
mkdir -p ../abs-lib/libs
cp $(ANDROID_SDK_HOME)/extras/android/support/v4/android-support-v4.jar ../abs-lib/libs
- $(ANT) debug
+ $(ANT) -quiet debug
properties:
echo sdk.dir=$(ANDROID_SDK_HOME) >local.properties
echo sdk.dir=$(ANDROID_SDK_HOME) >../abs-lib/local.properties
clean: properties translations.clean
- $(ANT) clean
+ $(ANT) -quiet -keep-going clean
install: all
$(ANDROID_SDK_HOME)/platform-tools/adb install -r ./bin/ImpressRemote-debug.apk
@@ -55,6 +55,6 @@ translations.done: $(foreach lang,$(call android_get_langlist),$(call android_ge
translations.clean:
rm -rf $(foreach lang,$(call android_get_langlist),$(call android_get_podir,$(lang)))
rm -rf $(foreach lang,$(call android_get_langlist),translations-$(lang).db)
- rm translations.done
+ rm -f translations.done
# vim: set noet sw=4 ts=4: