blob: b32a5f1ff94234b07a96e6c16412e7f04c1d7b7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
# Static library
# ========================================================
include $(CLEAR_VARS)
LOCAL_MODULE:= liblinenoise
LOCAL_SRC_FILES := linenoise.c
include $(BUILD_STATIC_LIBRARY)
|