diff options
author | Thorsten Behrens <tbehrens@suse.com> | 2012-11-24 17:40:38 +0100 |
---|---|---|
committer | Thorsten Behrens <tbehrens@suse.com> | 2012-11-24 17:44:47 +0100 |
commit | 4a19c5bc3c679f83ac0d906e39dc1c51cbea97af (patch) | |
tree | 0ceb2def820daf6eb7b8b8d31e1bef386e935b1e /android/sdremote | |
parent | 2739333e553a578bfdb4b20c7c6832297c87844d (diff) |
Avoid android deployment target to be the default one accidentally.
Change-Id: I5345850789cd85966aa92064d1a95b7793521e9a
Diffstat (limited to 'android/sdremote')
-rw-r--r-- | android/sdremote/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/android/sdremote/Makefile b/android/sdremote/Makefile index 0b5ef5fe727b..8b06c98b6e9c 100644 --- a/android/sdremote/Makefile +++ b/android/sdremote/Makefile @@ -8,9 +8,6 @@ include ../../config_host.mk -install: all - $(ANDROID_SDK_HOME)/platform-tools/adb install -r ./bin/ImpressRemote-debug.apk - all: properties mkdir -p ../abs-lib/libs cp $(ANDROID_SDK_HOME)/extras/android/support/v4/android-support-v4.jar ../abs-lib/libs @@ -23,4 +20,7 @@ properties: clean: properties $(ANT) clean +install: all + $(ANDROID_SDK_HOME)/platform-tools/adb install -r ./bin/ImpressRemote-debug.apk + # vim: set noet sw=4 ts=4: |