13 lines
243 B
Makefile
13 lines
243 B
Makefile
|
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)
|