It contains the following changes: - porting from AU_LINUX_ANDROID_LNX.LA.3.5.1_RB1.04.04.02.048.040 - updated package loc-api files according to the merge - rename loc-api to loc-hal - dynamically load liblbs_core.so.1 file for LE platforms - print a warning message when loading the lbs_core library fails CRs-fixed: 605821 Change-Id: I54e1a9c742d1734ffa29e6864901119e0ee600c8
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
AM_CFLAGS = -I./ \
|
|
-I../utils \
|
|
-I../platform_lib_abstractions \
|
|
-fno-short-enums
|
|
|
|
libloc_core_la_h_sources = \
|
|
MsgTask.h \
|
|
LocApiBase.h \
|
|
LocAdapterBase.h \
|
|
ContextBase.h \
|
|
LocDualContext.h \
|
|
LBSProxyBase.h \
|
|
UlpProxyBase.h \
|
|
gps_extended_c.h \
|
|
gps_extended.h \
|
|
loc_core_log.h \
|
|
fake_sched_policy.h
|
|
|
|
libloc_core_la_c_sources = \
|
|
MsgTask.cpp \
|
|
LocApiBase.cpp \
|
|
LocAdapterBase.cpp \
|
|
ContextBase.cpp \
|
|
LocDualContext.cpp \
|
|
loc_core_log.cpp \
|
|
fake_sched_policy.c
|
|
|
|
library_includedir = $(pkgincludedir)/core
|
|
|
|
library_include_HEADERS = $(libloc_core_la_h_sources)
|
|
|
|
libloc_core_la_SOURCES = $(libloc_core_la_c_sources)
|
|
|
|
if USE_GLIB
|
|
libloc_core_la_CFLAGS = -DUSE_GLIB $(AM_CFLAGS) @GLIB_CFLAGS@
|
|
libloc_core_la_LDFLAGS = -lstdc++ -lpthread @GLIB_LIBS@ -shared -version-info 1:0:0
|
|
libloc_core_la_CPPFLAGS = -DUSE_GLIB $(AM_CFLAGS) $(AM_CPPFLAGS) @GLIB_CFLAGS@
|
|
else
|
|
libloc_core_la_CFLAGS = $(AM_CFLAGS)
|
|
libloc_core_la_LDFLAGS = -lpthread -shared -version-info 1:0:0
|
|
libloc_core_la_CPPFLAGS = $(AM_CFLAGS) $(AM_CPPFLAGS)
|
|
endif
|
|
|
|
libloc_core_la_LIBADD = -lstdc++ -ldl ../utils/libgps_utils_so.la
|
|
|
|
#Create and Install libraries
|
|
lib_LTLIBRARIES = libloc_core.la
|