blob: a50e37437301cff9eb2bf590a8f883c43305232b [file] [log] [blame]
Wink Saville8a9e0212013-04-09 12:11:38 -07001# Copyright 2013 The Android Open Source Project
2
3LOCAL_PATH:= $(call my-dir)
4include $(CLEAR_VARS)
5
6LOCAL_SRC_FILES:= \
Dima Zavin622bf2b2013-05-22 11:29:34 -07007 librilutils.c \
8 record_stream.c
Wink Saville8a9e0212013-04-09 12:11:38 -07009
10LOCAL_CFLAGS :=
11
12LOCAL_MODULE:= librilutils
13
14LOCAL_LDLIBS += -lpthread
15
16include $(BUILD_SHARED_LIBRARY)
17
18
19# Create static library for those that want it
20# =========================================
21include $(CLEAR_VARS)
22
23LOCAL_SRC_FILES:= \
Dima Zavin622bf2b2013-05-22 11:29:34 -070024 librilutils.c \
25 record_stream.c
Wink Saville8a9e0212013-04-09 12:11:38 -070026
27LOCAL_STATIC_LIBRARIES :=
28
29LOCAL_CFLAGS :=
30
31LOCAL_MODULE:= librilutils_static
32
33LOCAL_LDLIBS += -lpthread
34
35include $(BUILD_STATIC_LIBRARY)