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