1 # This file is part of hayes-ril.
3 # Copyright (C) 2012 Paul Kocialkowski <contact@paulk.fr>
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 LOCAL_PATH:= $(call my-dir)
25 ifeq ($(TARGET_DEVICE),gta04)
26 hayes_ril_device_files := device/gta04/gta04.c
27 LOCAL_C_INCLUDES += $(LOCAL_PATH)/device/gta04/
30 ifeq ($(TARGET_DEVICE),passion)
31 hayes_ril_device_files := device/passion/passion.c
32 LOCAL_C_INCLUDES += $(LOCAL_PATH)/device/passion/
35 ifeq ($(TARGET_DEVICE),dream_sapphire)
36 hayes_ril_device_files := device/dream_sapphire/dream_sapphire.c
37 LOCAL_C_INCLUDES += $(LOCAL_PATH)/device/dream_sapphire/
40 LOCAL_SRC_FILES := $(hayes_ril_files) $(hayes_ril_device_files)
41 LOCAL_SHARED_LIBRARIES += libcutils libutils libril
42 LOCAL_PRELINK_MODULE := false
44 LOCAL_C_INCLUDES += $(KERNEL_HEADERS) $(LOCAL_PATH)
45 LOCAL_LDLIBS += -lpthread
46 LOCAL_CFLAGS += -DRIL_SHLIB -D_GNU_SOURCE
48 LOCAL_MODULE_TAGS := optional
49 LOCAL_MODULE:= libhayes-ril
51 include $(BUILD_SHARED_LIBRARY)