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