mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-02-07 14:58:24 +00:00
12 lines
334 B
Makefile
12 lines
334 B
Makefile
# Ensure that adb is killed before running anything. This is needed in case
|
|
# the previous execution crashed (while adb still running) because adb will not be able to list atached devices
|
|
# until any adb is running
|
|
clean:
|
|
killall adb 2>/dev/null || true
|
|
adb start-server
|
|
|
|
all: clean
|
|
ant debug install
|
|
|
|
run-all-tests: all
|
|
ant test
|