Home | History | Annotate | Download | only in reference-cdma-sms
      1 # Copyright 2008 The Android Open Source Project
      2 
      3 LOCAL_PATH:= $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_SRC_FILES:= \
      7     reference-cdma-sms.c
      8 
      9 LOCAL_SHARED_LIBRARIES := \
     10     libcutils libutils libril
     11 
     12 # for asprinf
     13 LOCAL_CFLAGS := -D_GNU_SOURCE
     14 
     15 LOCAL_C_INCLUDES := $(KERNEL_HEADERS)
     16 
     17 LOCAL_SHARED_LIBRARIES += \
     18   libcutils libutils
     19 LOCAL_LDLIBS += -lpthread
     20 LOCAL_MODULE:= libreference-cdma-sms
     21 include $(BUILD_SHARED_LIBRARY)
     22