msm8974-common: gps: Cleanup makefiles and remove useless files
Change-Id: I66848d2e220817ae61642d7211f7eabf5e4efcea
This commit is contained in:
parent
9cf367bddf
commit
1a49af68a6
@ -1,50 +0,0 @@
|
|||||||
# Copyright (C) 2007 The Android Open Source Project
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
#
|
|
||||||
|
|
||||||
# If you don't need to do a full clean build but would like to touch
|
|
||||||
# a file or delete some intermediate files, add a clean step to the end
|
|
||||||
# of the list. These steps will only be run once, if they haven't been
|
|
||||||
# run before.
|
|
||||||
#
|
|
||||||
# E.g.:
|
|
||||||
# $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
|
|
||||||
# $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates)
|
|
||||||
#
|
|
||||||
# Always use "touch -c" and "rm -f" or "rm -rf" to gracefully deal with
|
|
||||||
# files that are missing or have been moved.
|
|
||||||
#
|
|
||||||
# Use $(PRODUCT_OUT) to get to the "out/target/product/blah/" directory.
|
|
||||||
# Use $(OUT_DIR) to refer to the "out" directory.
|
|
||||||
#
|
|
||||||
# If you need to re-do something that's already mentioned, just copy
|
|
||||||
# the command and add it to the bottom of the list. E.g., if a change
|
|
||||||
# that you made last week required touching a file and a change you
|
|
||||||
# made today requires touching the same file, just copy the old
|
|
||||||
# touch step and add it to the end of the list.
|
|
||||||
#
|
|
||||||
# ************************************************
|
|
||||||
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
|
|
||||||
# ************************************************
|
|
||||||
|
|
||||||
# For example:
|
|
||||||
#$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates)
|
|
||||||
#$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates)
|
|
||||||
#$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f)
|
|
||||||
#$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*)
|
|
||||||
|
|
||||||
# ************************************************
|
|
||||||
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
|
|
||||||
# ************************************************
|
|
||||||
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libloc_api*)
|
|
@ -1,10 +0,0 @@
|
|||||||
# Makefile.am - Automake script for gps loc_api
|
|
||||||
#
|
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I m4
|
|
||||||
|
|
||||||
SUBDIRS = utils loc_api/libloc_api_50001 loc_api/loc_api_v02
|
|
||||||
|
|
||||||
pkgconfigdir = $(libdir)/pkgconfig
|
|
||||||
pkgconfig_DATA = loc-api.pc
|
|
||||||
EXTRA_DIST = $(pkgconfig_DATA)
|
|
@ -1,85 +0,0 @@
|
|||||||
# configure.ac -- Autoconf script for gps loc_api
|
|
||||||
#
|
|
||||||
# Process this file with autoconf to produce a configure script
|
|
||||||
|
|
||||||
# Requires autoconf tool later than 2.61
|
|
||||||
AC_PREREQ(2.61)
|
|
||||||
# Initialize the gps loc_api package version 1.0.0
|
|
||||||
AC_INIT([loc-api],1.0.0)
|
|
||||||
# Does not strictly follow GNU Coding standards
|
|
||||||
AM_INIT_AUTOMAKE([foreign])
|
|
||||||
# Disables auto rebuilding of configure, Makefile.ins
|
|
||||||
AM_MAINTAINER_MODE
|
|
||||||
# Verifies the --srcdir is correct by checking for the path
|
|
||||||
AC_CONFIG_SRCDIR([utils/loc_cfg.cpp])
|
|
||||||
# defines some macros variable to be included by source
|
|
||||||
AC_CONFIG_HEADERS([config.h])
|
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
|
||||||
|
|
||||||
# Checks for programs.
|
|
||||||
AC_PROG_LIBTOOL
|
|
||||||
AC_PROG_CXX
|
|
||||||
AC_PROG_CC
|
|
||||||
AM_PROG_CC_C_O
|
|
||||||
AC_PROG_AWK
|
|
||||||
AC_PROG_CPP
|
|
||||||
AC_PROG_INSTALL
|
|
||||||
AC_PROG_LN_S
|
|
||||||
AC_PROG_MAKE_SET
|
|
||||||
PKG_PROG_PKG_CONFIG
|
|
||||||
|
|
||||||
# Checks for libraries.
|
|
||||||
PKG_CHECK_MODULES([QMIF], [qmi-framework])
|
|
||||||
AC_SUBST([QMIF_CFLAGS])
|
|
||||||
AC_SUBST([QMIF_LIBS])
|
|
||||||
|
|
||||||
AC_ARG_WITH([libhardware_includes],
|
|
||||||
AC_HELP_STRING([--with-libhardware-includes=@<:@dir@:>@],
|
|
||||||
[Specify the location of the libhardware headers]),
|
|
||||||
[libhardware_incdir=$withval],
|
|
||||||
with_libhardware_includes=no)
|
|
||||||
|
|
||||||
if test "x$with_libhardware_includes" != "xno"; then
|
|
||||||
CPPFLAGS="${CPPFLAGS} -I${libhardware_incdir}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_ARG_WITH([core_includes],
|
|
||||||
AC_HELP_STRING([--with-core-includes=@<:@dir@:>@],
|
|
||||||
[Specify the location of the core headers]),
|
|
||||||
[core_incdir=$withval],
|
|
||||||
with_core_includes=no)
|
|
||||||
|
|
||||||
if test "x$with_core_includes" != "xno"; then
|
|
||||||
CPPFLAGS="${CPPFLAGS} -I${core_incdir}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
AC_SUBST([CPPFLAGS])
|
|
||||||
|
|
||||||
AC_ARG_WITH([glib],
|
|
||||||
AC_HELP_STRING([--with-glib],
|
|
||||||
[enable glib, building HLOS systems which use glib]))
|
|
||||||
|
|
||||||
if (test "x${with_glib}" = "xyes"); then
|
|
||||||
AC_DEFINE(ENABLE_USEGLIB, 1, [Define if HLOS systems uses glib])
|
|
||||||
PKG_CHECK_MODULES(GTHREAD, gthread-2.0 >= 2.16, dummy=yes,
|
|
||||||
AC_MSG_ERROR(GThread >= 2.16 is required))
|
|
||||||
PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.16, dummy=yes,
|
|
||||||
AC_MSG_ERROR(GLib >= 2.16 is required))
|
|
||||||
GLIB_CFLAGS="$GLIB_CFLAGS $GTHREAD_CFLAGS"
|
|
||||||
GLIB_LIBS="$GLIB_LIBS $GTHREAD_LIBS"
|
|
||||||
|
|
||||||
AC_SUBST(GLIB_CFLAGS)
|
|
||||||
AC_SUBST(GLIB_LIBS)
|
|
||||||
fi
|
|
||||||
|
|
||||||
AM_CONDITIONAL(USE_GLIB, test "x${with_glib}" = "xyes")
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([ \
|
|
||||||
Makefile \
|
|
||||||
utils/Makefile \
|
|
||||||
loc_api/libloc_api_50001/Makefile \
|
|
||||||
loc_api/loc_api_v02/Makefile \
|
|
||||||
loc-api.pc \
|
|
||||||
])
|
|
||||||
|
|
||||||
AC_OUTPUT
|
|
@ -1,6 +1,3 @@
|
|||||||
ifneq ($(BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE),)
|
|
||||||
ifneq ($(BUILD_TINY_ANDROID),true)
|
|
||||||
|
|
||||||
LOCAL_PATH := $(call my-dir)
|
LOCAL_PATH := $(call my-dir)
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
include $(CLEAR_VARS)
|
||||||
@ -10,12 +7,6 @@ LOCAL_MODULE_OWNER := qcom
|
|||||||
|
|
||||||
LOCAL_MODULE_TAGS := optional
|
LOCAL_MODULE_TAGS := optional
|
||||||
|
|
||||||
ifeq ($(TARGET_DEVICE),apq8026_lw)
|
|
||||||
LOCAL_CFLAGS += -DPDK_FEATURE_SET
|
|
||||||
else ifeq ($(BOARD_VENDOR_QCOM_LOC_PDK_FEATURE_SET),true)
|
|
||||||
LOCAL_CFLAGS += -DPDK_FEATURE_SET
|
|
||||||
endif
|
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
LOCAL_SHARED_LIBRARIES := \
|
||||||
libutils \
|
libutils \
|
||||||
libcutils \
|
libcutils \
|
||||||
@ -50,9 +41,4 @@ LOCAL_COPY_HEADERS:= \
|
|||||||
loc_core_log.h \
|
loc_core_log.h \
|
||||||
LocAdapterProxyBase.h
|
LocAdapterProxyBase.h
|
||||||
|
|
||||||
LOCAL_PRELINK_MODULE := false
|
|
||||||
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
include $(BUILD_SHARED_LIBRARY)
|
||||||
|
|
||||||
endif # not BUILD_TINY_ANDROID
|
|
||||||
endif # BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE
|
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
prefix=@prefix@
|
|
||||||
exec_prefix=@exec_prefix@
|
|
||||||
libdir=@libdir@
|
|
||||||
includedir=@includedir@
|
|
||||||
|
|
||||||
Name: loc-api
|
|
||||||
Description: Qualcomm GPS Location API
|
|
||||||
Version: @VERSION@
|
|
||||||
Libs: -L${libdir} -lgps_utils_so -lloc_adapter_so -lloc_eng_so -lgps_default_so -lloc_api
|
|
||||||
Cflags: -I${includedir}/loc-api/libloc_api_50001 -I${includedir}/loc-api/utils -I${includedir}/ -I${includedir}/loc-api
|
|
@ -1,10 +1 @@
|
|||||||
ifneq ($(BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE),)
|
include $(call all-subdir-makefiles)
|
||||||
|
|
||||||
LOCAL_PATH := $(call my-dir)
|
|
||||||
|
|
||||||
GPS_DIR_LIST += $(LOCAL_PATH)/libloc_api_50001/
|
|
||||||
|
|
||||||
#call the subfolders
|
|
||||||
include $(addsuffix Android.mk, $(GPS_DIR_LIST))
|
|
||||||
|
|
||||||
endif#BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE
|
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
ifneq ($(BUILD_TINY_ANDROID),true)
|
|
||||||
#Compile this library only for builds with the latest modem image
|
|
||||||
|
|
||||||
LOCAL_PATH := $(call my-dir)
|
LOCAL_PATH := $(call my-dir)
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
include $(CLEAR_VARS)
|
||||||
@ -41,7 +38,7 @@ LOCAL_CFLAGS += \
|
|||||||
LOCAL_C_INCLUDES:= \
|
LOCAL_C_INCLUDES:= \
|
||||||
$(TARGET_OUT_HEADERS)/gps.utils \
|
$(TARGET_OUT_HEADERS)/gps.utils \
|
||||||
$(TARGET_OUT_HEADERS)/libloc_core \
|
$(TARGET_OUT_HEADERS)/libloc_core \
|
||||||
hardware/qcom/gps/loc_api/libloc_api_50001 \
|
$(LOCAL_PATH) \
|
||||||
$(TARGET_OUT_HEADERS)/libflp
|
$(TARGET_OUT_HEADERS)/libflp
|
||||||
|
|
||||||
LOCAL_COPY_HEADERS_TO:= libloc_eng/
|
LOCAL_COPY_HEADERS_TO:= libloc_eng/
|
||||||
@ -55,19 +52,16 @@ LOCAL_COPY_HEADERS:= \
|
|||||||
loc_eng_msg.h \
|
loc_eng_msg.h \
|
||||||
loc_eng_log.h
|
loc_eng_log.h
|
||||||
|
|
||||||
LOCAL_PRELINK_MODULE := false
|
|
||||||
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
include $(BUILD_SHARED_LIBRARY)
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
include $(CLEAR_VARS)
|
||||||
|
|
||||||
LOCAL_MODULE := gps.$(BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE)
|
LOCAL_MODULE := gps.$(TARGET_BOARD_PLATFORM)
|
||||||
LOCAL_MODULE_OWNER := qcom
|
LOCAL_MODULE_OWNER := qcom
|
||||||
|
|
||||||
LOCAL_MODULE_TAGS := optional
|
LOCAL_MODULE_TAGS := optional
|
||||||
|
|
||||||
## Libs
|
## Libs
|
||||||
|
|
||||||
LOCAL_SHARED_LIBRARIES := \
|
LOCAL_SHARED_LIBRARIES := \
|
||||||
libutils \
|
libutils \
|
||||||
libcutils \
|
libcutils \
|
||||||
@ -77,9 +71,6 @@ LOCAL_SHARED_LIBRARIES := \
|
|||||||
libgps.utils \
|
libgps.utils \
|
||||||
libdl
|
libdl
|
||||||
|
|
||||||
ifneq ($(filter $(TARGET_DEVICE), apq8084 msm8960), false)
|
|
||||||
endif
|
|
||||||
|
|
||||||
LOCAL_SRC_FILES += \
|
LOCAL_SRC_FILES += \
|
||||||
loc.cpp \
|
loc.cpp \
|
||||||
gps.c
|
gps.c
|
||||||
@ -88,19 +79,12 @@ LOCAL_CFLAGS += \
|
|||||||
-fno-short-enums \
|
-fno-short-enums \
|
||||||
-D_ANDROID_ \
|
-D_ANDROID_ \
|
||||||
|
|
||||||
ifeq ($(TARGET_USES_QCOM_BSP), true)
|
|
||||||
LOCAL_CFLAGS += -DTARGET_USES_QCOM_BSP
|
|
||||||
endif
|
|
||||||
|
|
||||||
## Includes
|
## Includes
|
||||||
LOCAL_C_INCLUDES:= \
|
LOCAL_C_INCLUDES:= \
|
||||||
$(TARGET_OUT_HEADERS)/gps.utils \
|
$(TARGET_OUT_HEADERS)/gps.utils \
|
||||||
$(TARGET_OUT_HEADERS)/libloc_core \
|
$(TARGET_OUT_HEADERS)/libloc_core \
|
||||||
$(TARGET_OUT_HEADERS)/libflp
|
$(TARGET_OUT_HEADERS)/libflp
|
||||||
|
|
||||||
LOCAL_PRELINK_MODULE := false
|
|
||||||
LOCAL_MODULE_RELATIVE_PATH := hw
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
||||||
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
include $(BUILD_SHARED_LIBRARY)
|
||||||
|
|
||||||
endif # not BUILD_TINY_ANDROID
|
|
||||||
|
@ -1,76 +0,0 @@
|
|||||||
AM_CFLAGS = \
|
|
||||||
-I../../utils \
|
|
||||||
-I../../platform_lib_abstractions \
|
|
||||||
-fno-short-enums \
|
|
||||||
-DFEATURE_GNSS_BIT_API
|
|
||||||
|
|
||||||
libloc_adapter_so_la_SOURCES = loc_eng_log.cpp LocEngAdapter.cpp
|
|
||||||
|
|
||||||
if USE_GLIB
|
|
||||||
libloc_adapter_so_la_CFLAGS = -DUSE_GLIB $(AM_CFLAGS) @GLIB_CFLAGS@
|
|
||||||
libloc_adapter_so_la_LDFLAGS = -lstdc++ -lpthread @GLIB_LIBS@ -shared -version-info 1:0:0
|
|
||||||
libloc_adapter_so_la_CPPFLAGS = -DUSE_GLIB $(AM_CFLAGS) $(AM_CPPFLAGS) @GLIB_CFLAGS@
|
|
||||||
else
|
|
||||||
libloc_adapter_so_la_CFLAGS = $(AM_CFLAGS)
|
|
||||||
libloc_adapter_so_la_LDFLAGS = -lpthread -shared -version-info 1:0:0
|
|
||||||
libloc_adapter_so_la_CPPFLAGS = $(AM_CFLAGS) $(AM_CPPFLAGS)
|
|
||||||
endif
|
|
||||||
libloc_adapter_so_la_LIBADD = -lstdc++ -lcutils ../../utils/libgps_utils_so.la
|
|
||||||
|
|
||||||
|
|
||||||
libloc_eng_so_la_SOURCES = \
|
|
||||||
loc_eng.cpp \
|
|
||||||
loc_eng_agps.cpp \
|
|
||||||
loc_eng_xtra.cpp \
|
|
||||||
loc_eng_ni.cpp \
|
|
||||||
loc_eng_log.cpp \
|
|
||||||
loc_eng_dmn_conn.cpp \
|
|
||||||
loc_eng_dmn_conn_handler.cpp \
|
|
||||||
loc_eng_dmn_conn_thread_helper.c \
|
|
||||||
loc_eng_dmn_conn_glue_msg.c \
|
|
||||||
loc_eng_dmn_conn_glue_pipe.c
|
|
||||||
|
|
||||||
|
|
||||||
if USE_GLIB
|
|
||||||
libloc_eng_so_la_CFLAGS = -DUSE_GLIB $(AM_CFLAGS) @GLIB_CFLAGS@
|
|
||||||
libloc_eng_so_la_LDFLAGS = -lstdc++ -lpthread @GLIB_LIBS@ -shared -version-info 1:0:0
|
|
||||||
libloc_eng_so_la_CPPFLAGS = -DUSE_GLIB $(AM_CFLAGS) $(AM_CPPFLAGS) @GLIB_CFLAGS@
|
|
||||||
else
|
|
||||||
libloc_eng_so_la_CFLAGS = $(AM_CFLAGS)
|
|
||||||
libloc_eng_so_la_LDFLAGS = -lpthread -shared -version-info 1:0:0
|
|
||||||
libloc_eng_so_la_CPPFLAGS = $(AM_CFLAGS) $(AM_CPPFLAGS)
|
|
||||||
endif
|
|
||||||
|
|
||||||
libloc_eng_so_la_LIBADD = -lstdc++ -lcutils -ldl ../../utils/libgps_utils_so.la libloc_adapter_so.la
|
|
||||||
|
|
||||||
|
|
||||||
libgps_default_so_la_SOURCES = \
|
|
||||||
loc.cpp \
|
|
||||||
gps.c
|
|
||||||
|
|
||||||
if USE_GLIB
|
|
||||||
libgps_default_so_la_CFLAGS = -DUSE_GLIB $(AM_CFLAGS) @GLIB_CFLAGS@
|
|
||||||
libgps_default_so_la_LDFLAGS = -lstdc++ -lpthread @GLIB_LIBS@ -shared -version-info 1:0:0
|
|
||||||
libgps_default_so_la_CPPFLAGS = -DUSE_GLIB $(AM_CFLAGS) $(AM_CPPFLAGS) @GLIB_CFLAGS@
|
|
||||||
else
|
|
||||||
libgps_default_so_la_CFLAGS = $(AM_CFLAGS)
|
|
||||||
libgps_default_so_la_LDFLAGS = -lpthread -shared -version-info 1:0:0
|
|
||||||
libgps_default_so_la_CPPFLAGS = $(AM_CFLAGS) $(AM_CPPFLAGS)
|
|
||||||
endif
|
|
||||||
|
|
||||||
libgps_default_so_la_LIBADD = -lstdc++ -lcutils ../../utils/libgps_utils_so.la -ldl libloc_eng_so.la
|
|
||||||
|
|
||||||
library_include_HEADERS = \
|
|
||||||
LocEngAdapter.h \
|
|
||||||
loc.h \
|
|
||||||
loc_eng.h \
|
|
||||||
loc_eng_xtra.h \
|
|
||||||
loc_eng_ni.h \
|
|
||||||
loc_eng_agps.h \
|
|
||||||
loc_eng_msg.h \
|
|
||||||
loc_eng_log.h
|
|
||||||
|
|
||||||
library_includedir = $(pkgincludedir)/libloc_api_50001
|
|
||||||
|
|
||||||
#Create and Install libraries
|
|
||||||
lib_LTLIBRARIES = libloc_adapter_so.la libloc_eng_so.la libgps_default_so.la
|
|
@ -1,7 +1,3 @@
|
|||||||
ifneq ($(BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE),)
|
|
||||||
ifneq ($(BUILD_TINY_ANDROID),true)
|
|
||||||
#Compile this library only for builds with the latest modem image
|
|
||||||
|
|
||||||
LOCAL_PATH := $(call my-dir)
|
LOCAL_PATH := $(call my-dir)
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
include $(CLEAR_VARS)
|
||||||
@ -64,8 +60,4 @@ LOCAL_CLANG := false
|
|||||||
|
|
||||||
LOCAL_MODULE_TAGS := optional
|
LOCAL_MODULE_TAGS := optional
|
||||||
|
|
||||||
LOCAL_PRELINK_MODULE := false
|
|
||||||
|
|
||||||
include $(BUILD_SHARED_LIBRARY)
|
include $(BUILD_SHARED_LIBRARY)
|
||||||
endif # not BUILD_TINY_ANDROID
|
|
||||||
endif # BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE
|
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
AM_CFLAGS = -Wundef \
|
|
||||||
-MD \
|
|
||||||
-Wno-trigraphs \
|
|
||||||
-g -O0 \
|
|
||||||
-fno-inline \
|
|
||||||
-fno-short-enums \
|
|
||||||
-fpic \
|
|
||||||
-I../platform_lib_abstractions
|
|
||||||
|
|
||||||
libgps_utils_so_la_h_sources = log_util.h \
|
|
||||||
msg_q.h \
|
|
||||||
linked_list.h \
|
|
||||||
loc_cfg.h \
|
|
||||||
loc_log.h \
|
|
||||||
../platform_lib_abstractions/platform_lib_includes.h \
|
|
||||||
../platform_lib_abstractions/platform_lib_time.h \
|
|
||||||
../platform_lib_abstractions/platform_lib_macros.h
|
|
||||||
|
|
||||||
libgps_utils_so_la_c_sources = linked_list.c \
|
|
||||||
msg_q.c \
|
|
||||||
loc_cfg.cpp \
|
|
||||||
loc_log.cpp \
|
|
||||||
../platform_lib_abstractions/elapsed_millis_since_boot.cpp
|
|
||||||
|
|
||||||
library_includedir = $(pkgincludedir)/utils
|
|
||||||
|
|
||||||
library_include_HEADERS = $(libgps_utils_so_la_h_sources)
|
|
||||||
|
|
||||||
libgps_utils_so_la_SOURCES = $(libgps_utils_so_la_c_sources)
|
|
||||||
|
|
||||||
if USE_GLIB
|
|
||||||
libgps_utils_so_la_CFLAGS = -DUSE_GLIB $(AM_CFLAGS) @GLIB_CFLAGS@
|
|
||||||
libgps_utils_so_la_LDFLAGS = -lstdc++ -lpthread @GLIB_LIBS@ -shared -version-info 1:0:0
|
|
||||||
libgps_utils_so_la_CPPFLAGS = -DUSE_GLIB $(AM_CFLAGS) $(AM_CPPFLAGS) @GLIB_CFLAGS@
|
|
||||||
else
|
|
||||||
libgps_utils_so_la_CFLAGS = $(AM_CFLAGS)
|
|
||||||
libgps_utils_so_la_LDFLAGS = -lpthread -shared -version-info 1:0:0
|
|
||||||
libgps_utils_so_la_CPPFLAGS = $(AM_CFLAGS) $(AM_CPPFLAGS)
|
|
||||||
endif
|
|
||||||
|
|
||||||
libgps_utils_so_la_LIBADD = -lstdc++ -lcutils
|
|
||||||
|
|
||||||
#Create and Install libraries
|
|
||||||
lib_LTLIBRARIES = libgps_utils_so.la
|
|
Loading…
Reference in New Issue
Block a user