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