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