upgrade to 4.0
This commit is contained in:
parent
9a2f6362a7
commit
0f1a3ae74d
@ -1,31 +1,11 @@
|
||||
# $Id: Makefile,v 1.29 1997/06/07 13:18:30 ache Exp $
|
||||
# $Id: Makefile,v 1.30 1998/04/28 07:16:24 ache Exp $
|
||||
|
||||
SUBDIR = history readline
|
||||
|
||||
SRCDIR= ${.CURDIR}/../../../contrib/libreadline
|
||||
.PATH: ${SRCDIR}
|
||||
|
||||
SUBDIR= doc
|
||||
|
||||
LIB= readline
|
||||
SHLIB_MAJOR= 3
|
||||
SHLIB_MINOR= 1
|
||||
MAN3= readline.3
|
||||
|
||||
RL_LIBRARY_VERSION = 2.2
|
||||
LOCAL_CFLAGS= -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'
|
||||
CFLAGS+= -I${.CURDIR} -I${SRCDIR} -DHAVE_CONFIG_H ${LOCAL_CFLAGS}
|
||||
|
||||
HISTSRC= history.c histexpand.c histfile.c histsearch.c shell.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
|
||||
INSTALLED_HEADERS= readline.h chardefs.h keymaps.h history.h tilde.h \
|
||||
rlstdc.h rlconf.h
|
||||
|
||||
beforeinstall:
|
||||
.for i in ${INSTALLED_HEADERS}
|
||||
@ -33,4 +13,4 @@ beforeinstall:
|
||||
${DESTDIR}/usr/include/readline
|
||||
.endfor
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
.include <bsd.subdir.mk>
|
||||
|
13
gnu/lib/libreadline/Makefile.inc
Normal file
13
gnu/lib/libreadline/Makefile.inc
Normal file
@ -0,0 +1,13 @@
|
||||
# $Id: Makefile,v 1.30 1998/04/28 07:16:24 ache Exp $
|
||||
|
||||
SHLIB_MAJOR= 4
|
||||
SHLIB_MINOR= 0
|
||||
RL_LIBRARY_VERSION= 4.0
|
||||
|
||||
SRCDIR= ${.CURDIR}/../../../../contrib/libreadline
|
||||
.PATH: ${SRCDIR} ${.CURDIR}/..
|
||||
|
||||
LOCAL_CFLAGS= -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'
|
||||
CFLAGS+= -I${.CURDIR}/.. -I${SRCDIR} -DHAVE_CONFIG_H ${LOCAL_CFLAGS}
|
||||
|
||||
HISTSRC= history.c histexpand.c histfile.c histsearch.c shell.c
|
@ -1,5 +0,0 @@
|
||||
# $Id$
|
||||
|
||||
SUBDIR = history readline
|
||||
|
||||
.include <bsd.subdir.mk>
|
10
gnu/lib/libreadline/history/Makefile
Normal file
10
gnu/lib/libreadline/history/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
# $Id: Makefile,v 1.30 1998/04/28 07:16:24 ache Exp $
|
||||
|
||||
SUBDIR= doc
|
||||
|
||||
LIB= history
|
||||
|
||||
SRCS= $(HISTSRC) xmalloc.c
|
||||
|
||||
.include "../Makefile.inc"
|
||||
.include <bsd.lib.mk>
|
@ -1,4 +1,4 @@
|
||||
# $Id$
|
||||
# $Id: Makefile,v 1.3 1997/02/22 15:43:06 peter Exp $
|
||||
|
||||
SRCDIR= ${.CURDIR}/../../../../../contrib/libreadline/doc
|
||||
|
||||
@ -9,6 +9,6 @@ INFOENTRY_history= "* History: (history). The GNU History library."
|
||||
|
||||
SRCS= hist.texinfo
|
||||
|
||||
history.info: hist.texinfo hstech.texinfo hsuser.texinfo
|
||||
history.info: hist.texinfo hstech.texinfo hsuser.texinfo manvers.texinfo
|
||||
|
||||
.include <bsd.info.mk>
|
19
gnu/lib/libreadline/readline/Makefile
Normal file
19
gnu/lib/libreadline/readline/Makefile
Normal file
@ -0,0 +1,19 @@
|
||||
# $Id: Makefile,v 1.30 1998/04/28 07:16:24 ache Exp $
|
||||
|
||||
SUBDIR= doc
|
||||
|
||||
LIB= readline
|
||||
MAN3= readline.3
|
||||
|
||||
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)
|
||||
|
||||
DPADD+= $(LIBTERMCAP)
|
||||
LDADD+= -ltermcap
|
||||
|
||||
.include "../Makefile.inc"
|
||||
.include <bsd.lib.mk>
|
@ -1,4 +1,4 @@
|
||||
# $Id$
|
||||
# $Id: Makefile,v 1.3 1997/02/22 15:43:07 peter Exp $
|
||||
|
||||
SRCDIR= ${.CURDIR}/../../../../../contrib/libreadline/doc
|
||||
|
||||
@ -9,6 +9,6 @@ INFOENTRY_readline= "* Readline: (readline). The GNU Readline library"
|
||||
|
||||
SRCS= rlman.texinfo
|
||||
|
||||
readline.info: rlman.texinfo rltech.texinfo rluser.texinfo
|
||||
readline.info: rlman.texinfo rltech.texinfo rluser.texinfo manvers.texinfo
|
||||
|
||||
.include <bsd.info.mk>
|
Loading…
Reference in New Issue
Block a user