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)
30 ifeq ($(TARGET_DEVICE),gta04)
31 hayes_ril_device_files := device/gta04/gta04.c
32 LOCAL_C_INCLUDES += $(LOCAL_PATH)/device/gta04/
33 elsif ($(TARGET_DEVICE),passion)
34 hayes_ril_device_files := device/passion/passion.c
35 LOCAL_C_INCLUDES += $(LOCAL_PATH)/device/passion/
36 elsif ($(TARGET_DEVICE),dream_sapphire)
37 hayes_ril_device_files := device/dream_sapphire/dream_sapphire.c
38 LOCAL_C_INCLUDES += $(LOCAL_PATH)/device/dream_sapphire/
40 hayes_ril_device_files := device/dummy/dummy.c
43 LOCAL_SRC_FILES := $(hayes_ril_files) $(hayes_ril_device_files)
44 LOCAL_SHARED_LIBRARIES += libcutils libutils libril
45 LOCAL_PRELINK_MODULE := false
47 LOCAL_C_INCLUDES += $(KERNEL_HEADERS) $(LOCAL_PATH)
48 LOCAL_LDLIBS += -lpthread
49 LOCAL_CFLAGS += -DRIL_SHLIB -D_GNU_SOURCE
51 LOCAL_MODULE_TAGS := optional
52 LOCAL_MODULE:= libhayes-ril
54 include $(BUILD_SHARED_LIBRARY)