Error Buddy
Do you have an error message from your application? Then find the answer with Error Buddy. You can search over 40000 source code files and troubleshooting documents using our beta lucene/nutch search interface or if you prefer, search as normal using google. With LXR technology you can drill right down into the line of source code where it came from with full cross-referencing.
If after searching you didn't get your ideal answer, or you are still unclear what the error means, you can choose to post that question to the community forums following the link included in the search results.
[1.6]001 ## -*- text -*- ## 002 # Master Makefile for the GNU readline library. 003 # Copyright (C) 1994-2004 Free Software Foundation, Inc. 004 005 # This program is free software; you can redistribute it and/or modify 006 # it under the terms of the GNU General Public License as published by 007 # the Free Software Foundation; either version 2, or (at your option) 008 # any later version. 009 010 # This program is distributed in the hope that it will be useful, 011 # but WITHOUT ANY WARRANTY; without even the implied warranty of 012 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 013 # GNU General Public License for more details. 014 015 # You should have received a copy of the GNU General Public License 016 # along with this program; if not, write to the Free Software 017 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA. 018 RL_LIBRARY_VERSION = @LIBVERSION@ 019 RL_LIBRARY_NAME = readline 020 021 PACKAGE = @PACKAGE_NAME@ 022 VERSION = @PACKAGE_VERSION@ 023 024 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ 025 PACKAGE_NAME = @PACKAGE_NAME@ 026 PACKAGE_STRING = @PACKAGE_STRING@ 027 PACKAGE_VERSION = @PACKAGE_VERSION@ 028 029 srcdir = @srcdir@ 030 VPATH = .:@srcdir@ 031 top_srcdir = @top_srcdir@ 032 BUILD_DIR = @BUILD_DIR@ 033 034 INSTALL = @INSTALL@ 035 INSTALL_PROGRAM = @INSTALL_PROGRAM@ 036 INSTALL_DATA = @INSTALL_DATA@ 037 038 CC = @CC@ 039 RANLIB = @RANLIB@ 040 AR = @AR@ 041 ARFLAGS = @ARFLAGS@ 042 RM = rm -f 043 CP = cp 044 MV = mv 045 046 @SET_MAKE@ 047 SHELL = @MAKE_SHELL@ 048 049 prefix = @prefix@ 050 exec_prefix = @exec_prefix@ 051 052 bindir = @bindir@ 053 libdir = @libdir@ 054 mandir = @mandir@ 055 includedir = @includedir@ 056 datadir = @datadir@ 057 localedir = $(datadir)/locale 058 059 infodir = @infodir@ 060 061 man3dir = $(mandir)/man3 062 063 # Support an alternate destination root directory for package building 064 DESTDIR = 065 066 # Programs to make tags files. 067 ETAGS = etags -tw 068 CTAGS = ctags -tw 069 070 CFLAGS = @CFLAGS@ 071 LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"' 072 CPPFLAGS = @CPPFLAGS@ 073 074 DEFS = @DEFS@ 075 LOCAL_DEFS = @LOCAL_DEFS@ 076 077 TERMCAP_LIB = @TERMCAP_LIB@ 078 079 # For libraries which include headers from other libraries. 080 INCLUDES = -I. -I$(srcdir) 081 082 XCCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES) 083 CCFLAGS = $(XCCFLAGS) $(LOCAL_CFLAGS) $(CFLAGS) 084 085 # could add -Werror here 086 GCC_LINT_FLAGS = -ansi -Wall -Wshadow -Wpointer-arith -Wcast-qual \ 087 -Wwrite-strings -Wstrict-prototypes \ 088 -Wmissing-prototypes -Wno-implicit -pedantic 089 GCC_LINT_CFLAGS = $(XCCFLAGS) $(GCC_LINT_FLAGS) @CFLAGS@ @LOCAL_CFLAGS@ 090 091 .c.o: 092 ${RM} $@ 093 $(CC) -c $(CCFLAGS) $< 094 095 # The name of the main library target. 096 LIBRARY_NAME = libreadline.a 097 STATIC_LIBS = libreadline.a libhistory.a 098 099 # The C code source files for this library. 100 CSOURCES = $(srcdir)/readline.c $(srcdir)/funmap.c $(srcdir)/keymaps.c \ 101 $(srcdir)/vi_mode.c $(srcdir)/parens.c $(srcdir)/rltty.c \ 102 $(srcdir)/complete.c $(srcdir)/bind.c $(srcdir)/isearch.c \ 103 $(srcdir)/display.c $(srcdir)/signals.c $(srcdir)/emacs_keymap.c \ 104 $(srcdir)/vi_keymap.c $(srcdir)/util.c $(srcdir)/kill.c \ 105 $(srcdir)/undo.c $(srcdir)/macro.c $(srcdir)/input.c \ 106 $(srcdir)/callback.c $(srcdir)/terminal.c $(srcdir)/xmalloc.c \ 107 $(srcdir)/history.c $(srcdir)/histsearch.c $(srcdir)/histexpand.c \ 108 $(srcdir)/histfile.c $(srcdir)/nls.c $(srcdir)/search.c \ 109 $(srcdir)/shell.c $(srcdir)/savestring.c $(srcdir)/tilde.c \ 110 $(srcdir)/text.c $(srcdir)/misc.c $(srcdir)/compat.c \ 111 $(srcdir)/mbutil.c 112 113 # The header files for this library. 114 HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \ 115 posixstat.h posixdir.h posixjmp.h tilde.h rlconf.h rltty.h \ 116 ansi_stdlib.h tcap.h rlstdc.h xmalloc.h rlprivate.h rlshell.h \ 117 rltypedefs.h rlmbutil.h 118 119 HISTOBJ = history.o histexpand.o histfile.o histsearch.o shell.o mbutil.o 120 TILDEOBJ = tilde.o 121 OBJECTS = readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \ 122 rltty.o complete.o bind.o isearch.o display.o signals.o \ 123 util.o kill.o undo.o macro.o input.o callback.o terminal.o \ 124 text.o nls.o misc.o compat.o xmalloc.o $(HISTOBJ) $(TILDEOBJ) 125 126 # The texinfo files which document this library. 127 DOCSOURCE = doc/rlman.texinfo doc/rltech.texinfo doc/rluser.texinfo 128 DOCOBJECT = doc/readline.dvi 129 DOCSUPPORT = doc/Makefile 130 DOCUMENTATION = $(DOCSOURCE) $(DOCOBJECT) $(DOCSUPPORT) 131 132 CREATED_MAKEFILES = Makefile doc/Makefile examples/Makefile shlib/Makefile 133 CREATED_CONFIGURE = config.status config.h config.cache config.log \ 134 stamp-config stamp-h 135 CREATED_TAGS = TAGS tags 136 137 INSTALLED_HEADERS = readline.h chardefs.h keymaps.h history.h tilde.h \ 138 rlstdc.h rlconf.h rltypedefs.h 139 140 ########################################################################## 141 TARGETS = @STATIC_TARGET@ @SHARED_TARGET@ 142 INSTALL_TARGETS = @STATIC_INSTALL_TARGET@ @SHARED_INSTALL_TARGET@ 143 144 all: $(TARGETS) 145 146 everything: all examples 147 148 static: $(STATIC_LIBS) 149 150 libreadline.a: $(OBJECTS) 151 $(RM) $@ 152 $(AR) $(ARFLAGS) $@ $(OBJECTS) 153 -test -n "$(RANLIB)" && $(RANLIB) $@ 154 155 libhistory.a: $(HISTOBJ) xmalloc.o 156 $(RM) $@ 157 $(AR) $(ARFLAGS) $@ $(HISTOBJ) xmalloc.o 158 -test -n "$(RANLIB)" && $(RANLIB) $@ 159 160 # Since tilde.c is shared between readline and bash, make sure we compile 161 # it with the right flags when it's built as part of readline 162 tilde.o: tilde.c 163 rm -f $@ 164 $(CC) $(CCFLAGS) -DREADLINE_LIBRARY -c $(srcdir)/tilde.c 165 166 readline: $(OBJECTS) readline.h rldefs.h chardefs.h ./libreadline.a 167 $(CC) $(CCFLAGS) -o $@ ./examples/rl.c ./libreadline.a ${TERMCAP_LIB} 168 169 lint: force 170 $(MAKE) $(MFLAGS) CCFLAGS='$(GCC_LINT_CFLAGS)' static 171 172 Makefile makefile: config.status $(srcdir)/Makefile.in 173 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status 174 175 Makefiles makefiles: config.status $(srcdir)/Makefile.in 176 @for mf in $(CREATED_MAKEFILES); do \ 177 CONFIG_FILES=$$mf CONFIG_HEADERS= $(SHELL) ./config.status ; \ 178 done 179 180 config.status: configure 181 $(SHELL) ./config.status --recheck 182 183 config.h: stamp-h 184 185 stamp-h: config.status $(srcdir)/config.h.in 186 CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status 187 echo > $@ 188 189 #$(srcdir)/configure: $(srcdir)/configure.in ## Comment-me-out in distribution 190 # cd $(srcdir) && autoconf ## Comment-me-out in distribution 191 192 193 shared: force 194 -test -d shlib || mkdir shlib 195 -( cd shlib ; ${MAKE} ${MFLAGS} all ) 196 197 documentation: force 198 -test -d doc || mkdir doc 199 -( cd doc && $(MAKE) $(MFLAGS) ) 200 201 examples: force 202 -test -d examples || mkdir examples 203 -(cd examples && ${MAKE} ${MFLAGS} all ) 204 205 force: 206 207 install-headers: installdirs ${INSTALLED_HEADERS} 208 for f in ${INSTALLED_HEADERS}; do \ 209 $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(includedir)/readline ; \ 210 done 211 212 uninstall-headers: 213 -test -n "$(includedir)" && cd $(DESTDIR)$(includedir)/readline && \ 214 ${RM} ${INSTALLED_HEADERS} 215 216 maybe-uninstall-headers: uninstall-headers 217 218 install: $(INSTALL_TARGETS) 219 220 install-static: installdirs $(STATIC_LIBS) install-headers install-doc 221 -$(MV) $(DESTDIR)$(libdir)/libreadline.a $(DESTDIR)$(libdir)/libreadline.old 222 $(INSTALL_DATA) libreadline.a $(DESTDIR)$(libdir)/libreadline.a 223 -test -n "$(RANLIB)" && $(RANLIB) $(DESTDIR)$(libdir)/libreadline.a 224 -$(MV) $(DESTDIR)$(libdir)/libhistory.a $(DESTDIR)$(libdir)/libhistory.old 225 $(INSTALL_DATA) libhistory.a $(DESTDIR)$(libdir)/libhistory.a 226 -test -n "$(RANLIB)" && $(RANLIB) $(DESTDIR)$(libdir)/libhistory.a 227 228 installdirs: $(srcdir)/support/mkinstalldirs 229 -$(SHELL) $(srcdir)/support/mkinstalldirs $(DESTDIR)$(includedir) \ 230 $(DESTDIR)$(includedir)/readline $(DESTDIR)$(libdir) \ 231 $(DESTDIR)$(infodir) $(DESTDIR)$(man3dir) 232 233 uninstall: uninstall-headers uninstall-doc 234 -test -n "$(DESTDIR)$(libdir)" && cd $(DESTDIR)$(libdir) && \ 235 ${RM} libreadline.a libreadline.old libhistory.a libhistory.old $(SHARED_LIBS) 236 -( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall ) 237 238 install-shared: installdirs install-headers shared install-doc 239 -( cd shlib ; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} install ) 240 241 uninstall-shared: maybe-uninstall-headers 242 -( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall ) 243 244 install-doc: installdirs 245 -( if test -d doc ; then \ 246 cd doc && \ 247 ${MAKE} ${MFLAGS} infodir=$(infodir) DESTDIR=${DESTDIR} install; \ 248 fi ) 249 250 uninstall-doc: 251 -( if test -d doc ; then \ 252 cd doc && \ 253 ${MAKE} ${MFLAGS} infodir=$(infodir) DESTDIR=${DESTDIR} uninstall; \ 254 fi ) 255 256 TAGS: force 257 $(ETAGS) $(CSOURCES) $(HSOURCES) 258 259 tags: force 260 $(CTAGS) $(CSOURCES) $(HSOURCES) 261 262 clean: force 263 $(RM) $(OBJECTS) $(STATIC_LIBS) 264 $(RM) readline readline.exe 265 -( cd shlib && $(MAKE) $(MFLAGS) $@ ) 266 -( cd doc && $(MAKE) $(MFLAGS) $@ ) 267 -( cd examples && $(MAKE) $(MFLAGS) $@ ) 268 269 mostlyclean: clean 270 -( cd shlib && $(MAKE) $(MFLAGS) $@ ) 271 -( cd doc && $(MAKE) $(MFLAGS) $@ ) 272 -( cd examples && $(MAKE) $(MFLAGS) $@ ) 273 274 distclean maintainer-clean: clean 275 -( cd shlib && $(MAKE) $(MFLAGS) $@ ) 276 -( cd doc && $(MAKE) $(MFLAGS) $@ ) 277 -( cd examples && $(MAKE) $(MFLAGS) $@ ) 278 $(RM) Makefile 279 $(RM) $(CREATED_CONFIGURE) 280 $(RM) $(CREATED_TAGS) 281 282 info dvi: 283 -( cd doc && $(MAKE) $(MFLAGS) $@ ) 284 285 install-info: 286 check: 287 installcheck: 288 289 dist: force 290 @echo Readline distributions are created using $(srcdir)/support/mkdist. 291 @echo Here is a sample of the necessary commands: 292 @echo bash $(srcdir)/support/mkdist -m $(srcdir)/MANIFEST -s $(srcdir) -r $(RL_LIBRARY_NAME) $(RL_LIBRARY_VERSION) 293 @echo tar cf $(RL_LIBRARY_NAME)-${RL_LIBRARY_VERSION}.tar ${RL_LIBRARY_NAME}-$(RL_LIBRARY_VERSION) 294 @echo gzip $(RL_LIBRARY_NAME)-$(RL_LIBRARY_VERSION).tar 295 296 # Tell versions [3.59,3.63) of GNU make not to export all variables. 297 # Otherwise a system limit (for SysV at least) may be exceeded. 298 .NOEXPORT: 299 300 # Dependencies 301 bind.o: ansi_stdlib.h posixstat.h 302 bind.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 303 bind.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h 304 bind.o: history.h 305 callback.o: rlconf.h 306 callback.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 307 callback.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h 308 compat.o: rlstdc.h 309 complete.o: ansi_stdlib.h posixdir.h posixstat.h 310 complete.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 311 complete.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h 312 display.o: ansi_stdlib.h posixstat.h 313 display.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 314 display.o: tcap.h 315 display.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 316 display.o: history.h rlstdc.h 317 funmap.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 318 funmap.o: rlconf.h ansi_stdlib.h rlstdc.h 319 funmap.o: ${BUILD_DIR}/config.h 320 histexpand.o: ansi_stdlib.h 321 histexpand.o: history.h histlib.h rlstdc.h rltypedefs.h 322 histexpand.o: ${BUILD_DIR}/config.h 323 histfile.o: ansi_stdlib.h 324 histfile.o: history.h histlib.h rlstdc.h rltypedefs.h 325 histfile.o: ${BUILD_DIR}/config.h 326 history.o: ansi_stdlib.h 327 history.o: history.h histlib.h rlstdc.h rltypedefs.h 328 history.o: ${BUILD_DIR}/config.h 329 histsearch.o: ansi_stdlib.h 330 histsearch.o: history.h histlib.h rlstdc.h rltypedefs.h 331 histsearch.o: ${BUILD_DIR}/config.h 332 input.o: ansi_stdlib.h 333 input.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 334 input.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h 335 isearch.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 336 isearch.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 337 isearch.o: ansi_stdlib.h history.h rlstdc.h 338 keymaps.o: emacs_keymap.c vi_keymap.c 339 keymaps.o: keymaps.h rltypedefs.h chardefs.h rlconf.h ansi_stdlib.h 340 keymaps.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 341 keymaps.o: ${BUILD_DIR}/config.h rlstdc.h 342 kill.o: ansi_stdlib.h 343 kill.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 344 kill.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 345 kill.o: history.h rlstdc.h 346 macro.o: ansi_stdlib.h 347 macro.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 348 macro.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 349 macro.o: history.h rlstdc.h 350 mbutil.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 351 mbutil.o: readline.h keymaps.h rltypedefs.h chardefs.h rlstdc.h 352 misc.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 353 misc.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 354 misc.o: history.h rlstdc.h ansi_stdlib.h 355 nls.o: ansi_stdlib.h 356 nls.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 357 nls.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 358 nls.o: history.h rlstdc.h 359 parens.o: rlconf.h 360 parens.o: ${BUILD_DIR}/config.h 361 parens.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h 362 readline.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 363 readline.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 364 readline.o: history.h rlstdc.h 365 readline.o: posixstat.h ansi_stdlib.h posixjmp.h 366 rltty.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 367 rltty.o: rltty.h 368 rltty.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h 369 search.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 370 search.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 371 search.o: ansi_stdlib.h history.h rlstdc.h 372 shell.o: ${BUILD_DIR}/config.h 373 shell.o: ansi_stdlib.h 374 signals.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 375 signals.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 376 signals.o: history.h rlstdc.h 377 terminal.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 378 terminal.o: tcap.h 379 terminal.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 380 terminal.o: history.h rlstdc.h 381 text.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 382 text.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 383 text.o: history.h rlstdc.h ansi_stdlib.h 384 tilde.o: ansi_stdlib.h 385 tilde.o: ${BUILD_DIR}/config.h 386 tilde.o: tilde.h 387 undo.o: ansi_stdlib.h 388 undo.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 389 undo.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 390 undo.o: history.h rlstdc.h 391 util.o: posixjmp.h ansi_stdlib.h 392 util.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 393 util.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h 394 vi_mode.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h 395 vi_mode.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h 396 vi_mode.o: history.h ansi_stdlib.h rlstdc.h 397 xmalloc.o: ${BUILD_DIR}/config.h 398 xmalloc.o: ansi_stdlib.h 399 400 bind.o: rlshell.h 401 histfile.o: rlshell.h 402 nls.o: rlshell.h 403 readline.o: rlshell.h 404 shell.o: rlshell.h 405 terminal.o: rlshell.h 406 histexpand.o: rlshell.h 407 408 bind.o: rlprivate.h 409 callback.o: rlprivate.h 410 complete.o: rlprivate.h 411 display.o: rlprivate.h 412 input.o: rlprivate.h 413 isearch.o: rlprivate.h 414 kill.o: rlprivate.h 415 macro.o: rlprivate.h 416 mbutil.o: rlprivate.h 417 misc.o: rlprivate.h 418 nls.o: rlprivate.h 419 parens.o: rlprivate.h 420 readline.o: rlprivate.h 421 rltty.o: rlprivate.h 422 search.o: rlprivate.h 423 signals.o: rlprivate.h 424 terminal.o: rlprivate.h 425 text.o: rlprivate.h 426 undo.o: rlprivate.h 427 util.o: rlprivate.h 428 vi_mode.o: rlprivate.h 429 430 bind.o: xmalloc.h 431 complete.o: xmalloc.h 432 display.o: xmalloc.h 433 funmap.o: xmalloc.h 434 histexpand.o: xmalloc.h 435 histfile.o: xmalloc.h 436 history.o: xmalloc.h 437 input.o: xmalloc.h 438 isearch.o: xmalloc.h 439 keymaps.o: xmalloc.h 440 kill.o: xmalloc.h 441 macro.o: xmalloc.h 442 mbutil.o: xmalloc.h 443 misc.o: xmalloc.h 444 readline.o: xmalloc.h 445 savestring.o: xmalloc.h 446 search.o: xmalloc.h 447 shell.o: xmalloc.h 448 terminal.o: xmalloc.h 449 text.o: xmalloc.h 450 tilde.o: xmalloc.h 451 undo.o: xmalloc.h 452 util.o: xmalloc.h 453 vi_mode.o: xmalloc.h 454 xmalloc.o: xmalloc.h 455 456 complete.o: rlmbutil.h 457 display.o: rlmbutil.h 458 histexpand.o: rlmbutil.h 459 input.o: rlmbutil.h 460 isearch.o: rlmbutil.h 461 mbutil.o: rlmbutil.h 462 misc.o: rlmbutil.h 463 readline.o: rlmbutil.h 464 search.o: rlmbutil.h 465 text.o: rlmbutil.h 466 vi_mode.o: rlmbutil.h 467 468 bind.o: $(srcdir)/bind.c 469 callback.o: $(srcdir)/callback.c 470 compat.o: $(srcdir)/compat.c 471 complete.o: $(srcdir)/complete.c 472 display.o: $(srcdir)/display.c 473 funmap.o: $(srcdir)/funmap.c 474 input.o: $(srcdir)/input.c 475 isearch.o: $(srcdir)/isearch.c 476 keymaps.o: $(srcdir)/keymaps.c $(srcdir)/emacs_keymap.c $(srcdir)/vi_keymap.c 477 kill.o: $(srcdir)/kill.c 478 macro.o: $(srcdir)/macro.c 479 mbutil.o: $(srcdir)/mbutil.c 480 misc.o: $(srcdir)/misc.c 481 nls.o: $(srcdir)/nls.c 482 parens.o: $(srcdir)/parens.c 483 readline.o: $(srcdir)/readline.c 484 rltty.o: $(srcdir)/rltty.c 485 savestring.o: $(srcdir)/savestring.c 486 search.o: $(srcdir)/search.c 487 shell.o: $(srcdir)/shell.c 488 signals.o: $(srcdir)/signals.c 489 terminal.o: $(srcdir)/terminal.c 490 text.o: $(srcdir)/text.c 491 tilde.o: $(srcdir)/tilde.c 492 undo.o: $(srcdir)/undo.c 493 util.o: $(srcdir)/util.c 494 vi_mode.o: $(srcdir)/vi_mode.c 495 xmalloc.o: $(srcdir)/xmalloc.c 496 497 histexpand.o: $(srcdir)/histexpand.c 498 histfile.o: $(srcdir)/histfile.c 499 history.o: $(srcdir)/history.c 500 histsearch.o: $(srcdir)/histsearch.c 501 502 bind.o: bind.c 503 callback.o: callback.c 504 compat.o: compat.c 505 complete.o: complete.c 506 display.o: display.c 507 funmap.o: funmap.c 508 input.o: input.c 509 isearch.o: isearch.c 510 keymaps.o: keymaps.c emacs_keymap.c vi_keymap.c 511 kill.o: kill.c 512 macro.o: macro.c 513 mbutil.o: mbutil.c 514 misc.o: misc.c 515 nls.o: nls.c 516 parens.o: parens.c 517 readline.o: readline.c 518 rltty.o: rltty.c 519 savestring.o: savestring.c 520 search.o: search.c 521 shell.o: shell.c 522 signals.o: signals.c 523 terminal.o: terminal.c 524 text.o: text.c 525 tilde.o: tilde.c 526 undo.o: undo.c 527 util.o: util.c 528 vi_mode.o: vi_mode.c 529 xmalloc.o: xmalloc.c 530 531 histexpand.o: histexpand.c 532 histfile.o: histfile.c 533 history.o: history.c 534 histsearch.o: histsearch.c
Testing
