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