genode/repos/libports/lib/mk/history.mk
Norman Feske ca971bbfd8 Move repositories to 'repos/' subdirectory
This patch changes the top-level directory layout as a preparatory
step for improving the tools for managing 3rd-party source codes.
The rationale is described in the issue referenced below.

Issue #1082
2014-05-14 16:08:00 +02:00

25 lines
560 B
Makefile

READLINE = readline-6.0
READLINE_DIR = $(REP_DIR)/contrib/$(READLINE)
LIBS += libc
# use our customized 'config.h'
INC_DIR += $(REP_DIR)/include/readline
# add local readline headers to include-search path
INC_DIR += $(READLINE_DIR)
CC_DEF += -DHAVE_CONFIG_H
CC_DEF += -DRL_LIBRARY_VERSION='"6.0"'
# dim build noise for contrib code
CC_WARN = -Wno-unused-but-set-variable
# sources from readline base directory
SRC_C = \
history.c histexpand.c histfile.c histsearch.c shell.c mbutil.c \
xmalloc.c
vpath %.c $(READLINE_DIR)
SHARED_LIB = yes