blob: 9311d737af151b00e88b1729b485403fd3b6382f [file] [log] [blame]
#!/bin/sh
APP=bin/SFLPhoneHome-debug.apk
all: local.properties
ndk-build -C jni -j4
ant debug
local.properties:
android update project -p .
# You may want to specify a device with -s SERIAL NUMBER
install: $(APP)
adb install -r $^
uninstall:
adb uninstall com.savoirfairelinux.sflphone
clean:
ant clean
rm -rf obj $(APP)