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 libdl 14 15 LOCAL_CFLAGS := -DRIL_SHLIB 16 17 LOCAL_MODULE:= rild 18 LOCAL_MODULE_TAGS := optional 19 20 include $(BUILD_EXECUTABLE) 21 22 # For radiooptions binary 23 # ======================= 24 include $(CLEAR_VARS) 25 26 LOCAL_SRC_FILES:= \ 27 radiooptions.c 28 29 LOCAL_SHARED_LIBRARIES := \ 30 libcutils \ 31 32 LOCAL_CFLAGS := \ 33 34 LOCAL_MODULE:= radiooptions 35 LOCAL_MODULE_TAGS := debug 36 37 include $(BUILD_EXECUTABLE) 38