1# Copyright 2006 The Android Open Source Project
2
3LOCAL_PATH:= $(call my-dir)
4include $(CLEAR_VARS)
5
6LOCAL_SRC_FILES:= \
7	rild.c
8
9
10LOCAL_SHARED_LIBRARIES := \
11	libcutils \
12	libril \
13	libdl
14
15LOCAL_CFLAGS := -DRIL_SHLIB
16
17LOCAL_MODULE:= rild
18LOCAL_MODULE_TAGS := optional
19
20include $(BUILD_EXECUTABLE)
21
22# For radiooptions binary
23# =======================
24include $(CLEAR_VARS)
25
26LOCAL_SRC_FILES:= \
27	radiooptions.c
28
29LOCAL_SHARED_LIBRARIES := \
30	libcutils \
31
32LOCAL_CFLAGS := \
33
34LOCAL_MODULE:= radiooptions
35LOCAL_MODULE_TAGS := debug
36
37include $(BUILD_EXECUTABLE)
38