You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
615 B
33 lines
615 B
# Copyright 2006 The Android Open Source Project |
|
|
|
LOCAL_PATH:= $(call my-dir) |
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_SRC_FILES:= \ |
|
rild.c |
|
|
|
LOCAL_SHARED_LIBRARIES := \ |
|
libcutils \ |
|
libdl \ |
|
liblog \ |
|
libril |
|
|
|
# Temporary hack for broken vendor RILs. |
|
LOCAL_WHOLE_STATIC_LIBRARIES := \ |
|
librilutils_static |
|
|
|
LOCAL_CFLAGS := -DRIL_SHLIB |
|
LOCAL_CFLAGS += -Wall -Wextra -Werror |
|
|
|
ifeq ($(SIM_COUNT), 2) |
|
LOCAL_CFLAGS += -DANDROID_MULTI_SIM |
|
LOCAL_CFLAGS += -DANDROID_SIM_COUNT_2 |
|
endif |
|
|
|
LOCAL_MODULE_RELATIVE_PATH := hw |
|
LOCAL_PROPRIETARY_MODULE := true |
|
LOCAL_MODULE:= rild |
|
LOCAL_INIT_RC := rild.rc |
|
|
|
include $(BUILD_EXECUTABLE) |
|
|
|
|