mirror of http://git.sylixos.com/repo/readline.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
4.0 KiB
107 lines
4.0 KiB
#*********************************************************************************************************
|
|
#
|
|
# 中国软件开源组织
|
|
#
|
|
# 嵌入式实时操作系统
|
|
#
|
|
# SylixOS(TM) LW : long wing
|
|
#
|
|
# Copyright All Rights Reserved
|
|
#
|
|
#--------------文件信息--------------------------------------------------------------------------------
|
|
#
|
|
# 文 件 名: libreadline.mk
|
|
#
|
|
# 创 建 人: RealEvo-IDE
|
|
#
|
|
# 文件创建日期: 2016 年 10 月 08 日
|
|
#
|
|
# 描 述: 本文件由 RealEvo-IDE 生成,用于配置 Makefile 功能,请勿手动修改
|
|
#*********************************************************************************************************
|
|
|
|
#*********************************************************************************************************
|
|
# Clear setting
|
|
#*********************************************************************************************************
|
|
include $(CLEAR_VARS_MK)
|
|
|
|
#*********************************************************************************************************
|
|
# Target
|
|
#*********************************************************************************************************
|
|
LOCAL_TARGET_NAME := libreadline.so
|
|
|
|
#*********************************************************************************************************
|
|
# Source list
|
|
#*********************************************************************************************************
|
|
LOCAL_SRCS := \
|
|
readline/bind.c \
|
|
readline/callback.c \
|
|
readline/colors.c \
|
|
readline/compat.c \
|
|
readline/complete.c \
|
|
readline/display.c \
|
|
readline/funmap.c \
|
|
readline/histexpand.c \
|
|
readline/histfile.c \
|
|
readline/history.c \
|
|
readline/histsearch.c \
|
|
readline/input.c \
|
|
readline/isearch.c \
|
|
readline/keymaps.c \
|
|
readline/kill.c \
|
|
readline/macro.c \
|
|
readline/mbutil.c \
|
|
readline/misc.c \
|
|
readline/nls.c \
|
|
readline/parens.c \
|
|
readline/parse-colors.c \
|
|
readline/readline.c \
|
|
readline/rltty.c \
|
|
readline/savestring.c \
|
|
readline/search.c \
|
|
readline/shell.c \
|
|
readline/signals.c \
|
|
readline/terminal.c \
|
|
readline/text.c \
|
|
readline/tilde.c \
|
|
readline/undo.c \
|
|
readline/util.c \
|
|
readline/vi_mode.c \
|
|
readline/xfree.c \
|
|
readline/xmalloc.c
|
|
|
|
#*********************************************************************************************************
|
|
# Header file search path (eg. LOCAL_INC_PATH := -I"Your hearder files search path")
|
|
#*********************************************************************************************************
|
|
LOCAL_INC_PATH :=
|
|
LOCAL_INC_PATH += -I"."
|
|
LOCAL_INC_PATH += -I"./readline"
|
|
|
|
#*********************************************************************************************************
|
|
# Pre-defined macro (eg. -DYOUR_MARCO=1)
|
|
#*********************************************************************************************************
|
|
LOCAL_DSYMBOL :=
|
|
LOCAL_DSYMBOL += -DHAVE_CONFIG_H
|
|
LOCAL_DSYMBOL += -D_POSIX_VERSION=2008
|
|
|
|
#*********************************************************************************************************
|
|
# Depend library (eg. LOCAL_DEPEND_LIB := -la LOCAL_DEPEND_LIB_PATH := -L"Your library search path")
|
|
#*********************************************************************************************************
|
|
LOCAL_DEPEND_LIB := -lcextern
|
|
LOCAL_DEPEND_LIB_PATH := -L"$(SYLIXOS_BASE_PATH)/libcextern/$(OUTDIR)"
|
|
|
|
#*********************************************************************************************************
|
|
# C++ config
|
|
#*********************************************************************************************************
|
|
LOCAL_USE_CXX := no
|
|
LOCAL_USE_CXX_EXCEPT := no
|
|
|
|
#*********************************************************************************************************
|
|
# Code coverage config
|
|
#*********************************************************************************************************
|
|
LOCAL_USE_GCOV := no
|
|
|
|
include $(LIBRARY_MK)
|
|
|
|
#*********************************************************************************************************
|
|
# End
|
|
#*********************************************************************************************************
|
|
|