]> sjero.net Git - linphone/blob - build/android/Android.mk
Merge branch 'master' of git.sv.gnu.org:/srv/git/linphone
[linphone] / build / android / Android.mk
1 ##
2 ## Android.mk -Android build script-
3 ##
4 ##
5 ## Copyright (C) 2010  Belledonne Communications, Grenoble, France
6 ##
7 ##  This program is free software; you can redistribute it and/or modify
8 ##  it under the terms of the GNU General Public License as published by
9 ##  the Free Software Foundation; either version 2 of the License, or
10 ##  (at your option) any later version.
11 ##
12 ##  This program is distributed in the hope that it will be useful,
13 ##  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ##  GNU Library General Public License for more details.
16 ##
17 ##  You should have received a copy of the GNU General Public License
18 ##  along with this program; if not, write to the Free Software
19 ##  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 ##
21
22 LOCAL_PATH:= $(call my-dir)/../../coreapi
23 include $(CLEAR_VARS)
24
25 LOCAL_MODULE := liblinphone
26
27 LOCAL_CPP_EXTENSION := .cc
28
29 LOCAL_SRC_FILES = \
30         linphonecore.c \
31         misc.c  \
32         enum.c \
33         presence.c \
34         proxy.c \
35         friend.c \
36         authentication.c \
37         lpconfig.c \
38         chat.c \
39         sipsetup.c \
40         siplogin.c \
41         address.c \
42         linphonecore_jni.cc \
43         sal.c \
44         sal_eXosip2.c \
45         sal_eXosip2_presence.c \
46         sal_eXosip2_sdp.c \
47         offeranswer.c \
48         callbacks.c \
49         linphonecall.c \
50         ec-calibrator.c
51
52 LOCAL_CFLAGS += \
53         -D_BYTE_ORDER=_LITTLE_ENDIAN \
54         -DORTP_INET6 \
55         -DENABLE_TRACE \
56         -DLINPHONE_VERSION=\"3.4.0\" \
57         -DLINPHONE_PLUGINS_DIR=\"\\tmp\" \
58         -DLOG_DOMAIN=\"Linphone\"
59
60 LOCAL_CFLAGS += -DIN_LINPHONE
61
62 ifeq ($(LINPHONE_VIDEO),1)
63 LOCAL_CFLAGS += -DVIDEO_ENABLED
64 endif
65
66 LOCAL_C_INCLUDES += \
67         $(LOCAL_PATH) \
68         $(LOCAL_PATH)/include \
69         $(LOCAL_PATH)/../oRTP/include \
70         $(LOCAL_PATH)/../mediastreamer2/include \
71         $(LOCAL_PATH)/../../externals/exosip/include \
72         $(LOCAL_PATH)/../../externals/osip/include 
73
74 LOCAL_LDLIBS += -llog -ldl
75
76
77
78 LOCAL_STATIC_LIBRARIES := \
79         libmediastreamer2 \
80         libortp \
81         libeXosip2 \
82         libosip2 \
83         libgsm
84
85 ifeq ($(LINPHONE_VIDEO),1)
86 LOCAL_STATIC_LIBRARIES += \
87         libavcodec \
88         libswscale \
89         libavcore \
90         libavutil \
91         libmsx264 \
92         libx264
93 endif
94
95 LOCAL_STATIC_LIBRARIES += libspeex 
96
97
98 ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
99    LOCAL_CFLAGS += -DHAVE_ILBC=1
100    LOCAL_STATIC_LIBRARIES += libmsilbc
101 endif
102 LOCAL_MODULE_CLASS = SHARED_LIBRARIES
103
104 include $(BUILD_SHARED_LIBRARY)
105
106
107
108
109
110