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