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