mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 19:48:07 +00:00
66 lines
1.3 KiB
Makefile
66 lines
1.3 KiB
Makefile
|
|
SUBDIRS=. help
|
|
|
|
EXTRA_DIST=linphonecore_jni.cc
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
linphone_includedir=$(includedir)/linphone
|
|
|
|
linphone_include_HEADERS=linphonecore.h linphonecore_utils.h ../config.h lpconfig.h sipsetup.h
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)\
|
|
-I$(top_srcdir)/mediastreamer2/include
|
|
|
|
|
|
lib_LTLIBRARIES=liblinphone.la
|
|
|
|
liblinphone_la_SOURCES=\
|
|
linphonecore.c linphonecore.h private.h\
|
|
offeranswer.c offeranswer.h\
|
|
sal.c sal.h \
|
|
sal_eXosip2.c sal_eXosip2.h\
|
|
sal_eXosip2_sdp.c \
|
|
sal_eXosip2_presence.c \
|
|
callbacks.c \
|
|
misc.c \
|
|
address.c \
|
|
enum.c enum.h \
|
|
presence.c \
|
|
proxy.c \
|
|
friend.c \
|
|
authentication.c \
|
|
lpconfig.c lpconfig.h \
|
|
chat.c \
|
|
linphonecall.c \
|
|
sipsetup.c sipsetup.h \
|
|
siplogin.c \
|
|
lsd.c linphonecore_utils.h
|
|
|
|
|
|
liblinphone_la_LDFLAGS= -version-info $(LIBLINPHONE_SO_VERSION) -no-undefined
|
|
|
|
liblinphone_la_LIBADD= \
|
|
$(EXOSIP_LIBS) \
|
|
$(top_builddir)/mediastreamer2/src/libmediastreamer.la \
|
|
$(ORTP_LIBS)
|
|
|
|
if BUILD_WIN32
|
|
liblinphone_la_LIBADD+=$(top_builddir)/oRTP/src/libortp.la
|
|
endif
|
|
|
|
noinst_PROGRAMS=test_lsd
|
|
|
|
test_lsd_SOURCES=test_lsd.c
|
|
|
|
test_lsd_LDADD=liblinphone.la
|
|
|
|
AM_CFLAGS=$(STRICT_OPTIONS) -DIN_LINPHONE \
|
|
$(ORTP_CFLAGS) \
|
|
$(OSIP_CFLAGS) \
|
|
$(EXOSIP_CFLAGS) \
|
|
-DENABLE_TRACE \
|
|
-DLOG_DOMAIN=\"LinphoneCore\" \
|
|
$(IPV6_CFLAGS) \
|
|
-DORTP_INET6 \
|
|
$(VIDEO_CFLAGS)
|