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