blob: 0a4859a56b68f45e241186a858e587abeaace6d4 (
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
|
# vim:syntax=make:
# -*- Mode: Makefile -*-
#WARNING COMPONENT_PATH is MANDATORY for Make.config and Make.rules
#-------------------------------
# Default Config
#-------------------------------
include $(MMROOT)/shared/makefiles/Make.config
################################################################################
# library
ifeq ($(DEBUG),1)
CPPFLAGS += -DDEBUG
endif
SOLIBNAMES += blt_hw
LIBOBJ_blt_hw = blt_b2r2
INSTALL_SOLIB = blt_hw
INSTALL_HEADER = blt_api.h
ifneq ($(MMSYSTEM),android)
FLAGS_blt_hw += -lpthread
endif
todo: solib
#-------------------------------
# Generic Rules
#-------------------------------
include $(MMROOT)/shared/makefiles/Make.rules
|