0916d33e065c4bd4a65007705aa8b210d9f25562
[deliverable/binutils-gdb.git] / readline / Makefile.in
1 ## -*- text -*- ##
2 # Master Makefile for the GNU readline library.
3 # Copyright (C) 1994-2009 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 3 of the License, or
8 # (at your option) 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, see <http://www.gnu.org/licenses/>.
17
18 RL_LIBRARY_VERSION = @LIBVERSION@
19 RL_LIBRARY_NAME = readline
20
21 PACKAGE = @PACKAGE_NAME@
22 VERSION = @PACKAGE_VERSION@
23
24 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
25 PACKAGE_NAME = @PACKAGE_NAME@
26 PACKAGE_STRING = @PACKAGE_STRING@
27 PACKAGE_VERSION = @PACKAGE_VERSION@
28
29 PACKAGE_TARNAME = @PACKAGE_TARNAME@
30
31 srcdir = @srcdir@
32 VPATH = @srcdir@
33 top_srcdir = @top_srcdir@
34 BUILD_DIR = @BUILD_DIR@
35
36 INSTALL = @INSTALL@
37 INSTALL_PROGRAM = @INSTALL_PROGRAM@
38 INSTALL_DATA = @INSTALL_DATA@
39
40 CC = @CC@
41 RANLIB = @RANLIB@
42 AR = @AR@
43 ARFLAGS = @ARFLAGS@
44 RM = rm -f
45 CP = cp
46 MV = mv
47
48 @SET_MAKE@
49 SHELL = @MAKE_SHELL@
50
51 prefix = @prefix@
52 exec_prefix = @exec_prefix@
53
54 datarootdir = @datarootdir@
55
56 bindir = @bindir@
57 libdir = @libdir@
58 mandir = @mandir@
59 includedir = @includedir@
60 datadir = @datadir@
61 localedir = @localedir@
62
63 infodir = @infodir@
64
65 docdir = @docdir@
66
67 man3dir = $(mandir)/man3
68
69 # Support an alternate destination root directory for package building
70 DESTDIR =
71
72 # Programs to make tags files.
73 ETAGS = etags
74 CTAGS = ctags -tw
75
76 CFLAGS = @CFLAGS@
77 LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'
78 CPPFLAGS = @CPPFLAGS@
79
80 DEFS = @DEFS@ @CROSS_COMPILE@
81 LOCAL_DEFS = @LOCAL_DEFS@
82
83 TERMCAP_LIB = @TERMCAP_LIB@
84
85 # For libraries which include headers from other libraries.
86 INCLUDES = -I. -I$(srcdir)
87
88 XCCFLAGS = $(DEFS) $(LOCAL_DEFS) $(INCLUDES) $(CPPFLAGS)
89 CCFLAGS = $(XCCFLAGS) $(LOCAL_CFLAGS) $(CFLAGS)
90
91 # could add -Werror here
92 GCC_LINT_FLAGS = -ansi -Wall -Wshadow -Wpointer-arith -Wcast-qual \
93 -Wwrite-strings -Wstrict-prototypes \
94 -Wmissing-prototypes -Wno-implicit -pedantic
95 GCC_LINT_CFLAGS = $(XCCFLAGS) $(GCC_LINT_FLAGS) @CFLAGS@ @LOCAL_CFLAGS@
96
97 .c.o:
98 ${RM} $@
99 $(CC) -c $(CCFLAGS) $<
100
101 # The name of the main library target.
102 LIBRARY_NAME = libreadline.a
103 STATIC_LIBS = libreadline.a libhistory.a
104
105 # The C code source files for this library.
106 CSOURCES = $(srcdir)/readline.c $(srcdir)/funmap.c $(srcdir)/keymaps.c \
107 $(srcdir)/vi_mode.c $(srcdir)/parens.c $(srcdir)/rltty.c \
108 $(srcdir)/complete.c $(srcdir)/bind.c $(srcdir)/isearch.c \
109 $(srcdir)/display.c $(srcdir)/signals.c $(srcdir)/emacs_keymap.c \
110 $(srcdir)/vi_keymap.c $(srcdir)/util.c $(srcdir)/kill.c \
111 $(srcdir)/undo.c $(srcdir)/macro.c $(srcdir)/input.c \
112 $(srcdir)/callback.c $(srcdir)/terminal.c $(srcdir)/xmalloc.c $(srcdir)/xfree.c \
113 $(srcdir)/history.c $(srcdir)/histsearch.c $(srcdir)/histexpand.c \
114 $(srcdir)/histfile.c $(srcdir)/nls.c $(srcdir)/search.c \
115 $(srcdir)/shell.c $(srcdir)/savestring.c $(srcdir)/tilde.c \
116 $(srcdir)/text.c $(srcdir)/misc.c $(srcdir)/compat.c \
117 $(srcdir)/mbutil.c
118
119 # The header files for this library.
120 HSOURCES = $(srcdir)/readline.h $(srcdir)/rldefs.h $(srcdir)/chardefs.h \
121 $(srcdir)/keymaps.h $(srcdir)/history.h $(srcdir)/histlib.h \
122 $(srcdir)/posixstat.h $(srcdir)/posixdir.h $(srcdir)/posixjmp.h \
123 $(srcdir)/tilde.h $(srcdir)/rlconf.h $(srcdir)/rltty.h \
124 $(srcdir)/ansi_stdlib.h $(srcdir)/tcap.h $(srcdir)/rlstdc.h \
125 $(srcdir)/xmalloc.h $(srcdir)/rlprivate.h $(srcdir)/rlshell.h \
126 $(srcdir)/rltypedefs.h $(srcdir)/rlmbutil.h \
127 $(srcdir)/colors.h $(srcdir)/parse-colors.h
128
129 HISTOBJ = history.o histexpand.o histfile.o histsearch.o shell.o mbutil.o
130 TILDEOBJ = tilde.o
131 COLORSOBJ = colors.o parse-colors.o
132 OBJECTS = readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \
133 rltty.o complete.o bind.o isearch.o display.o signals.o \
134 util.o kill.o undo.o macro.o input.o callback.o terminal.o \
135 text.o nls.o misc.o $(HISTOBJ) $(TILDEOBJ) $(COLORSOBJ) \
136 xmalloc.o xfree.o compat.o
137
138 # The texinfo files which document this library.
139 DOCSOURCE = doc/rlman.texinfo doc/rltech.texinfo doc/rluser.texinfo
140 DOCOBJECT = doc/readline.dvi
141 DOCSUPPORT = doc/Makefile
142 DOCUMENTATION = $(DOCSOURCE) $(DOCOBJECT) $(DOCSUPPORT)
143
144 CREATED_MAKEFILES = Makefile doc/Makefile examples/Makefile shlib/Makefile
145 CREATED_CONFIGURE = config.status config.h config.cache config.log \
146 stamp-config stamp-h readline.pc
147 CREATED_TAGS = TAGS tags
148
149 INSTALLED_HEADERS = readline.h chardefs.h keymaps.h history.h tilde.h \
150 rlstdc.h rlconf.h rltypedefs.h
151
152 OTHER_DOCS = $(srcdir)/CHANGES $(srcdir)/INSTALL $(srcdir)/README
153 OTHER_INSTALLED_DOCS = CHANGES INSTALL README
154
155 ##########################################################################
156 TARGETS = @STATIC_TARGET@ @SHARED_TARGET@
157 INSTALL_TARGETS = @STATIC_INSTALL_TARGET@ @SHARED_INSTALL_TARGET@
158
159 all: $(TARGETS)
160
161 everything: all examples
162
163 static: $(STATIC_LIBS)
164
165 libreadline.a: $(OBJECTS)
166 $(RM) $@
167 $(AR) $(ARFLAGS) $@ $(OBJECTS)
168 -test -n "$(RANLIB)" && $(RANLIB) $@
169
170 libhistory.a: $(HISTOBJ) xmalloc.o xfree.o
171 $(RM) $@
172 $(AR) $(ARFLAGS) $@ $(HISTOBJ) xmalloc.o xfree.o
173 -test -n "$(RANLIB)" && $(RANLIB) $@
174
175 # Since tilde.c is shared between readline and bash, make sure we compile
176 # it with the right flags when it's built as part of readline
177 tilde.o: tilde.c
178 rm -f $@
179 $(CC) $(CCFLAGS) -DREADLINE_LIBRARY -c $(srcdir)/tilde.c
180
181 readline: $(OBJECTS) readline.h rldefs.h chardefs.h ./libreadline.a
182 $(CC) $(CCFLAGS) -DREADLINE_LIBRARY -o $@ $(top_srcdir)/examples/rl.c ./libreadline.a ${TERMCAP_LIB}
183
184 lint: force
185 $(MAKE) $(MFLAGS) CCFLAGS='$(GCC_LINT_CFLAGS)' static
186
187 Makefile makefile: config.status $(srcdir)/Makefile.in
188 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
189
190 Makefiles makefiles: config.status $(srcdir)/Makefile.in
191 @for mf in $(CREATED_MAKEFILES); do \
192 CONFIG_FILES=$$mf CONFIG_HEADERS= $(SHELL) ./config.status ; \
193 done
194
195 config.status: configure
196 $(SHELL) ./config.status --recheck
197
198 config.h: stamp-h
199
200 stamp-h: config.status $(srcdir)/config.h.in
201 CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
202 echo > $@
203
204 #$(srcdir)/configure: $(srcdir)/configure.ac ## Comment-me-out in distribution
205 # cd $(srcdir) && autoconf ## Comment-me-out in distribution
206
207
208 shared: force
209 -test -d shlib || mkdir shlib
210 ( cd shlib ; ${MAKE} ${MFLAGS} all )
211
212 documentation: force
213 -test -d doc || mkdir doc
214 -( cd doc && $(MAKE) $(MFLAGS) )
215
216 examples: force
217 -test -d examples || mkdir examples
218 -(cd examples && ${MAKE} ${MFLAGS} all )
219
220 force:
221
222 ## GDB LOCAL
223 ## Don't mess with people's installed readline's.
224 ## This tries to install this version of readline over whatever
225 ## version is already installed on the system (which could be a
226 ## newer version). There is no real reason for us to install
227 ## readline along with GDB. GDB links statically against readline,
228 ## so it doesn't depend on us installing it on the system.
229
230 install:
231
232 #install: $(INSTALL_TARGETS)
233
234 install-headers: installdirs ${INSTALLED_HEADERS}
235 for f in ${INSTALLED_HEADERS}; do \
236 $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(includedir)/readline ; \
237 done
238
239 uninstall-headers:
240 -test -n "$(includedir)" && cd $(DESTDIR)$(includedir)/readline && \
241 ${RM} ${INSTALLED_HEADERS}
242
243 maybe-uninstall-headers: uninstall-headers
244
245 install-static: installdirs $(STATIC_LIBS) install-headers install-doc install-examples
246 -$(MV) $(DESTDIR)$(libdir)/libreadline.a $(DESTDIR)$(libdir)/libreadline.old
247 $(INSTALL_DATA) libreadline.a $(DESTDIR)$(libdir)/libreadline.a
248 -test -n "$(RANLIB)" && $(RANLIB) $(DESTDIR)$(libdir)/libreadline.a
249 -$(MV) $(DESTDIR)$(libdir)/libhistory.a $(DESTDIR)$(libdir)/libhistory.old
250 $(INSTALL_DATA) libhistory.a $(DESTDIR)$(libdir)/libhistory.a
251 -test -n "$(RANLIB)" && $(RANLIB) $(DESTDIR)$(libdir)/libhistory.a
252
253 installdirs: $(srcdir)/support/mkinstalldirs
254 -$(SHELL) $(srcdir)/support/mkinstalldirs $(DESTDIR)$(includedir) \
255 $(DESTDIR)$(includedir)/readline $(DESTDIR)$(libdir) \
256 $(DESTDIR)$(infodir) $(DESTDIR)$(man3dir) $(DESTDIR)$(docdir)
257
258 uninstall: uninstall-headers uninstall-doc uninstall-examples
259 -test -n "$(DESTDIR)$(libdir)" && cd $(DESTDIR)$(libdir) && \
260 ${RM} libreadline.a libreadline.old libhistory.a libhistory.old $(SHARED_LIBS)
261 -( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall )
262
263 install-shared: installdirs install-headers shared install-doc
264 ( cd shlib ; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} install )
265
266 uninstall-shared: maybe-uninstall-headers
267 -( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall )
268
269 install-examples: installdirs install-headers
270 -( cd examples ; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} install )
271
272 uninstall-examples: maybe-uninstall-headers
273 -( cd examples; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall )
274
275 install-doc: installdirs
276 $(INSTALL_DATA) $(OTHER_DOCS) $(DESTDIR)$(docdir)
277 -( if test -d doc ; then \
278 cd doc && \
279 ${MAKE} ${MFLAGS} infodir=$(infodir) DESTDIR=${DESTDIR} install; \
280 fi )
281
282 uninstall-doc:
283 -( cd $(DESTDIR)$(docdir) && ${RM} ${OTHER_INSTALLED_DOCS} )
284 -( if test -d doc ; then \
285 cd doc && \
286 ${MAKE} ${MFLAGS} infodir=$(infodir) DESTDIR=${DESTDIR} uninstall; \
287 fi )
288
289 TAGS: force
290 -( cd $(srcdir) && $(ETAGS) $(CSOURCES) $(HSOURCES) )
291
292 tags: force
293 -( cd $(srcdir) && $(CTAGS) $(CSOURCES) $(HSOURCES) )
294
295 clean: force
296 $(RM) $(OBJECTS) $(STATIC_LIBS)
297 $(RM) readline readline.exe
298 ( cd shlib && $(MAKE) $(MFLAGS) $@ )
299 -( cd doc && $(MAKE) $(MFLAGS) $@ )
300 -( cd examples && $(MAKE) $(MFLAGS) $@ )
301
302 mostlyclean: clean
303 ( cd shlib && $(MAKE) $(MFLAGS) $@ )
304 -( cd doc && $(MAKE) $(MFLAGS) $@ )
305 -( cd examples && $(MAKE) $(MFLAGS) $@ )
306
307 distclean maintainer-clean: clean
308 ( cd shlib && $(MAKE) $(MFLAGS) $@ )
309 -( cd doc && $(MAKE) $(MFLAGS) $@ )
310 -( cd examples && $(MAKE) $(MFLAGS) $@ )
311 $(RM) Makefile
312 $(RM) $(CREATED_CONFIGURE)
313 $(RM) $(CREATED_TAGS)
314
315 readline.pc: config.status $(srcdir)/readline.pc.in
316 $(SHELL) config.status
317
318 info dvi html pdf ps:
319 -( cd doc && $(MAKE) $(MFLAGS) $@ )
320
321 install-info:
322 install-dvi:
323 install-html:
324 install-pdf:
325 install-ps:
326 check:
327 installcheck:
328
329 dist: force
330 @echo Readline distributions are created using $(srcdir)/support/mkdist.
331 @echo Here is a sample of the necessary commands:
332 @echo bash $(srcdir)/support/mkdist -m $(srcdir)/MANIFEST -s $(srcdir) -r $(RL_LIBRARY_NAME) $(RL_LIBRARY_VERSION)
333 @echo tar cf $(RL_LIBRARY_NAME)-${RL_LIBRARY_VERSION}.tar ${RL_LIBRARY_NAME}-$(RL_LIBRARY_VERSION)
334 @echo gzip $(RL_LIBRARY_NAME)-$(RL_LIBRARY_VERSION).tar
335
336 # Tell versions [3.59,3.63) of GNU make not to export all variables.
337 # Otherwise a system limit (for SysV at least) may be exceeded.
338 .NOEXPORT:
339
340 # Dependencies
341 bind.o: ansi_stdlib.h posixstat.h
342 bind.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
343 bind.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
344 bind.o: history.h
345 callback.o: rlconf.h
346 callback.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
347 callback.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
348 compat.o: ${BUILD_DIR}/config.h
349 compat.o: rlstdc.h rltypedefs.h
350 complete.o: ansi_stdlib.h posixdir.h posixstat.h
351 complete.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
352 complete.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
353 display.o: ansi_stdlib.h posixstat.h
354 display.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
355 display.o: tcap.h
356 display.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
357 display.o: history.h rlstdc.h
358 funmap.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
359 funmap.o: rlconf.h ansi_stdlib.h rlstdc.h
360 funmap.o: ${BUILD_DIR}/config.h
361 histexpand.o: ansi_stdlib.h
362 histexpand.o: history.h histlib.h rlstdc.h rltypedefs.h
363 histexpand.o: ${BUILD_DIR}/config.h
364 histfile.o: ansi_stdlib.h
365 histfile.o: history.h histlib.h rlstdc.h rltypedefs.h
366 histfile.o: ${BUILD_DIR}/config.h
367 history.o: ansi_stdlib.h
368 history.o: history.h histlib.h rlstdc.h rltypedefs.h
369 history.o: ${BUILD_DIR}/config.h
370 histsearch.o: ansi_stdlib.h
371 histsearch.o: history.h histlib.h rlstdc.h rltypedefs.h
372 histsearch.o: ${BUILD_DIR}/config.h
373 input.o: ansi_stdlib.h
374 input.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
375 input.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
376 isearch.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
377 isearch.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
378 isearch.o: ansi_stdlib.h history.h rlstdc.h
379 keymaps.o: emacs_keymap.c vi_keymap.c
380 keymaps.o: keymaps.h rltypedefs.h chardefs.h rlconf.h ansi_stdlib.h
381 keymaps.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
382 keymaps.o: ${BUILD_DIR}/config.h rlstdc.h
383 kill.o: ansi_stdlib.h
384 kill.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
385 kill.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
386 kill.o: history.h rlstdc.h
387 macro.o: ansi_stdlib.h
388 macro.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
389 macro.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
390 macro.o: history.h rlstdc.h
391 mbutil.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
392 mbutil.o: readline.h keymaps.h rltypedefs.h chardefs.h rlstdc.h
393 misc.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
394 misc.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
395 misc.o: history.h rlstdc.h ansi_stdlib.h
396 nls.o: ansi_stdlib.h
397 nls.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
398 nls.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
399 nls.o: history.h rlstdc.h
400 parens.o: rlconf.h
401 parens.o: ${BUILD_DIR}/config.h
402 parens.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
403 readline.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
404 readline.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
405 readline.o: history.h rlstdc.h
406 readline.o: posixstat.h ansi_stdlib.h posixjmp.h
407 rltty.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
408 rltty.o: rltty.h
409 rltty.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
410 savestring.o: ${BUILD_DIR}/config.h
411 search.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
412 search.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
413 search.o: ansi_stdlib.h history.h rlstdc.h
414 shell.o: ${BUILD_DIR}/config.h
415 shell.o: ansi_stdlib.h
416 signals.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
417 signals.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
418 signals.o: history.h rlstdc.h
419 terminal.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
420 terminal.o: tcap.h
421 terminal.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
422 terminal.o: history.h rlstdc.h
423 text.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
424 text.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
425 text.o: history.h rlstdc.h ansi_stdlib.h
426 tilde.o: ansi_stdlib.h
427 tilde.o: ${BUILD_DIR}/config.h
428 tilde.o: tilde.h
429 undo.o: ansi_stdlib.h
430 undo.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
431 undo.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
432 undo.o: history.h rlstdc.h
433 util.o: posixjmp.h ansi_stdlib.h
434 util.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
435 util.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
436 vi_mode.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
437 vi_mode.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
438 vi_mode.o: history.h ansi_stdlib.h rlstdc.h
439 xfree.o: ${BUILD_DIR}/config.h
440 xfree.o: ansi_stdlib.h readline.h
441 xmalloc.o: ${BUILD_DIR}/config.h
442 xmalloc.o: ansi_stdlib.h
443
444 colors.o: ${BUILD_DIR}/config.h colors.h
445 colors.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
446 colors.o: rlconf.h
447 colors.o: ansi_stdlib.h posixstat.h
448 parse-colors.o: ${BUILD_DIR}/config.h colors.h parse-colors.h
449 parse-colors.o: rldefs.h rlconf.h
450 parse-colors.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
451
452 bind.o: rlshell.h
453 histfile.o: rlshell.h
454 nls.o: rlshell.h
455 readline.o: rlshell.h
456 shell.o: rlshell.h
457 terminal.o: rlshell.h
458 histexpand.o: rlshell.h
459
460 bind.o: rlprivate.h
461 callback.o: rlprivate.h
462 complete.o: rlprivate.h
463 display.o: rlprivate.h
464 input.o: rlprivate.h
465 isearch.o: rlprivate.h
466 kill.o: rlprivate.h
467 macro.o: rlprivate.h
468 mbutil.o: rlprivate.h
469 misc.o: rlprivate.h
470 nls.o: rlprivate.h
471 parens.o: rlprivate.h
472 readline.o: rlprivate.h
473 rltty.o: rlprivate.h
474 search.o: rlprivate.h
475 signals.o: rlprivate.h
476 terminal.o: rlprivate.h
477 text.o: rlprivate.h
478 undo.o: rlprivate.h
479 util.o: rlprivate.h
480 vi_mode.o: rlprivate.h
481 colors.o: rlprivate.h
482 parse-colors.o: rlprivate.h
483
484 bind.o: xmalloc.h
485 callback.o: xmalloc.h
486 complete.o: xmalloc.h
487 display.o: xmalloc.h
488 funmap.o: xmalloc.h
489 histexpand.o: xmalloc.h
490 histfile.o: xmalloc.h
491 history.o: xmalloc.h
492 input.o: xmalloc.h
493 isearch.o: xmalloc.h
494 keymaps.o: xmalloc.h
495 kill.o: xmalloc.h
496 macro.o: xmalloc.h
497 mbutil.o: xmalloc.h
498 misc.o: xmalloc.h
499 readline.o: xmalloc.h
500 savestring.o: xmalloc.h
501 search.o: xmalloc.h
502 shell.o: xmalloc.h
503 terminal.o: xmalloc.h
504 text.o: xmalloc.h
505 tilde.o: xmalloc.h
506 undo.o: xmalloc.h
507 util.o: xmalloc.h
508 vi_mode.o: xmalloc.h
509 xfree.o: xmalloc.h
510 xmalloc.o: xmalloc.h
511 colors.o: xmalloc.h
512 parse-colors.o: xmalloc.h
513
514 complete.o: rlmbutil.h
515 display.o: rlmbutil.h
516 histexpand.o: rlmbutil.h
517 input.o: rlmbutil.h
518 isearch.o: rlmbutil.h
519 mbutil.o: rlmbutil.h
520 misc.o: rlmbutil.h
521 readline.o: rlmbutil.h
522 search.o: rlmbutil.h
523 text.o: rlmbutil.h
524 vi_mode.o: rlmbutil.h
525
526 bind.o: $(srcdir)/bind.c
527 callback.o: $(srcdir)/callback.c
528 compat.o: $(srcdir)/compat.c
529 complete.o: $(srcdir)/complete.c
530 display.o: $(srcdir)/display.c
531 funmap.o: $(srcdir)/funmap.c
532 input.o: $(srcdir)/input.c
533 isearch.o: $(srcdir)/isearch.c
534 keymaps.o: $(srcdir)/keymaps.c $(srcdir)/emacs_keymap.c $(srcdir)/vi_keymap.c
535 kill.o: $(srcdir)/kill.c
536 macro.o: $(srcdir)/macro.c
537 mbutil.o: $(srcdir)/mbutil.c
538 misc.o: $(srcdir)/misc.c
539 nls.o: $(srcdir)/nls.c
540 parens.o: $(srcdir)/parens.c
541 readline.o: $(srcdir)/readline.c
542 rltty.o: $(srcdir)/rltty.c
543 savestring.o: $(srcdir)/savestring.c
544 search.o: $(srcdir)/search.c
545 shell.o: $(srcdir)/shell.c
546 signals.o: $(srcdir)/signals.c
547 terminal.o: $(srcdir)/terminal.c
548 text.o: $(srcdir)/text.c
549 tilde.o: $(srcdir)/tilde.c
550 undo.o: $(srcdir)/undo.c
551 util.o: $(srcdir)/util.c
552 vi_mode.o: $(srcdir)/vi_mode.c
553 xfree.o: $(srcdir)/xfree.c
554 xmalloc.o: $(srcdir)/xmalloc.c
555
556 colors.o: $(srcdir)/parse-colors.c
557 parse-colors.o: $(srcdir)/parse-colors.c
558
559 histexpand.o: $(srcdir)/histexpand.c
560 histfile.o: $(srcdir)/histfile.c
561 history.o: $(srcdir)/history.c
562 histsearch.o: $(srcdir)/histsearch.c
563
564 bind.o: bind.c
565 callback.o: callback.c
566 compat.o: compat.c
567 complete.o: complete.c
568 display.o: display.c
569 funmap.o: funmap.c
570 input.o: input.c
571 isearch.o: isearch.c
572 keymaps.o: keymaps.c emacs_keymap.c vi_keymap.c
573 kill.o: kill.c
574 macro.o: macro.c
575 mbutil.o: mbutil.c
576 misc.o: misc.c
577 nls.o: nls.c
578 parens.o: parens.c
579 readline.o: readline.c
580 rltty.o: rltty.c
581 savestring.o: savestring.c
582 search.o: search.c
583 shell.o: shell.c
584 signals.o: signals.c
585 terminal.o: terminal.c
586 text.o: text.c
587 tilde.o: tilde.c
588 undo.o: undo.c
589 util.o: util.c
590 vi_mode.o: vi_mode.c
591 xfree.o: xfree.c
592 xmalloc.o: xmalloc.c
593
594 histexpand.o: histexpand.c
595 histfile.o: histfile.c
596 history.o: history.c
597 histsearch.o: histsearch.c
This page took 0.041611 seconds and 3 git commands to generate.