summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThierry STRUDEL <thierry.strudel@stericsson.com>2011-05-27 19:02:17 +0200
committerRobert FEKETE <robert.fekete@stericsson.com>2011-06-07 11:17:01 +0200
commite2aefced64b75a1cbf33040a631e6b18d3dc6d2c (patch)
treefedb2b9e5929578b6b6db0b45efd50278c1284fe /Makefile
parent46a95813e6bc0bd747d7de7270813f55a8af07f5 (diff)
Create also static library for LBP
Upgraded LBP makefile. Added RODOS metadata to be able to publish from SI GIT. ST-Ericsson ID: 325801 ST-Ericsson FOSS-OUT ID: NA Change-Id: I134e2d3b419235371012d26f2d60dbb6b4927e86 Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/24102 Reviewed-by: Thierry STRUDEL <thierry.strudel@stericsson.com> Tested-by: Thierry STRUDEL <thierry.strudel@stericsson.com> Reviewed-by: QATEST Reviewed-by: Magnus SMITH <magnus.xm.smith@stericsson.com> Reviewed-by: Robert FEKETE <robert.fekete@stericsson.com>
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile32
1 files changed, 16 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index 0a4859a..301ef4c 100755
--- a/Makefile
+++ b/Makefile
@@ -1,32 +1,32 @@
-# vim:syntax=make:
-# -*- Mode: Makefile -*-
+#
+# Copyright (C) ST-Ericsson SA 2010. All rights reserved.
+# This code is ST-Ericsson proprietary and confidential.
+# Any use of the code for whatever purpose is subject to
+# specific written permission of ST-Ericsson SA.
+#
-#WARNING COMPONENT_PATH is MANDATORY for Make.config and Make.rules
-#-------------------------------
-# Default Config
-#-------------------------------
-include $(MMROOT)/shared/makefiles/Make.config
-
-################################################################################
-# library
+include $(MM_MAKEFILES_DIR)/SharedConfig.mk
ifeq ($(DEBUG),1)
CPPFLAGS += -DDEBUG
endif
+# shared library
SOLIBNAMES += blt_hw
LIBOBJ_blt_hw = blt_b2r2
INSTALL_SOLIB = blt_hw
+# static library
+LIBNAME = blt_hw
+LIBOBJ = blt_b2r2
+INSTALL_LIB = libblt_hw.a
+
INSTALL_HEADER = blt_api.h
ifneq ($(MMSYSTEM),android)
-FLAGS_blt_hw += -lpthread
+ FLAGS_blt_hw += -pthread
endif
-todo: solib
+todo: solib lib
-#-------------------------------
-# Generic Rules
-#-------------------------------
-include $(MMROOT)/shared/makefiles/Make.rules
+include $(MM_MAKEFILES_DIR)/SharedRules.mk