1999-04-16 03:34:55 +02:00
|
|
|
## -*- text -*- ##
|
|
|
|
# Master Makefile for the GNU readline library.
|
|
|
|
# Copyright (C) 1994, 1998 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
1999-04-16 03:34:55 +02:00
|
|
|
RL_LIBRARY_VERSION = @LIBVERSION@
|
|
|
|
RL_LIBRARY_NAME = readline
|
|
|
|
|
|
|
|
srcdir = @srcdir@
|
1999-04-26 20:30:31 +02:00
|
|
|
VPATH = @srcdir@
|
1999-04-16 03:34:55 +02:00
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
BUILD_DIR = @BUILD_DIR@
|
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
|
|
|
|
CC = @CC@
|
|
|
|
RANLIB = @RANLIB@
|
1999-08-03 01:48:02 +02:00
|
|
|
AR = @AR@
|
|
|
|
ARFLAGS = @ARFLAGS@
|
1999-04-16 03:34:55 +02:00
|
|
|
RM = rm -f
|
|
|
|
CP = cp
|
|
|
|
MV = mv
|
|
|
|
|
1999-08-03 01:48:02 +02:00
|
|
|
SHELL = @MAKE_SHELL@
|
|
|
|
|
1999-04-16 03:34:55 +02:00
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
|
|
|
|
|
|
|
bindir = @bindir@
|
|
|
|
libdir = @libdir@
|
|
|
|
mandir = @mandir@
|
|
|
|
includedir = @includedir@
|
|
|
|
|
|
|
|
infodir = @infodir@
|
|
|
|
|
|
|
|
man3dir = $(mandir)/man3
|
|
|
|
|
|
|
|
# Programs to make tags files.
|
|
|
|
ETAGS = etags -tw
|
|
|
|
CTAGS = ctags -tw
|
|
|
|
|
|
|
|
CFLAGS = @CFLAGS@
|
|
|
|
LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'
|
|
|
|
CPPFLAGS = @CPPFLAGS@
|
|
|
|
|
|
|
|
DEFS = @DEFS@
|
|
|
|
LOCAL_DEFS = @LOCAL_DEFS@
|
|
|
|
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
TERMCAP_LIB = @TERMCAP_LIB@
|
|
|
|
|
1999-04-16 03:34:55 +02:00
|
|
|
# For libraries which include headers from other libraries.
|
|
|
|
INCLUDES = -I. -I$(srcdir) -I$(includedir)
|
|
|
|
|
|
|
|
CCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES) $(LOCAL_CFLAGS) $(CFLAGS)
|
|
|
|
|
|
|
|
.c.o:
|
1999-08-03 01:48:02 +02:00
|
|
|
${RM} $@
|
1999-04-16 03:34:55 +02:00
|
|
|
$(CC) -c $(CCFLAGS) $<
|
|
|
|
|
|
|
|
# The name of the main library target.
|
|
|
|
LIBRARY_NAME = libreadline.a
|
|
|
|
STATIC_LIBS = libreadline.a libhistory.a
|
|
|
|
|
|
|
|
# The C code source files for this library.
|
|
|
|
CSOURCES = $(srcdir)/readline.c $(srcdir)/funmap.c $(srcdir)/keymaps.c \
|
|
|
|
$(srcdir)/vi_mode.c $(srcdir)/parens.c $(srcdir)/rltty.c \
|
|
|
|
$(srcdir)/complete.c $(srcdir)/bind.c $(srcdir)/isearch.c \
|
|
|
|
$(srcdir)/display.c $(srcdir)/signals.c $(srcdir)/emacs_keymap.c \
|
|
|
|
$(srcdir)/vi_keymap.c $(srcdir)/util.c $(srcdir)/kill.c \
|
|
|
|
$(srcdir)/undo.c $(srcdir)/macro.c $(srcdir)/input.c \
|
|
|
|
$(srcdir)/callback.c $(srcdir)/terminal.c $(srcdir)/xmalloc.c \
|
|
|
|
$(srcdir)/history.c $(srcdir)/histsearch.c $(srcdir)/histexpand.c \
|
|
|
|
$(srcdir)/histfile.c $(srcdir)/nls.c $(srcdir)/search.c \
|
1999-08-03 01:48:02 +02:00
|
|
|
$(srcdir)/shell.c $(srcdir)/savestring.c $(srcdir)/tilde.c
|
1999-04-16 03:34:55 +02:00
|
|
|
|
|
|
|
# The header files for this library.
|
|
|
|
HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \
|
|
|
|
posixstat.h posixdir.h posixjmp.h tilde.h rlconf.h rltty.h \
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
ansi_stdlib.h tcap.h rlstdc.h xmalloc.h rlprivate.h rlshell.h
|
1999-04-16 03:34:55 +02:00
|
|
|
|
1999-08-03 01:48:02 +02:00
|
|
|
HISTOBJ = history.o histexpand.o histfile.o histsearch.o shell.o
|
1999-04-16 03:34:55 +02:00
|
|
|
TILDEOBJ = tilde.o
|
|
|
|
OBJECTS = readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \
|
|
|
|
rltty.o complete.o bind.o isearch.o display.o signals.o \
|
|
|
|
util.o kill.o undo.o macro.o input.o callback.o terminal.o \
|
|
|
|
nls.o xmalloc.o $(HISTOBJ) $(TILDEOBJ)
|
|
|
|
|
|
|
|
# The texinfo files which document this library.
|
|
|
|
DOCSOURCE = doc/rlman.texinfo doc/rltech.texinfo doc/rluser.texinfo
|
|
|
|
DOCOBJECT = doc/readline.dvi
|
|
|
|
DOCSUPPORT = doc/Makefile
|
|
|
|
DOCUMENTATION = $(DOCSOURCE) $(DOCOBJECT) $(DOCSUPPORT)
|
|
|
|
|
1999-08-03 01:48:02 +02:00
|
|
|
CREATED_MAKEFILES = Makefile doc/Makefile examples/Makefile shlib/Makefile
|
1999-04-16 03:34:55 +02:00
|
|
|
CREATED_CONFIGURE = config.status config.h config.cache config.log \
|
|
|
|
stamp-config stamp-h
|
|
|
|
CREATED_TAGS = TAGS tags
|
|
|
|
|
1999-08-03 01:48:02 +02:00
|
|
|
INSTALLED_HEADERS = readline.h chardefs.h keymaps.h history.h tilde.h \
|
|
|
|
rlstdc.h rlconf.h
|
1999-04-16 03:34:55 +02:00
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
|
|
|
|
all: static
|
|
|
|
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
everything: static shared examples
|
|
|
|
|
1999-04-16 03:34:55 +02:00
|
|
|
static: $(STATIC_LIBS)
|
|
|
|
|
|
|
|
libreadline.a: $(OBJECTS)
|
|
|
|
$(RM) $@
|
1999-08-03 01:48:02 +02:00
|
|
|
$(AR) $(ARFLAGS) $@ $(OBJECTS)
|
1999-04-16 03:34:55 +02:00
|
|
|
-test -n "$(RANLIB)" && $(RANLIB) $@
|
|
|
|
|
|
|
|
libhistory.a: $(HISTOBJ) xmalloc.o
|
|
|
|
$(RM) $@
|
1999-08-03 01:48:02 +02:00
|
|
|
$(AR) $(ARFLAGS) $@ $(HISTOBJ) xmalloc.o
|
1999-04-16 03:34:55 +02:00
|
|
|
-test -n "$(RANLIB)" && $(RANLIB) $@
|
|
|
|
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
readline: $(OBJECTS) readline.h rldefs.h chardefs.h ./libreadline.a
|
|
|
|
$(CC) $(CCFLAGS) -o $@ ./examples/rl.c ./libreadline.a ${TERMCAP_LIB}
|
1999-04-16 03:34:55 +02:00
|
|
|
|
|
|
|
Makefile makefile: config.status $(srcdir)/Makefile.in
|
|
|
|
CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
|
|
|
|
Makefiles makefiles: config.status $(srcdir)/Makefile.in
|
|
|
|
@for mf in $(CREATED_MAKEFILES); do \
|
|
|
|
CONFIG_FILES=$$mf CONFIG_HEADERS= $(SHELL) ./config.status ; \
|
|
|
|
done
|
|
|
|
|
|
|
|
config.status: configure
|
|
|
|
$(SHELL) ./config.status --recheck
|
|
|
|
|
|
|
|
config.h: stamp-h
|
|
|
|
|
|
|
|
stamp-h: config.status $(srcdir)/config.h.in
|
|
|
|
CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
|
|
|
|
echo > $@
|
|
|
|
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
#$(srcdir)/configure: $(srcdir)/configure.in ## Comment-me-out in distribution
|
|
|
|
# cd $(srcdir) && autoconf ## Comment-me-out in distribution
|
1999-04-16 03:34:55 +02:00
|
|
|
|
1999-08-03 01:48:02 +02:00
|
|
|
shared: force
|
|
|
|
-test -d shlib || mkdir shlib
|
|
|
|
-( cd shlib ; ${MAKE} ${MFLAGS} all )
|
|
|
|
|
1999-04-16 03:34:55 +02:00
|
|
|
documentation: force
|
|
|
|
-test -d doc || mkdir doc
|
|
|
|
-( cd doc && $(MAKE) $(MFLAGS) )
|
|
|
|
|
|
|
|
examples: force
|
|
|
|
-test -d examples || mkdir examples
|
|
|
|
-(cd examples && ${MAKE} ${MFLAGS} all )
|
|
|
|
|
|
|
|
force:
|
|
|
|
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
install-headers: installdirs ${INSTALLED_HEADERS}
|
|
|
|
for f in ${INSTALLED_HEADERS}; do \
|
|
|
|
$(INSTALL_DATA) $(srcdir)/$$f $(includedir)/readline ; \
|
|
|
|
done
|
|
|
|
|
|
|
|
uninstall-headers:
|
|
|
|
-test -n "$(includedir)" && cd $(includedir)/readline && \
|
|
|
|
${RM} ${INSTALLED_HEADERS}
|
|
|
|
|
|
|
|
maybe-uninstall-headers: uninstall-headers
|
|
|
|
|
1999-04-26 20:30:31 +02:00
|
|
|
## CYGNUS LOCAL
|
|
|
|
## Don't mess with people's installed readline's.
|
|
|
|
## This tries to install this version of readline over whatever
|
|
|
|
## version is already installed on the system (which could be a
|
|
|
|
## newer version). There is no real reason for us to install
|
|
|
|
## readline along with GDB. GDB links statically against readline,
|
|
|
|
## so it doesn't depend on us installing it on the system.
|
|
|
|
|
|
|
|
install:
|
|
|
|
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
#install: installdirs $(STATIC_LIBS) install-headers
|
|
|
|
# -$(MV) $(libdir)/libreadline.a $(libdir)/libreadline.old
|
1999-04-26 20:30:31 +02:00
|
|
|
# $(INSTALL_DATA) libreadline.a $(libdir)/libreadline.a
|
|
|
|
# -test -n "$(RANLIB)" && $(RANLIB) -t $(libdir)/libreadline.a
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
# -$(MV) $(libdir)/libhistory.a $(libdir)/libhistory.old
|
1999-04-26 20:30:31 +02:00
|
|
|
# $(INSTALL_DATA) libhistory.a $(libdir)/libhistory.a
|
|
|
|
# -test -n "$(RANLIB)" && $(RANLIB) -t $(libdir)/libhistory.a
|
|
|
|
# -( if test -d doc ; then \
|
|
|
|
# cd doc && \
|
|
|
|
# ${MAKE} ${MFLAGS} infodir=$(infodir) $@; \
|
|
|
|
# fi )
|
1999-04-16 03:34:55 +02:00
|
|
|
|
|
|
|
installdirs: $(srcdir)/support/mkdirs
|
|
|
|
-$(SHELL) $(srcdir)/support/mkdirs $(includedir) \
|
|
|
|
$(includedir)/readline $(libdir) $(infodir) $(man3dir)
|
|
|
|
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
uninstall: uninstall-headers
|
1999-04-16 03:34:55 +02:00
|
|
|
-test -n "$(libdir)" && cd $(libdir) && \
|
|
|
|
${RM} libreadline.a libreadline.old libhistory.a libhistory.old $(SHARED_LIBS)
|
|
|
|
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
install-shared: installdirs install-headers shared
|
1999-08-03 01:48:02 +02:00
|
|
|
-( cd shlib ; ${MAKE} ${MFLAGS} install )
|
1999-04-16 03:34:55 +02:00
|
|
|
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
uninstall-shared: maybe-uninstall-headers
|
1999-08-03 01:48:02 +02:00
|
|
|
-( cd shlib; ${MAKE} ${MFLAGS} uninstall )
|
1999-04-16 03:34:55 +02:00
|
|
|
|
|
|
|
TAGS: force
|
|
|
|
$(ETAGS) $(CSOURCES) $(HSOURCES)
|
|
|
|
|
|
|
|
tags: force
|
|
|
|
$(CTAGS) $(CSOURCES) $(HSOURCES)
|
|
|
|
|
|
|
|
clean: force
|
|
|
|
$(RM) $(OBJECTS) $(STATIC_LIBS)
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
$(RM) readline readline.exe
|
1999-08-03 01:48:02 +02:00
|
|
|
-( cd shlib && $(MAKE) $(MFLAGS) $@ )
|
1999-04-16 03:34:55 +02:00
|
|
|
-( cd doc && $(MAKE) $(MFLAGS) $@ )
|
|
|
|
-( cd examples && $(MAKE) $(MFLAGS) $@ )
|
|
|
|
|
|
|
|
mostlyclean: clean
|
1999-08-03 01:48:02 +02:00
|
|
|
-( cd shlib && $(MAKE) $(MFLAGS) $@ )
|
1999-04-16 03:34:55 +02:00
|
|
|
-( cd doc && $(MAKE) $(MFLAGS) $@ )
|
|
|
|
-( cd examples && $(MAKE) $(MFLAGS) $@ )
|
|
|
|
|
|
|
|
distclean maintainer-clean: clean
|
1999-08-03 01:48:02 +02:00
|
|
|
-( cd shlib && $(MAKE) $(MFLAGS) $@ )
|
1999-04-16 03:34:55 +02:00
|
|
|
-( cd doc && $(MAKE) $(MFLAGS) $@ )
|
|
|
|
-( cd examples && $(MAKE) $(MFLAGS) $@ )
|
|
|
|
$(RM) Makefile
|
|
|
|
$(RM) $(CREATED_CONFIGURE)
|
|
|
|
$(RM) $(CREATED_TAGS)
|
|
|
|
|
|
|
|
info dvi:
|
|
|
|
-( cd doc && $(MAKE) $(MFLAGS) $@ )
|
|
|
|
|
|
|
|
install-info:
|
|
|
|
check:
|
|
|
|
installcheck:
|
|
|
|
|
|
|
|
dist: force
|
|
|
|
@echo Readline distributions are created using $(srcdir)/support/mkdist.
|
|
|
|
@echo Here is a sample of the necessary commands:
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
@echo bash $(srcdir)/support/mkdist -m $(srcdir)/MANIFEST -s $(srcdir) -r $(RL_LIBRARY_NAME) $(RL_LIBRARY_VERSION)
|
1999-04-16 03:34:55 +02:00
|
|
|
@echo tar cf $(RL_LIBRARY_NAME)-${RL_LIBRARY_VERSION}.tar ${RL_LIBRARY_NAME}-$(RL_LIBRARY_VERSION)
|
|
|
|
@echo gzip $(RL_LIBRARY_NAME)-$(RL_LIBRARY_VERSION).tar
|
|
|
|
|
|
|
|
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
|
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
|
|
.NOEXPORT:
|
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
bind.o: ansi_stdlib.h posixstat.h
|
|
|
|
bind.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
1999-08-03 01:48:02 +02:00
|
|
|
bind.o: readline.h keymaps.h chardefs.h tilde.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
bind.o: history.h
|
|
|
|
callback.o: rlconf.h
|
|
|
|
callback.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
1999-08-03 01:48:02 +02:00
|
|
|
callback.o: readline.h keymaps.h chardefs.h tilde.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
complete.o: ansi_stdlib.h posixdir.h posixstat.h
|
|
|
|
complete.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
1999-08-03 01:48:02 +02:00
|
|
|
complete.o: readline.h keymaps.h chardefs.h tilde.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
display.o: ansi_stdlib.h posixstat.h
|
|
|
|
display.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
|
|
|
display.o: tcap.h
|
|
|
|
display.o: readline.h keymaps.h chardefs.h tilde.h
|
1999-08-03 01:48:02 +02:00
|
|
|
display.o: history.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
funmap.o: readline.h keymaps.h chardefs.h tilde.h
|
1999-08-03 01:48:02 +02:00
|
|
|
funmap.o: rlconf.h ansi_stdlib.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
funmap.o: ${BUILD_DIR}/config.h
|
|
|
|
histexpand.o: ansi_stdlib.h
|
1999-08-03 01:48:02 +02:00
|
|
|
histexpand.o: history.h histlib.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
histexpand.o: ${BUILD_DIR}/config.h
|
|
|
|
histfile.o: ansi_stdlib.h
|
1999-08-03 01:48:02 +02:00
|
|
|
histfile.o: history.h histlib.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
histfile.o: ${BUILD_DIR}/config.h
|
|
|
|
history.o: ansi_stdlib.h
|
1999-08-03 01:48:02 +02:00
|
|
|
history.o: history.h histlib.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
history.o: ${BUILD_DIR}/config.h
|
|
|
|
histsearch.o: ansi_stdlib.h
|
1999-08-03 01:48:02 +02:00
|
|
|
histsearch.o: history.h histlib.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
histsearch.o: ${BUILD_DIR}/config.h
|
|
|
|
input.o: ansi_stdlib.h
|
|
|
|
input.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
1999-08-03 01:48:02 +02:00
|
|
|
input.o: readline.h keymaps.h chardefs.h tilde.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
isearch.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
|
|
|
isearch.o: readline.h keymaps.h chardefs.h tilde.h
|
1999-08-03 01:48:02 +02:00
|
|
|
isearch.o: ansi_stdlib.h history.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
keymaps.o: emacs_keymap.c vi_keymap.c
|
|
|
|
keymaps.o: keymaps.h chardefs.h rlconf.h ansi_stdlib.h
|
|
|
|
keymaps.o: readline.h keymaps.h chardefs.h tilde.h
|
1999-08-03 01:48:02 +02:00
|
|
|
keymaps.o: ${BUILD_DIR}/config.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
kill.o: ansi_stdlib.h
|
|
|
|
kill.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
|
|
|
kill.o: readline.h keymaps.h chardefs.h tilde.h
|
1999-08-03 01:48:02 +02:00
|
|
|
kill.o: history.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
macro.o: ansi_stdlib.h
|
|
|
|
macro.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
|
|
|
macro.o: readline.h keymaps.h chardefs.h tilde.h
|
1999-08-03 01:48:02 +02:00
|
|
|
macro.o: history.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
nls.o: ansi_stdlib.h
|
|
|
|
nls.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
nls.o: readline.h keymaps.h chardefs.h tilde.h
|
|
|
|
nls.o: history.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
parens.o: rlconf.h
|
|
|
|
parens.o: ${BUILD_DIR}/config.h
|
1999-08-03 01:48:02 +02:00
|
|
|
parens.o: readline.h keymaps.h chardefs.h tilde.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
readline.o: readline.h keymaps.h chardefs.h tilde.h
|
|
|
|
readline.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
1999-08-03 01:48:02 +02:00
|
|
|
readline.o: history.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
readline.o: posixstat.h ansi_stdlib.h posixjmp.h
|
|
|
|
rltty.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
|
|
|
rltty.o: rltty.h
|
1999-08-03 01:48:02 +02:00
|
|
|
rltty.o: readline.h keymaps.h chardefs.h tilde.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
search.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
|
|
|
search.o: readline.h keymaps.h chardefs.h tilde.h
|
1999-08-03 01:48:02 +02:00
|
|
|
search.o: ansi_stdlib.h history.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
shell.o: ${BUILD_DIR}/config.h
|
|
|
|
shell.o: ansi_stdlib.h
|
|
|
|
signals.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
|
|
|
signals.o: readline.h keymaps.h chardefs.h tilde.h
|
1999-08-03 01:48:02 +02:00
|
|
|
signals.o: history.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
terminal.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
|
|
|
terminal.o: tcap.h
|
|
|
|
terminal.o: readline.h keymaps.h chardefs.h tilde.h
|
1999-08-03 01:48:02 +02:00
|
|
|
terminal.o: history.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
tilde.o: ansi_stdlib.h
|
|
|
|
tilde.o: ${BUILD_DIR}/config.h
|
|
|
|
tilde.o: tilde.h
|
|
|
|
undo.o: ansi_stdlib.h
|
|
|
|
undo.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
|
|
|
undo.o: readline.h keymaps.h chardefs.h tilde.h
|
1999-08-03 01:48:02 +02:00
|
|
|
undo.o: history.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
util.o: posixjmp.h ansi_stdlib.h
|
|
|
|
util.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
1999-08-03 01:48:02 +02:00
|
|
|
util.o: readline.h keymaps.h chardefs.h tilde.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
vi_mode.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
|
|
|
|
vi_mode.o: readline.h keymaps.h chardefs.h tilde.h
|
1999-08-03 01:48:02 +02:00
|
|
|
vi_mode.o: history.h ansi_stdlib.h rlstdc.h
|
1999-04-16 03:34:55 +02:00
|
|
|
xmalloc.o: ${BUILD_DIR}/config.h
|
|
|
|
xmalloc.o: ansi_stdlib.h
|
|
|
|
|
readline:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Locally modified files: Makefile.in, configure.in, configure
(regenerated), config.h.in (regenerated), readline.h, rltty.c,
shell.c signals.c.
Locally added files: acconfig.h, config/*, config.h.bot,
cross-build/*, doc/inc-hit.texinfo.
New files: USAGE, rlprivate.h, rlshell.h, xmalloc.h.
examples:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
New files: excallback.c, rlfe.c.
doc:
2000-07-09 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* Import of readline 4.1.
Regenerated inc-hist.texinfo as copy of hsuser.texinfo, for
inclusion in the gdb manual.
New file: rluserman.texinfo
2000-07-09 19:20:00 +02:00
|
|
|
bind.o: rlshell.h
|
|
|
|
histfile.o: rlshell.h
|
|
|
|
nls.o: rlshell.h
|
|
|
|
readline.o: rlshell.h
|
|
|
|
shell.o: rlshell.h
|
|
|
|
terminal.o: rlshell.h
|
|
|
|
histexpand.o: rlshell.h
|
|
|
|
|
|
|
|
bind.o: rlprivate.h
|
|
|
|
callback.o: rlprivate.h
|
|
|
|
complete.o: rlprivate.h
|
|
|
|
display.o: rlprivate.h
|
|
|
|
input.o: rlprivate.h
|
|
|
|
isearch.o: rlprivate.h
|
|
|
|
kill.o: rlprivate.h
|
|
|
|
macro.o: rlprivate.h
|
|
|
|
nls.o: rlprivate.h
|
|
|
|
parens.o: rlprivate.h
|
|
|
|
readline.o: rlprivate.h
|
|
|
|
rltty.o: rlprivate.h
|
|
|
|
search.o: rlprivate.h
|
|
|
|
signals.o: rlprivate.h
|
|
|
|
terminal.o: rlprivate.h
|
|
|
|
undo.o: rlprivate.h
|
|
|
|
util.o: rlprivate.h
|
|
|
|
vi_mode.o: rlprivate.h
|
|
|
|
|
|
|
|
bind.o: xmalloc.h
|
|
|
|
complete.o: xmalloc.h
|
|
|
|
display.o: xmalloc.h
|
|
|
|
funmap.o: xmalloc.h
|
|
|
|
histexpand.o: xmalloc.h
|
|
|
|
histfile.o: xmalloc.h
|
|
|
|
history.o: xmalloc.h
|
|
|
|
input.o: xmalloc.h
|
|
|
|
isearch.o: xmalloc.h
|
|
|
|
keymaps.o: xmalloc.h
|
|
|
|
kill.o: xmalloc.h
|
|
|
|
macro.o: xmalloc.h
|
|
|
|
readline.o: xmalloc.h
|
|
|
|
savestring.o: xmalloc.h
|
|
|
|
search.o: xmalloc.h
|
|
|
|
shell.o: xmalloc.h
|
|
|
|
tilde.o: xmalloc.h
|
|
|
|
tilde.o: xmalloc.h
|
|
|
|
util.o: xmalloc.h
|
|
|
|
vi_mode.o: xmalloc.h
|
|
|
|
|
1999-04-16 03:34:55 +02:00
|
|
|
readline.o: $(srcdir)/readline.c
|
|
|
|
vi_mode.o: $(srcdir)/vi_mode.c
|
|
|
|
funmap.o: $(srcdir)/funmap.c
|
|
|
|
keymaps.o: $(srcdir)/keymaps.c
|
|
|
|
parens.o: $(srcdir)/parens.c
|
|
|
|
search.o: $(srcdir)/search.c
|
|
|
|
rltty.o: $(srcdir)/rltty.c
|
|
|
|
complete.o: $(srcdir)/complete.c
|
|
|
|
bind.o: $(srcdir)/bind.c
|
|
|
|
isearch.o: $(srcdir)/isearch.c
|
|
|
|
display.o: $(srcdir)/display.c
|
|
|
|
signals.o: $(srcdir)/signals.c
|
|
|
|
util.o: $(srcdir)/util.c
|
|
|
|
kill.o: $(srcdir)/kill.c
|
|
|
|
undo.o: $(srcdir)/undo.c
|
|
|
|
macro.o: $(srcdir)/macro.c
|
|
|
|
input.o: $(srcdir)/input.c
|
|
|
|
callback.o: $(srcdir)/callback.c
|
|
|
|
terminal.o: $(srcdir)/terminal.c
|
|
|
|
nls.o: $(srcdir)/nls.c
|
|
|
|
xmalloc.o: $(srcdir)/xmalloc.c
|
|
|
|
history.o: $(srcdir)/history.c
|
|
|
|
histexpand.o: $(srcdir)/histexpand.c
|
|
|
|
histfile.o: $(srcdir)/histfile.c
|
|
|
|
histsearch.o: $(srcdir)/histsearch.c
|
1999-08-03 01:48:02 +02:00
|
|
|
savestring.o: $(srcdir)/savestring.c
|
1999-04-16 03:34:55 +02:00
|
|
|
shell.o: $(srcdir)/shell.c
|
|
|
|
tilde.o: $(srcdir)/tilde.c
|
|
|
|
|
|
|
|
readline.o: readline.c
|
|
|
|
vi_mode.o: vi_mode.c
|
|
|
|
funmap.o: funmap.c
|
|
|
|
keymaps.o: keymaps.c
|
|
|
|
parens.o: parens.c
|
|
|
|
search.o: search.c
|
|
|
|
rltty.o: rltty.c
|
|
|
|
complete.o: complete.c
|
|
|
|
bind.o: bind.c
|
|
|
|
isearch.o: isearch.c
|
|
|
|
display.o: display.c
|
|
|
|
signals.o: signals.c
|
|
|
|
util.o: util.c
|
|
|
|
kill.o: kill.c
|
|
|
|
undo.o: undo.c
|
|
|
|
macro.o: macro.c
|
|
|
|
input.o: input.c
|
|
|
|
callback.o: callback.c
|
|
|
|
terminal.o: terminal.c
|
|
|
|
nls.o: nls.c
|
|
|
|
xmalloc.o: xmalloc.c
|
|
|
|
history.o: history.c
|
|
|
|
histexpand.o: histexpand.c
|
|
|
|
histfile.o: histfile.c
|
|
|
|
histsearch.o: histsearch.c
|
1999-08-03 01:48:02 +02:00
|
|
|
savestring.o: savestring.c
|
1999-04-16 03:34:55 +02:00
|
|
|
shell.o: shell.c
|
|
|
|
tilde.o: tilde.c
|