Updated Makefile to separate make from make install
This commit is contained in:
parent
641294975d
commit
bcc8ea078f
2 changed files with 6 additions and 2 deletions
6
Makefile
6
Makefile
|
@ -18,7 +18,9 @@ BUILD_WEBRTC_AECM=1
|
|||
BUILD_FOR_X86=1
|
||||
USE_JAVAH=1
|
||||
|
||||
all: update-project prepare-sources install-apk run-linphone
|
||||
all: update-project prepare-sources generate-apk
|
||||
|
||||
install: install-apk run-linphone
|
||||
|
||||
prepare-ffmpeg:
|
||||
ifeq ($(PATCH_FFMPEG),)
|
||||
|
@ -94,7 +96,7 @@ generate-apk:
|
|||
ant partial-clean
|
||||
ant debug
|
||||
|
||||
install-apk: generate-apk
|
||||
install-apk:
|
||||
ant installd
|
||||
|
||||
release: update-project
|
||||
|
|
2
README
2
README
|
@ -8,6 +8,8 @@ To build liblinphone for Android, you must:
|
|||
2bis) on some 64 bits systems you'll need the ia32-libs package
|
||||
3) run the Makefile script in the top level directory. This will download iLBC source files and convert some assembly files in VP8 project.
|
||||
$ make
|
||||
4) To install the generated apk into a plugged device, run
|
||||
$ make install
|
||||
|
||||
To create an apk with a different package name, you need to edit the custom_rules.xml file:
|
||||
1) look for the property named "linphone.package.name" and change it value accordingly
|
||||
|
|
Loading…
Reference in a new issue