The Android Open Source Project | 00f06fc | 2009-03-03 19:32:15 -0800 | [diff] [blame] | 1 | # Copyright 2006 The Android Open Source Project |
| 2 | |
| 3 | LOCAL_PATH:= $(call my-dir) |
| 4 | include $(CLEAR_VARS) |
| 5 | |
| 6 | LOCAL_SRC_FILES:= \ |
| 7 | rild.c |
| 8 | |
| 9 | |
| 10 | LOCAL_SHARED_LIBRARIES := \ |
| 11 | libcutils \ |
| 12 | libril |
| 13 | |
| 14 | LOCAL_CFLAGS := -DRIL_SHLIB |
| 15 | |
| 16 | LOCAL_MODULE:= rild |
| 17 | |
| 18 | include $(BUILD_EXECUTABLE) |
| 19 | |
| 20 | # For radiooptions binary |
| 21 | # ======================= |
| 22 | include $(CLEAR_VARS) |
| 23 | |
| 24 | LOCAL_SRC_FILES:= \ |
| 25 | radiooptions.c |
| 26 | |
| 27 | LOCAL_SHARED_LIBRARIES := \ |
| 28 | libcutils \ |
| 29 | |
| 30 | LOCAL_CFLAGS := \ |
| 31 | |
| 32 | LOCAL_MODULE:= radiooptions |
Mike Lockwood | 207cbd4 | 2009-03-27 17:32:57 -0700 | [diff] [blame] | 33 | LOCAL_MODULE_TAGS := debug |
The Android Open Source Project | 00f06fc | 2009-03-03 19:32:15 -0800 | [diff] [blame] | 34 | |
| 35 | include $(BUILD_EXECUTABLE) |