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