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