75da4c0eee
Change-Id: I134d6418f1357a4d7ce37358481d6b765d93e1a5
33 lines
908 B
Makefile
33 lines
908 B
Makefile
AM_CFLAGS = \
|
|
$(LOCPLA_CFLAGS) \
|
|
$(LOCHAL_CFLAGS) \
|
|
$(GPSUTILS_CFLAGS) \
|
|
$(LOCCORE_CFLAGS) \
|
|
-I./ \
|
|
-I../utils \
|
|
-I$(WORKSPACE)/hardware/qcom/gps/core/data-items \
|
|
-I../location \
|
|
-std=c++1y
|
|
|
|
libgnss_la_SOURCES = \
|
|
location_gnss.cpp \
|
|
GnssAdapter.cpp \
|
|
XtraSystemStatusObserver.cpp \
|
|
Agps.cpp \
|
|
NativeAgpsHandler.cpp
|
|
|
|
if USE_GLIB
|
|
libgnss_la_CFLAGS = -DUSE_GLIB $(AM_CFLAGS) @GLIB_CFLAGS@
|
|
libgnss_la_LDFLAGS = -lstdc++ -Wl,-z,defs -lpthread @GLIB_LIBS@ -shared -avoid-version
|
|
libgnss_la_CPPFLAGS = -DUSE_GLIB $(AM_CFLAGS) $(AM_CPPFLAGS) @GLIB_CFLAGS@
|
|
else
|
|
libgnss_la_CFLAGS = $(AM_CFLAGS)
|
|
libgnss_la_LDFLAGS = -Wl,-z,defs -lpthread -shared -version-info 1:0:0
|
|
libgnss_la_CPPFLAGS = $(AM_CFLAGS) $(AM_CPPFLAGS)
|
|
endif
|
|
|
|
libgnss_la_LIBADD = -lstdc++ -ldl $(GPSUTILS_LIBS) $(LOCCORE_LIBS)
|
|
|
|
#Create and Install libraries
|
|
lib_LTLIBRARIES = libgnss.la
|