24f481e12f
since the source name is not the same as the texinfo name so we have to use SRCS=. This means we can't build two info sets in the same directory so I've split it.
35 lines
862 B
Makefile
35 lines
862 B
Makefile
# $Id: Makefile,v 1.25 1997/01/12 05:01:29 peter Exp $
|
|
|
|
SRCDIR= ${.CURDIR}/../../../contrib/libreadline
|
|
.PATH: ${SRCDIR}
|
|
|
|
SUBDIR= doc
|
|
|
|
LIB= readline
|
|
SHLIB_MAJOR= 3
|
|
SHLIB_MINOR= 0
|
|
MAN3= readline.3
|
|
|
|
CFLAGS+= -I${.CURDIR} -I${SRCDIR} -DHAVE_CONFIG_H
|
|
|
|
HISTSRC= history.c histexpand.c histfile.c histsearch.c
|
|
TILDESRC= tilde.c
|
|
SRCS= readline.c vi_mode.c funmap.c keymaps.c parens.c search.c \
|
|
rltty.c complete.c bind.c isearch.c display.c signals.c \
|
|
util.c kill.c undo.c macro.c input.c callback.c terminal.c \
|
|
nls.c xmalloc.c \
|
|
$(HISTSRC) $(TILDESRC)
|
|
|
|
INSTALLED_HEADERS= readline.h chardefs.h keymaps.h history.h tilde.h
|
|
|
|
DPADD+= $(LIBTERMCAP)
|
|
LDADD+= -ltermcap
|
|
|
|
beforeinstall:
|
|
.for i in ${INSTALLED_HEADERS}
|
|
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${SRCDIR}/$i \
|
|
${DESTDIR}/usr/include/readline
|
|
.endfor
|
|
|
|
.include <bsd.lib.mk>
|