[12991] | 1 | ## -*- text -*- ## |
---|
| 2 | # Master Makefile for the GNU readline library. |
---|
| 3 | # Copyright (C) 1994 Free Software Foundation, Inc. |
---|
| 4 | |
---|
| 5 | # This program is free software; you can redistribute it and/or modify |
---|
| 6 | # it under the terms of the GNU General Public License as published by |
---|
| 7 | # the Free Software Foundation; either version 2, or (at your option) |
---|
| 8 | # any later version. |
---|
| 9 | |
---|
| 10 | # This program is distributed in the hope that it will be useful, |
---|
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | # GNU General Public License for more details. |
---|
| 14 | |
---|
| 15 | # You should have received a copy of the GNU General Public License |
---|
| 16 | # along with this program; if not, write to the Free Software |
---|
[15421] | 17 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA. |
---|
[12991] | 18 | RL_LIBRARY_VERSION = @LIBVERSION@ |
---|
| 19 | RL_LIBRARY_NAME = readline |
---|
| 20 | |
---|
| 21 | srcdir = @srcdir@ |
---|
| 22 | VPATH = .:@srcdir@ |
---|
| 23 | top_srcdir = @top_srcdir@ |
---|
| 24 | BUILD_DIR = @BUILD_DIR@ |
---|
| 25 | |
---|
| 26 | INSTALL = @INSTALL@ |
---|
| 27 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ |
---|
| 28 | INSTALL_DATA = @INSTALL_DATA@ |
---|
| 29 | |
---|
| 30 | CC = @CC@ |
---|
| 31 | RANLIB = @RANLIB@ |
---|
| 32 | AR = @AR@ |
---|
| 33 | ARFLAGS = @ARFLAGS@ |
---|
| 34 | RM = rm -f |
---|
| 35 | CP = cp |
---|
| 36 | MV = mv |
---|
| 37 | |
---|
[17012] | 38 | @SET_MAKE@ |
---|
[12991] | 39 | SHELL = @MAKE_SHELL@ |
---|
| 40 | |
---|
| 41 | prefix = @prefix@ |
---|
| 42 | exec_prefix = @exec_prefix@ |
---|
| 43 | |
---|
| 44 | bindir = @bindir@ |
---|
| 45 | libdir = @libdir@ |
---|
| 46 | mandir = @mandir@ |
---|
| 47 | includedir = @includedir@ |
---|
| 48 | |
---|
| 49 | infodir = @infodir@ |
---|
| 50 | |
---|
| 51 | man3dir = $(mandir)/man3 |
---|
| 52 | |
---|
[17012] | 53 | # Support an alternate destination root directory for package building |
---|
| 54 | DESTDIR = |
---|
| 55 | |
---|
[12991] | 56 | # Programs to make tags files. |
---|
| 57 | ETAGS = etags -tw |
---|
| 58 | CTAGS = ctags -tw |
---|
| 59 | |
---|
| 60 | CFLAGS = @CFLAGS@ |
---|
| 61 | LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"' |
---|
| 62 | CPPFLAGS = @CPPFLAGS@ |
---|
| 63 | |
---|
| 64 | DEFS = @DEFS@ |
---|
| 65 | LOCAL_DEFS = @LOCAL_DEFS@ |
---|
| 66 | |
---|
[15421] | 67 | TERMCAP_LIB = @TERMCAP_LIB@ |
---|
| 68 | |
---|
[12991] | 69 | # For libraries which include headers from other libraries. |
---|
[15436] | 70 | INCLUDES = -I. -I$(srcdir) |
---|
[12991] | 71 | |
---|
[17012] | 72 | XCCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES) |
---|
| 73 | CCFLAGS = $(XCCFLAGS) $(LOCAL_CFLAGS) $(CFLAGS) |
---|
[12991] | 74 | |
---|
[17012] | 75 | # could add -Werror here |
---|
| 76 | GCC_LINT_FLAGS = -ansi -Wall -Wshadow -Wpointer-arith -Wcast-qual \ |
---|
| 77 | -Wwrite-strings -Wstrict-prototypes \ |
---|
| 78 | -Wmissing-prototypes -Wno-implicit -pedantic |
---|
| 79 | GCC_LINT_CFLAGS = $(XCCFLAGS) $(GCC_LINT_FLAGS) @CFLAGS@ @LOCAL_CFLAGS@ |
---|
| 80 | |
---|
[12991] | 81 | .c.o: |
---|
| 82 | ${RM} $@ |
---|
| 83 | $(CC) -c $(CCFLAGS) $< |
---|
| 84 | |
---|
| 85 | # The name of the main library target. |
---|
| 86 | LIBRARY_NAME = libreadline.a |
---|
| 87 | STATIC_LIBS = libreadline.a libhistory.a |
---|
| 88 | |
---|
| 89 | # The C code source files for this library. |
---|
| 90 | CSOURCES = $(srcdir)/readline.c $(srcdir)/funmap.c $(srcdir)/keymaps.c \ |
---|
| 91 | $(srcdir)/vi_mode.c $(srcdir)/parens.c $(srcdir)/rltty.c \ |
---|
| 92 | $(srcdir)/complete.c $(srcdir)/bind.c $(srcdir)/isearch.c \ |
---|
| 93 | $(srcdir)/display.c $(srcdir)/signals.c $(srcdir)/emacs_keymap.c \ |
---|
| 94 | $(srcdir)/vi_keymap.c $(srcdir)/util.c $(srcdir)/kill.c \ |
---|
| 95 | $(srcdir)/undo.c $(srcdir)/macro.c $(srcdir)/input.c \ |
---|
| 96 | $(srcdir)/callback.c $(srcdir)/terminal.c $(srcdir)/xmalloc.c \ |
---|
| 97 | $(srcdir)/history.c $(srcdir)/histsearch.c $(srcdir)/histexpand.c \ |
---|
| 98 | $(srcdir)/histfile.c $(srcdir)/nls.c $(srcdir)/search.c \ |
---|
[17012] | 99 | $(srcdir)/shell.c $(srcdir)/savestring.c $(srcdir)/tilde.c \ |
---|
| 100 | $(srcdir)/compat.c |
---|
[12991] | 101 | |
---|
| 102 | # The header files for this library. |
---|
| 103 | HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \ |
---|
| 104 | posixstat.h posixdir.h posixjmp.h tilde.h rlconf.h rltty.h \ |
---|
[17012] | 105 | ansi_stdlib.h tcap.h rlstdc.h xmalloc.h rlprivate.h rlshell.h \ |
---|
| 106 | rltypedefs.h |
---|
[12991] | 107 | |
---|
| 108 | HISTOBJ = history.o histexpand.o histfile.o histsearch.o shell.o |
---|
| 109 | TILDEOBJ = tilde.o |
---|
| 110 | OBJECTS = readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \ |
---|
| 111 | rltty.o complete.o bind.o isearch.o display.o signals.o \ |
---|
| 112 | util.o kill.o undo.o macro.o input.o callback.o terminal.o \ |
---|
[17012] | 113 | nls.o compat.o xmalloc.o $(HISTOBJ) $(TILDEOBJ) |
---|
[12991] | 114 | |
---|
| 115 | # The texinfo files which document this library. |
---|
| 116 | DOCSOURCE = doc/rlman.texinfo doc/rltech.texinfo doc/rluser.texinfo |
---|
| 117 | DOCOBJECT = doc/readline.dvi |
---|
| 118 | DOCSUPPORT = doc/Makefile |
---|
| 119 | DOCUMENTATION = $(DOCSOURCE) $(DOCOBJECT) $(DOCSUPPORT) |
---|
| 120 | |
---|
| 121 | CREATED_MAKEFILES = Makefile doc/Makefile examples/Makefile shlib/Makefile |
---|
| 122 | CREATED_CONFIGURE = config.status config.h config.cache config.log \ |
---|
| 123 | stamp-config stamp-h |
---|
| 124 | CREATED_TAGS = TAGS tags |
---|
| 125 | |
---|
| 126 | INSTALLED_HEADERS = readline.h chardefs.h keymaps.h history.h tilde.h \ |
---|
[17012] | 127 | rlstdc.h rlconf.h rltypedefs.h |
---|
[12991] | 128 | |
---|
| 129 | ########################################################################## |
---|
| 130 | |
---|
| 131 | all: static |
---|
| 132 | |
---|
[15421] | 133 | everything: static shared examples |
---|
| 134 | |
---|
[12991] | 135 | static: $(STATIC_LIBS) |
---|
| 136 | |
---|
| 137 | libreadline.a: $(OBJECTS) |
---|
| 138 | $(RM) $@ |
---|
| 139 | $(AR) $(ARFLAGS) $@ $(OBJECTS) |
---|
| 140 | -test -n "$(RANLIB)" && $(RANLIB) $@ |
---|
| 141 | |
---|
| 142 | libhistory.a: $(HISTOBJ) xmalloc.o |
---|
| 143 | $(RM) $@ |
---|
| 144 | $(AR) $(ARFLAGS) $@ $(HISTOBJ) xmalloc.o |
---|
| 145 | -test -n "$(RANLIB)" && $(RANLIB) $@ |
---|
| 146 | |
---|
[17012] | 147 | # Since tilde.c is shared between readline and bash, make sure we compile |
---|
| 148 | # it with the right flags when it's built as part of readline |
---|
| 149 | tilde.o: tilde.c |
---|
| 150 | rm -f $@ |
---|
| 151 | $(CC) $(CCFLAGS) -DREADLINE_LIBRARY -c $(srcdir)/tilde.c |
---|
| 152 | |
---|
[15421] | 153 | readline: $(OBJECTS) readline.h rldefs.h chardefs.h ./libreadline.a |
---|
| 154 | $(CC) $(CCFLAGS) -o $@ ./examples/rl.c ./libreadline.a ${TERMCAP_LIB} |
---|
[12991] | 155 | |
---|
[17012] | 156 | lint: force |
---|
| 157 | $(MAKE) $(MFLAGS) CCFLAGS='$(GCC_LINT_CFLAGS)' static |
---|
| 158 | |
---|
[12991] | 159 | Makefile makefile: config.status $(srcdir)/Makefile.in |
---|
| 160 | CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status |
---|
| 161 | |
---|
| 162 | Makefiles makefiles: config.status $(srcdir)/Makefile.in |
---|
| 163 | @for mf in $(CREATED_MAKEFILES); do \ |
---|
| 164 | CONFIG_FILES=$$mf CONFIG_HEADERS= $(SHELL) ./config.status ; \ |
---|
| 165 | done |
---|
| 166 | |
---|
| 167 | config.status: configure |
---|
| 168 | $(SHELL) ./config.status --recheck |
---|
| 169 | |
---|
| 170 | config.h: stamp-h |
---|
| 171 | |
---|
| 172 | stamp-h: config.status $(srcdir)/config.h.in |
---|
| 173 | CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status |
---|
| 174 | echo > $@ |
---|
| 175 | |
---|
[15421] | 176 | #$(srcdir)/configure: $(srcdir)/configure.in ## Comment-me-out in distribution |
---|
| 177 | # cd $(srcdir) && autoconf ## Comment-me-out in distribution |
---|
[12991] | 178 | |
---|
| 179 | |
---|
| 180 | shared: force |
---|
| 181 | -test -d shlib || mkdir shlib |
---|
| 182 | -( cd shlib ; ${MAKE} ${MFLAGS} all ) |
---|
| 183 | |
---|
| 184 | documentation: force |
---|
| 185 | -test -d doc || mkdir doc |
---|
| 186 | -( cd doc && $(MAKE) $(MFLAGS) ) |
---|
| 187 | |
---|
| 188 | examples: force |
---|
| 189 | -test -d examples || mkdir examples |
---|
| 190 | -(cd examples && ${MAKE} ${MFLAGS} all ) |
---|
| 191 | |
---|
| 192 | force: |
---|
| 193 | |
---|
[15421] | 194 | install-headers: installdirs ${INSTALLED_HEADERS} |
---|
[12991] | 195 | for f in ${INSTALLED_HEADERS}; do \ |
---|
[15421] | 196 | $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(includedir)/readline ; \ |
---|
[12991] | 197 | done |
---|
[15421] | 198 | |
---|
| 199 | uninstall-headers: |
---|
[17012] | 200 | -test -n "$(includedir)" && cd $(DESTDIR)$(includedir)/readline && \ |
---|
[15421] | 201 | ${RM} ${INSTALLED_HEADERS} |
---|
| 202 | |
---|
| 203 | maybe-uninstall-headers: uninstall-headers |
---|
| 204 | |
---|
| 205 | install: installdirs $(STATIC_LIBS) install-headers |
---|
[17012] | 206 | -$(MV) $(DESTDIR)$(libdir)/libreadline.a $(DESTDIR)$(libdir)/libreadline.old |
---|
[15421] | 207 | $(INSTALL_DATA) libreadline.a $(DESTDIR)$(libdir)/libreadline.a |
---|
[17012] | 208 | -test -n "$(RANLIB)" && $(RANLIB) $(DESTDIR)$(libdir)/libreadline.a |
---|
| 209 | -$(MV) $(DESTDIR)$(libdir)/libhistory.a $(DESTDIR)$(libdir)/libhistory.old |
---|
[15421] | 210 | $(INSTALL_DATA) libhistory.a $(DESTDIR)$(libdir)/libhistory.a |
---|
[17012] | 211 | -test -n "$(RANLIB)" && $(RANLIB) $(DESTDIR)$(libdir)/libhistory.a |
---|
[12991] | 212 | -( if test -d doc ; then \ |
---|
| 213 | cd doc && \ |
---|
[17012] | 214 | ${MAKE} ${MFLAGS} infodir=$(infodir) DESTDIR=${DESTDIR} $@; \ |
---|
[12991] | 215 | fi ) |
---|
[17012] | 216 | -( cd shlib ; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} install ) |
---|
[12991] | 217 | |
---|
| 218 | installdirs: $(srcdir)/support/mkdirs |
---|
[15421] | 219 | -$(SHELL) $(srcdir)/support/mkdirs $(DESTDIR)$(includedir) \ |
---|
[17012] | 220 | $(DESTDIR)$(includedir)/readline $(DESTDIR)$(libdir) \ |
---|
| 221 | $(DESTDIR)$(infodir) $(DESTDIR)$(man3dir) |
---|
[12991] | 222 | |
---|
[15421] | 223 | uninstall: uninstall-headers |
---|
[17012] | 224 | -test -n "$(DESTDIR)$(libdir)" && cd $(DESTDIR)$(libdir) && \ |
---|
[12991] | 225 | ${RM} libreadline.a libreadline.old libhistory.a libhistory.old $(SHARED_LIBS) |
---|
[17012] | 226 | -( if test -d doc ; then \ |
---|
| 227 | cd doc && \ |
---|
| 228 | ${MAKE} ${MFLAGS} infodir=$(infodir) DESTDIR=${DESTDIR} $@; \ |
---|
| 229 | fi ) |
---|
| 230 | -( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall ) |
---|
[12991] | 231 | |
---|
[15421] | 232 | install-shared: installdirs install-headers shared |
---|
[17012] | 233 | -( cd shlib ; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} install ) |
---|
[12991] | 234 | |
---|
[15421] | 235 | uninstall-shared: maybe-uninstall-headers |
---|
[17012] | 236 | -( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall ) |
---|
[12991] | 237 | |
---|
| 238 | TAGS: force |
---|
| 239 | $(ETAGS) $(CSOURCES) $(HSOURCES) |
---|
| 240 | |
---|
| 241 | tags: force |
---|
| 242 | $(CTAGS) $(CSOURCES) $(HSOURCES) |
---|
| 243 | |
---|
| 244 | clean: force |
---|
| 245 | $(RM) $(OBJECTS) $(STATIC_LIBS) |
---|
[15421] | 246 | $(RM) readline readline.exe |
---|
[12991] | 247 | -( cd shlib && $(MAKE) $(MFLAGS) $@ ) |
---|
| 248 | -( cd doc && $(MAKE) $(MFLAGS) $@ ) |
---|
| 249 | -( cd examples && $(MAKE) $(MFLAGS) $@ ) |
---|
| 250 | |
---|
| 251 | mostlyclean: clean |
---|
| 252 | -( cd shlib && $(MAKE) $(MFLAGS) $@ ) |
---|
| 253 | -( cd doc && $(MAKE) $(MFLAGS) $@ ) |
---|
| 254 | -( cd examples && $(MAKE) $(MFLAGS) $@ ) |
---|
| 255 | |
---|
| 256 | distclean maintainer-clean: clean |
---|
| 257 | -( cd shlib && $(MAKE) $(MFLAGS) $@ ) |
---|
| 258 | -( cd doc && $(MAKE) $(MFLAGS) $@ ) |
---|
| 259 | -( cd examples && $(MAKE) $(MFLAGS) $@ ) |
---|
| 260 | $(RM) Makefile |
---|
| 261 | $(RM) $(CREATED_CONFIGURE) |
---|
| 262 | $(RM) $(CREATED_TAGS) |
---|
| 263 | |
---|
| 264 | info dvi: |
---|
| 265 | -( cd doc && $(MAKE) $(MFLAGS) $@ ) |
---|
| 266 | |
---|
| 267 | install-info: |
---|
| 268 | check: |
---|
| 269 | installcheck: |
---|
| 270 | |
---|
| 271 | dist: force |
---|
| 272 | @echo Readline distributions are created using $(srcdir)/support/mkdist. |
---|
| 273 | @echo Here is a sample of the necessary commands: |
---|
[15421] | 274 | @echo bash $(srcdir)/support/mkdist -m $(srcdir)/MANIFEST -s $(srcdir) -r $(RL_LIBRARY_NAME) $(RL_LIBRARY_VERSION) |
---|
[12991] | 275 | @echo tar cf $(RL_LIBRARY_NAME)-${RL_LIBRARY_VERSION}.tar ${RL_LIBRARY_NAME}-$(RL_LIBRARY_VERSION) |
---|
| 276 | @echo gzip $(RL_LIBRARY_NAME)-$(RL_LIBRARY_VERSION).tar |
---|
| 277 | |
---|
| 278 | # Tell versions [3.59,3.63) of GNU make not to export all variables. |
---|
| 279 | # Otherwise a system limit (for SysV at least) may be exceeded. |
---|
| 280 | .NOEXPORT: |
---|
| 281 | |
---|
| 282 | # Dependencies |
---|
| 283 | bind.o: ansi_stdlib.h posixstat.h |
---|
| 284 | bind.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 285 | bind.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h |
---|
[12991] | 286 | bind.o: history.h |
---|
| 287 | callback.o: rlconf.h |
---|
| 288 | callback.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 289 | callback.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h |
---|
| 290 | compat.o: rlstdc.h |
---|
[12991] | 291 | complete.o: ansi_stdlib.h posixdir.h posixstat.h |
---|
| 292 | complete.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 293 | complete.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h |
---|
[12991] | 294 | display.o: ansi_stdlib.h posixstat.h |
---|
| 295 | display.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
| 296 | display.o: tcap.h |
---|
[17012] | 297 | display.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 298 | display.o: history.h rlstdc.h |
---|
[17012] | 299 | funmap.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 300 | funmap.o: rlconf.h ansi_stdlib.h rlstdc.h |
---|
| 301 | funmap.o: ${BUILD_DIR}/config.h |
---|
| 302 | histexpand.o: ansi_stdlib.h |
---|
[17012] | 303 | histexpand.o: history.h histlib.h rlstdc.h rltypedefs.h |
---|
[12991] | 304 | histexpand.o: ${BUILD_DIR}/config.h |
---|
| 305 | histfile.o: ansi_stdlib.h |
---|
[17012] | 306 | histfile.o: history.h histlib.h rlstdc.h rltypedefs.h |
---|
[12991] | 307 | histfile.o: ${BUILD_DIR}/config.h |
---|
| 308 | history.o: ansi_stdlib.h |
---|
[17012] | 309 | history.o: history.h histlib.h rlstdc.h rltypedefs.h |
---|
[12991] | 310 | history.o: ${BUILD_DIR}/config.h |
---|
| 311 | histsearch.o: ansi_stdlib.h |
---|
[17012] | 312 | histsearch.o: history.h histlib.h rlstdc.h rltypedefs.h |
---|
[12991] | 313 | histsearch.o: ${BUILD_DIR}/config.h |
---|
| 314 | input.o: ansi_stdlib.h |
---|
| 315 | input.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 316 | input.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h |
---|
[12991] | 317 | isearch.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 318 | isearch.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 319 | isearch.o: ansi_stdlib.h history.h rlstdc.h |
---|
| 320 | keymaps.o: emacs_keymap.c vi_keymap.c |
---|
[17012] | 321 | keymaps.o: keymaps.h rltypedefs.h chardefs.h rlconf.h ansi_stdlib.h |
---|
| 322 | keymaps.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 323 | keymaps.o: ${BUILD_DIR}/config.h rlstdc.h |
---|
| 324 | kill.o: ansi_stdlib.h |
---|
| 325 | kill.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 326 | kill.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 327 | kill.o: history.h rlstdc.h |
---|
| 328 | macro.o: ansi_stdlib.h |
---|
| 329 | macro.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 330 | macro.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 331 | macro.o: history.h rlstdc.h |
---|
| 332 | nls.o: ansi_stdlib.h |
---|
| 333 | nls.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 334 | nls.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[15421] | 335 | nls.o: history.h rlstdc.h |
---|
[12991] | 336 | parens.o: rlconf.h |
---|
| 337 | parens.o: ${BUILD_DIR}/config.h |
---|
[17012] | 338 | parens.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h |
---|
| 339 | readline.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 340 | readline.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
| 341 | readline.o: history.h rlstdc.h |
---|
| 342 | readline.o: posixstat.h ansi_stdlib.h posixjmp.h |
---|
| 343 | rltty.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
| 344 | rltty.o: rltty.h |
---|
[17012] | 345 | rltty.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h |
---|
[12991] | 346 | search.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 347 | search.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 348 | search.o: ansi_stdlib.h history.h rlstdc.h |
---|
| 349 | shell.o: ${BUILD_DIR}/config.h |
---|
| 350 | shell.o: ansi_stdlib.h |
---|
| 351 | signals.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 352 | signals.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 353 | signals.o: history.h rlstdc.h |
---|
| 354 | terminal.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
| 355 | terminal.o: tcap.h |
---|
[17012] | 356 | terminal.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 357 | terminal.o: history.h rlstdc.h |
---|
| 358 | tilde.o: ansi_stdlib.h |
---|
| 359 | tilde.o: ${BUILD_DIR}/config.h |
---|
| 360 | tilde.o: tilde.h |
---|
| 361 | undo.o: ansi_stdlib.h |
---|
| 362 | undo.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 363 | undo.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 364 | undo.o: history.h rlstdc.h |
---|
| 365 | util.o: posixjmp.h ansi_stdlib.h |
---|
| 366 | util.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 367 | util.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h |
---|
[12991] | 368 | vi_mode.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h |
---|
[17012] | 369 | vi_mode.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h |
---|
[12991] | 370 | vi_mode.o: history.h ansi_stdlib.h rlstdc.h |
---|
| 371 | xmalloc.o: ${BUILD_DIR}/config.h |
---|
| 372 | xmalloc.o: ansi_stdlib.h |
---|
| 373 | |
---|
[15421] | 374 | bind.o: rlshell.h |
---|
| 375 | histfile.o: rlshell.h |
---|
| 376 | nls.o: rlshell.h |
---|
| 377 | readline.o: rlshell.h |
---|
| 378 | shell.o: rlshell.h |
---|
| 379 | terminal.o: rlshell.h |
---|
| 380 | histexpand.o: rlshell.h |
---|
| 381 | |
---|
| 382 | bind.o: rlprivate.h |
---|
| 383 | callback.o: rlprivate.h |
---|
| 384 | complete.o: rlprivate.h |
---|
| 385 | display.o: rlprivate.h |
---|
| 386 | input.o: rlprivate.h |
---|
| 387 | isearch.o: rlprivate.h |
---|
| 388 | kill.o: rlprivate.h |
---|
| 389 | macro.o: rlprivate.h |
---|
| 390 | nls.o: rlprivate.h |
---|
| 391 | parens.o: rlprivate.h |
---|
| 392 | readline.o: rlprivate.h |
---|
| 393 | rltty.o: rlprivate.h |
---|
| 394 | search.o: rlprivate.h |
---|
| 395 | signals.o: rlprivate.h |
---|
| 396 | terminal.o: rlprivate.h |
---|
| 397 | undo.o: rlprivate.h |
---|
| 398 | util.o: rlprivate.h |
---|
| 399 | vi_mode.o: rlprivate.h |
---|
| 400 | |
---|
| 401 | bind.o: xmalloc.h |
---|
| 402 | complete.o: xmalloc.h |
---|
| 403 | display.o: xmalloc.h |
---|
| 404 | funmap.o: xmalloc.h |
---|
| 405 | histexpand.o: xmalloc.h |
---|
| 406 | histfile.o: xmalloc.h |
---|
| 407 | history.o: xmalloc.h |
---|
| 408 | input.o: xmalloc.h |
---|
| 409 | isearch.o: xmalloc.h |
---|
| 410 | keymaps.o: xmalloc.h |
---|
| 411 | kill.o: xmalloc.h |
---|
| 412 | macro.o: xmalloc.h |
---|
| 413 | readline.o: xmalloc.h |
---|
| 414 | savestring.o: xmalloc.h |
---|
| 415 | search.o: xmalloc.h |
---|
| 416 | shell.o: xmalloc.h |
---|
| 417 | tilde.o: xmalloc.h |
---|
| 418 | tilde.o: xmalloc.h |
---|
| 419 | util.o: xmalloc.h |
---|
| 420 | vi_mode.o: xmalloc.h |
---|
| 421 | |
---|
[12991] | 422 | readline.o: $(srcdir)/readline.c |
---|
| 423 | vi_mode.o: $(srcdir)/vi_mode.c |
---|
| 424 | funmap.o: $(srcdir)/funmap.c |
---|
| 425 | keymaps.o: $(srcdir)/keymaps.c |
---|
| 426 | parens.o: $(srcdir)/parens.c |
---|
| 427 | search.o: $(srcdir)/search.c |
---|
| 428 | rltty.o: $(srcdir)/rltty.c |
---|
[17012] | 429 | compat.o: $(srcdir)/compat.c |
---|
[12991] | 430 | complete.o: $(srcdir)/complete.c |
---|
| 431 | bind.o: $(srcdir)/bind.c |
---|
| 432 | isearch.o: $(srcdir)/isearch.c |
---|
| 433 | display.o: $(srcdir)/display.c |
---|
| 434 | signals.o: $(srcdir)/signals.c |
---|
| 435 | util.o: $(srcdir)/util.c |
---|
| 436 | kill.o: $(srcdir)/kill.c |
---|
| 437 | undo.o: $(srcdir)/undo.c |
---|
| 438 | macro.o: $(srcdir)/macro.c |
---|
| 439 | input.o: $(srcdir)/input.c |
---|
| 440 | callback.o: $(srcdir)/callback.c |
---|
| 441 | terminal.o: $(srcdir)/terminal.c |
---|
| 442 | nls.o: $(srcdir)/nls.c |
---|
| 443 | xmalloc.o: $(srcdir)/xmalloc.c |
---|
| 444 | history.o: $(srcdir)/history.c |
---|
| 445 | histexpand.o: $(srcdir)/histexpand.c |
---|
| 446 | histfile.o: $(srcdir)/histfile.c |
---|
| 447 | histsearch.o: $(srcdir)/histsearch.c |
---|
| 448 | savestring.o: $(srcdir)/savestring.c |
---|
| 449 | shell.o: $(srcdir)/shell.c |
---|
| 450 | tilde.o: $(srcdir)/tilde.c |
---|
| 451 | |
---|
| 452 | readline.o: readline.c |
---|
| 453 | vi_mode.o: vi_mode.c |
---|
| 454 | funmap.o: funmap.c |
---|
| 455 | keymaps.o: keymaps.c |
---|
| 456 | parens.o: parens.c |
---|
| 457 | search.o: search.c |
---|
| 458 | rltty.o: rltty.c |
---|
[17012] | 459 | compat.o: compat.c |
---|
[12991] | 460 | complete.o: complete.c |
---|
| 461 | bind.o: bind.c |
---|
| 462 | isearch.o: isearch.c |
---|
| 463 | display.o: display.c |
---|
| 464 | signals.o: signals.c |
---|
| 465 | util.o: util.c |
---|
| 466 | kill.o: kill.c |
---|
| 467 | undo.o: undo.c |
---|
| 468 | macro.o: macro.c |
---|
| 469 | input.o: input.c |
---|
| 470 | callback.o: callback.c |
---|
| 471 | terminal.o: terminal.c |
---|
| 472 | nls.o: nls.c |
---|
| 473 | xmalloc.o: xmalloc.c |
---|
| 474 | history.o: history.c |
---|
| 475 | histexpand.o: histexpand.c |
---|
| 476 | histfile.o: histfile.c |
---|
| 477 | histsearch.o: histsearch.c |
---|
| 478 | savestring.o: savestring.c |
---|
| 479 | shell.o: shell.c |
---|
| 480 | tilde.o: tilde.c |
---|