blob: 2fb9f3c307252222cbcdff22dc3c5a71e23c86df [file] [log] [blame]
Tristan Matthewsccf51e32013-07-18 14:40:51 -04001#!/bin/sh
2
Tristan Matthews5bb1b5d2013-07-18 14:32:58 -04003APP=bin/SFLPhoneHome-debug.apk
Tristan Matthews322b9fd2013-07-18 15:55:43 -04004all: local.properties
Tristan Matthews5bb1b5d2013-07-18 14:32:58 -04005 ndk-build -C jni -j4
6 ant debug
7
Tristan Matthews322b9fd2013-07-18 15:55:43 -04008local.properties:
9 android update project -p .
10
Tristan Matthews5bb1b5d2013-07-18 14:32:58 -040011# You may want to specify a device with -s SERIAL NUMBER
12install: $(APP)
13 adb install -r $^
14
Tristan Matthewsfdd94e52013-07-19 16:44:44 -040015uninstall:
Alexandre Lision064e1e02013-10-01 16:18:42 -040016 adb uninstall org.sflphone
Tristan Matthewsfdd94e52013-07-19 16:44:44 -040017
Tristan Matthews5bb1b5d2013-07-18 14:32:58 -040018clean:
Tristan Matthews02034c02013-07-24 14:10:39 -040019 ant clean
20 rm -rf obj $(APP)