b9fdaff70a
Change-Id: Ia76265a8c3326f2b5f9f260ce98807276af80ee3
36 lines
926 B
Makefile
36 lines
926 B
Makefile
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
AM_CFLAGS = \
|
|
$(LOCPLA_CFLAGS) \
|
|
$(LOCHAL_CFLAGS) \
|
|
$(GPSUTILS_CFLAGS) \
|
|
$(LOCCORE_CFLAGS) \
|
|
-I./ \
|
|
-I../location \
|
|
-std=c++14
|
|
|
|
libgnss_la_SOURCES = \
|
|
location_gnss.cpp \
|
|
GnssAdapter.cpp \
|
|
XtraSystemStatusObserver.cpp \
|
|
Agps.cpp \
|
|
NativeAgpsHandler.cpp
|
|
|
|
if USE_FEATURE_AUTOMOTIVE
|
|
AM_CFLAGS += -DFEATURE_AUTOMOTIVE
|
|
endif
|
|
|
|
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
|