blob: 7d63eb51d28363035c6be9cc643d31b0313564af (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
LOCAL_PATH := $(call my-dir)
####################
# Common definitions
common_src_files := \
main.cpp
common_module := remote-process
common_module_tags := optional
common_cflags := \
-Wall \
-Werror \
-Wextra \
-Wno-unused-parameter
common_c_includes := \
$(LOCAL_PATH)/../remote-processor/
common_shared_libraries := libremote-processor
common_static_libraries := libaudiocomms_naive_tokenizer
#############################
# Target build
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(common_src_files)
LOCAL_MODULE := $(common_module)
LOCAL_MODULE_TAGS := $(common_module_tags)
LOCAL_CFLAGS := $(common_cflags)
LOCAL_C_INCLUDES += \
$(common_c_includes) \
$(call include-path-for, stlport) \
bionic/
LOCAL_SHARED_LIBRARIES := $(common_shared_libraries) libstlport
LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
include $(BUILD_EXECUTABLE)
##############################
# Host build
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(common_src_files)
LOCAL_MODULE := $(common_module)_host
LOCAL_MODULE_TAGS := $(common_module_tags)
LOCAL_CFLAGS := $(common_cflags)
LOCAL_C_INCLUDES += \
$(common_c_includes)
LOCAL_SHARED_LIBRARIES := $(foreach shared_library, $(common_shared_libraries), \
$(shared_library)_host)
LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
include $(BUILD_HOST_EXECUTABLE)
|