Home | History | Annotate | Download | only in librilutils
      1 # Copyright 2013 The Android Open Source Project
      2 
      3 LOCAL_PATH:= $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_SRC_FILES:= \
      7     librilutils.c \
      8     record_stream.c
      9 
     10 LOCAL_CFLAGS :=
     11 
     12 LOCAL_MODULE:= librilutils
     13 
     14 include $(BUILD_SHARED_LIBRARY)
     15 
     16 
     17 # Create static library for those that want it
     18 # =========================================
     19 include $(CLEAR_VARS)
     20 
     21 LOCAL_SRC_FILES:= \
     22     librilutils.c \
     23     record_stream.c
     24 
     25 LOCAL_STATIC_LIBRARIES :=
     26 
     27 LOCAL_CFLAGS :=
     28 
     29 LOCAL_MODULE:= librilutils_static
     30 
     31 include $(BUILD_STATIC_LIBRARY)
     32