summaryrefslogtreecommitdiff
path: root/Makefile
blob: 301ef4cf9f6d2a7da13b29d27b06aed1e1473096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# 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.
#

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 += -pthread
endif

todo: solib lib

include $(MM_MAKEFILES_DIR)/SharedRules.mk