summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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