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