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 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:= \ 24 librilutils.c \ 25 record_stream.c 26 27LOCAL_STATIC_LIBRARIES := 28 29LOCAL_CFLAGS := 30 31LOCAL_MODULE:= librilutils_static 32 33LOCAL_LDLIBS += -lpthread 34 35include $(BUILD_STATIC_LIBRARY) 36