x86-64-biarch
[platform/upstream/binutils.git] / readline / shlib / Makefile.in
1 ## -*- text -*- ##
2 # Makefile for the GNU readline library shared library support.
3 #
4 # Copyright (C) 1998-2009 Free Software Foundation, Inc.
5
6 #   This program is free software: you can redistribute it and/or modify
7 #   it under the terms of the GNU General Public License as published by
8 #   the Free Software Foundation, either version 3 of the License, or
9 #   (at your option) any later version.
10
11 #   This program is distributed in the hope that it will be useful,
12 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #   GNU General Public License for more details.
15
16 #   You should have received a copy of the GNU General Public License
17 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 PACKAGE = @PACKAGE_NAME@
20 VERSION = @PACKAGE_VERSION@
21
22 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
23 PACKAGE_NAME = @PACKAGE_NAME@
24 PACKAGE_STRING = @PACKAGE_STRING@
25 PACKAGE_VERSION = @PACKAGE_VERSION@
26
27 RL_LIBRARY_VERSION = @LIBVERSION@
28 RL_LIBRARY_NAME = readline
29
30 datarootdir = @datarootdir@
31
32 srcdir = @srcdir@
33 VPATH = @top_srcdir@
34 topdir = @top_srcdir@
35 BUILD_DIR = @BUILD_DIR@
36
37 INSTALL = @INSTALL@
38 INSTALL_PROGRAM = @INSTALL_PROGRAM@
39 INSTALL_DATA = @INSTALL_DATA@
40
41 CC = @CC@
42 RANLIB = @RANLIB@
43 AR = @AR@
44 ARFLAGS = @ARFLAGS@
45 RM = rm -f
46 CP = cp
47 MV = mv
48 LN = ln
49
50 SHELL = @MAKE_SHELL@
51
52 host_os = @host_os@
53 host_vendor = @host_vendor@
54
55 prefix = @prefix@
56 exec_prefix = @exec_prefix@
57 includedir = @includedir@
58 bindir = @bindir@
59 libdir = @libdir@
60 datadir = @datadir@
61 localedir = @localedir@
62
63 # Support an alternate destination root directory for package building
64 DESTDIR =
65
66 CFLAGS = @CFLAGS@
67 LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'
68 CPPFLAGS = @CPPFLAGS@
69 LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@ @CFLAGS@
70
71 DEFS = @DEFS@ @CROSS_COMPILE@
72 LOCAL_DEFS = @LOCAL_DEFS@
73
74 #
75 # These values are generated for configure by ${topdir}/support/shobj-conf.
76 # If your system is not supported by that script, but includes facilities for
77 # dynamic loading of shared objects, please update the script and send the
78 # changes to bash-maintainers@gnu.org.
79 #
80 SHOBJ_CC = @SHOBJ_CC@
81 SHOBJ_CFLAGS = @SHOBJ_CFLAGS@
82 SHOBJ_LD = @SHOBJ_LD@
83
84 SHOBJ_LDFLAGS = @SHOBJ_LDFLAGS@
85 SHOBJ_XLDFLAGS = @SHOBJ_XLDFLAGS@
86 SHOBJ_LIBS = @SHOBJ_LIBS@
87
88 SHLIB_XLDFLAGS = @LDFLAGS@ @SHLIB_XLDFLAGS@
89 SHLIB_LIBS = @SHLIB_LIBS@
90
91 SHLIB_DOT = @SHLIB_DOT@
92 SHLIB_LIBPREF = @SHLIB_LIBPREF@
93 SHLIB_LIBSUFF = @SHLIB_LIBSUFF@
94
95 SHLIB_LIBVERSION = @SHLIB_LIBVERSION@
96 SHLIB_DLLVERSION = @SHLIB_DLLVERSION@
97
98 SHLIB_STATUS = @SHLIB_STATUS@
99
100 TERMCAP_LIB = @TERMCAP_LIB@
101
102 # shared library versioning
103 SHLIB_MAJOR=            @SHLIB_MAJOR@
104 # shared library systems like SVR4's do not use minor versions
105 SHLIB_MINOR=            .@SHLIB_MINOR@
106
107 # For libraries which include headers from other libraries.
108 INCLUDES = -I. -I.. -I$(topdir)
109
110 CCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES) $(LOCAL_CFLAGS) $(CFLAGS)
111
112 .SUFFIXES:      .so
113
114 .c.so:
115         ${RM} $@
116         $(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_CFLAGS) -o $*.o $< 
117         $(MV) $*.o $@
118
119 # The name of the main library target.
120
121 SHARED_READLINE = $(SHLIB_LIBPREF)readline$(SHLIB_DOT)$(SHLIB_LIBVERSION)
122 SHARED_HISTORY = $(SHLIB_LIBPREF)history$(SHLIB_DOT)$(SHLIB_LIBVERSION)
123 SHARED_LIBS = $(SHARED_READLINE) $(SHARED_HISTORY)
124
125 # The C code source files for this library.
126 CSOURCES = $(topdir)/readline.c $(topdir)/funmap.c $(topdir)/keymaps.c \
127            $(topdir)/vi_mode.c $(topdir)/parens.c $(topdir)/rltty.c \
128            $(topdir)/complete.c $(topdir)/bind.c $(topdir)/isearch.c \
129            $(topdir)/display.c $(topdir)/signals.c $(topdir)/emacs_keymap.c \
130            $(topdir)/vi_keymap.c $(topdir)/util.c $(topdir)/kill.c \
131            $(topdir)/undo.c $(topdir)/macro.c $(topdir)/input.c \
132            $(topdir)/callback.c $(topdir)/terminal.c $(topdir)/xmalloc.c $(topdir)/xfree.c \
133            $(topdir)/history.c $(topdir)/histsearch.c $(topdir)/histexpand.c \
134            $(topdir)/histfile.c $(topdir)/nls.c $(topdir)/search.c \
135            $(topdir)/shell.c $(topdir)/savestring.c $(topdir)/tilde.c \
136            $(topdir)/text.c $(topdir)/misc.c $(topdir)/compat.c \
137            $(topdir)/mbutil.c
138
139 # The header files for this library.
140 HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \
141            posixstat.h posixdir.h posixjmp.h tilde.h rlconf.h rltty.h \
142            ansi_stdlib.h tcap.h xmalloc.h rlprivate.h rlshell.h rlmbutil.h
143
144 SHARED_HISTOBJ = history.so histexpand.so histfile.so histsearch.so shell.so \
145                  mbutil.so
146 SHARED_TILDEOBJ = tilde.so
147 SHARED_OBJ = readline.so vi_mode.so funmap.so keymaps.so parens.so search.so \
148           rltty.so complete.so bind.so isearch.so display.so signals.so \
149           util.so kill.so undo.so macro.so input.so callback.so terminal.so \
150           text.so nls.so misc.so xmalloc.so xfree.so $(SHARED_HISTOBJ) $(SHARED_TILDEOBJ) \
151           compat.so
152
153 ##########################################################################
154
155 all: $(SHLIB_STATUS)
156
157 supported: $(SHARED_LIBS)
158
159 unsupported:
160         @echo "Your system and compiler (${host_os}-${CC}) are not supported by the"
161         @echo "${topdir}/support/shobj-conf script."
162         @echo "If your operating system provides facilities for creating"
163         @echo "shared libraries, please update the script and re-run configure."
164         @echo "Please send the changes you made to bash-maintainers@gnu.org"
165         @echo "for inclusion in future bash and readline releases."
166
167 $(SHARED_READLINE):     $(SHARED_OBJ)
168         $(RM) $@
169         $(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_OBJ) $(SHLIB_LIBS)
170
171 $(SHARED_HISTORY):      $(SHARED_HISTOBJ) xmalloc.so xfree.so
172         $(RM) $@
173         $(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_HISTOBJ) xmalloc.so xfree.so $(SHLIB_LIBS)
174
175 # Since tilde.c is shared between readline and bash, make sure we compile 
176 # it with the right flags when it's built as part of readline
177 tilde.so:        tilde.c
178         ${RM} $@
179         $(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_CFLAGS) -DREADLINE_LIBRARY -c -o tilde.o $(topdir)/tilde.c
180         $(MV) tilde.o $@
181
182 installdirs: $(topdir)/support/mkdirs
183         -$(SHELL) $(topdir)/support/mkdirs $(DESTDIR)$(libdir)
184         -$(SHELL) $(topdir)/support/mkdirs $(DESTDIR)$(bindir)
185
186 install: installdirs $(SHLIB_STATUS)
187         $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -V $(host_vendor) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -i "$(INSTALL_DATA)" $(SHARED_HISTORY)
188         $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -V $(host_vendor) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -i "$(INSTALL_DATA)" $(SHARED_READLINE)
189         @echo install: you may need to run ldconfig
190
191 uninstall:
192         $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -V $(host_vendor) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -U $(SHARED_HISTORY)
193         $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -V $(host_vendor) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -U $(SHARED_READLINE)
194         @echo uninstall: you may need to run ldconfig
195
196 clean mostlyclean:      force
197         $(RM) $(SHARED_OBJ) $(SHARED_LIBS)
198
199 distclean maintainer-clean: clean
200         $(RM) Makefile
201
202 force:
203
204 # Tell versions [3.59,3.63) of GNU make not to export all variables.
205 # Otherwise a system limit (for SysV at least) may be exceeded.
206 .NOEXPORT:
207
208 # Dependencies
209 bind.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.h
210 bind.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
211 bind.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
212 bind.so: $(topdir)/rltypedefs.h
213 bind.so: $(topdir)/tilde.h $(topdir)/history.h
214 compat.so: $(topdir)/rlstdc.h
215 callback.so: $(topdir)/rlconf.h
216 callback.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h
217 callback.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
218 callback.so: $(topdir)/rltypedefs.h
219 callback.so: $(topdir)/tilde.h
220 complete.so: $(topdir)/ansi_stdlib.h posixdir.h $(topdir)/posixstat.h
221 complete.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
222 complete.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
223 complete.so: $(topdir)/rltypedefs.h
224 complete.so: $(topdir)/tilde.h
225 display.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.h
226 display.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
227 display.so: $(topdir)/tcap.h
228 display.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
229 display.so: $(topdir)/rltypedefs.h
230 display.so: $(topdir)/tilde.h $(topdir)/history.h
231 funmap.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
232 funmap.so: $(topdir)/rltypedefs.h
233 funmap.so: $(topdir)/rlconf.h $(topdir)/ansi_stdlib.h
234 funmap.so: ${BUILD_DIR}/config.h $(topdir)/tilde.h
235 histexpand.so: $(topdir)/ansi_stdlib.h
236 histexpand.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
237 histexpand.so: ${BUILD_DIR}/config.h
238 histfile.so: $(topdir)/ansi_stdlib.h
239 histfile.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
240 histfile.so: ${BUILD_DIR}/config.h
241 history.so: $(topdir)/ansi_stdlib.h
242 history.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
243 history.so: ${BUILD_DIR}/config.h
244 histsearch.so: $(topdir)/ansi_stdlib.h
245 histsearch.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
246 histsearch.so: ${BUILD_DIR}/config.h
247 input.so: $(topdir)/ansi_stdlib.h
248 input.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
249 input.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
250 input.so: $(topdir)/rltypedefs.h
251 input.so: $(topdir)/tilde.h
252 isearch.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
253 isearch.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
254 isearch.so: $(topdir)/rltypedefs.h
255 isearch.so: $(topdir)/ansi_stdlib.h $(topdir)/history.h $(topdir)/tilde.h
256 keymaps.so: emacs_keymap.c vi_keymap.c
257 keymaps.so: $(topdir)/keymaps.h $(topdir)/chardefs.h $(topdir)/rlconf.h
258 keymaps.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
259 keymaps.so: $(topdir)/rltypedefs.h
260 keymaps.so: ${BUILD_DIR}/config.h $(topdir)/ansi_stdlib.h $(topdir)/tilde.h
261 kill.so: $(topdir)/ansi_stdlib.h
262 kill.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
263 kill.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
264 kill.so: $(topdir)/tilde.h $(topdir)/history.h  $(topdir)/rltypedefs.h
265 macro.so: $(topdir)/ansi_stdlib.h
266 macro.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
267 macro.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
268 macro.so: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rltypedefs.h
269 mbutil.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
270 mbutil.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/rltypedefs.h
271 mbutil.so: $(topdir)/chardefs.h $(topdir)/rlstdc.h
272 misc.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
273 misc.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
274 misc.so: $(topdir)/rltypedefs.h
275 misc.so: $(topdir)/history.h $(topdir)/tilde.h $(topdir)/ansi_stdlib.h
276 nls.so: $(topdir)/ansi_stdlib.h
277 nls.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
278 nls.o: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
279 nls.o: $(topdir)/rltypedefs.h
280 nls.o: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rlstdc.h  
281 parens.so: $(topdir)/rlconf.h ${BUILD_DIR}/config.h
282 parens.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
283 parens.so: $(topdir)/rltypedefs.h
284 parens.so: $(topdir)/tilde.h
285 rltty.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
286 rltty.so: $(topdir)/rltty.h $(topdir)/tilde.h
287 rltty.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
288 rltty.so: $(topdir)/rltypedefs.h
289 search.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
290 search.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
291 search.so: $(topdir)/ansi_stdlib.h $(topdir)/history.h $(topdir)/tilde.h
292 search.so: $(topdir)/rltypedefs.h
293 signals.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
294 signals.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
295 signals.so: $(topdir)/history.h $(topdir)/tilde.h
296 signals.so: $(topdir)/rltypedefs.h
297 terminal.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
298 terminal.so: $(topdir)/tcap.h
299 terminal.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
300 terminal.so: $(topdir)/tilde.h $(topdir)/history.h
301 terminal.so: $(topdir)/rltypedefs.h
302 text.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
303 text.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
304 text.so: $(topdir)/rltypedefs.h
305 text.so: $(topdir)/history.h $(topdir)/tilde.h $(topdir)/ansi_stdlib.h
306 tilde.so: $(topdir)/ansi_stdlib.h ${BUILD_DIR}/config.h $(topdir)/tilde.h
307 undo.so: $(topdir)/ansi_stdlib.h
308 undo.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
309 undo.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
310 undo.so: $(topdir)/rltypedefs.h
311 undo.so: $(topdir)/tilde.h $(topdir)/history.h
312 util.so: $(topdir)/posixjmp.h $(topdir)/ansi_stdlib.h
313 util.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
314 util.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
315 util.so: $(topdir)/rltypedefs.h $(topdir)/tilde.h
316 vi_mode.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
317 vi_mode.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
318 vi_mode.so: $(topdir)/history.h $(topdir)/ansi_stdlib.h $(topdir)/tilde.h
319 vi_mode.so: $(topdir)/rltypedefs.h
320 xfree.so: ${BUILD_DIR}/config.h
321 xfree.so: $(topdir)/ansi_stdlib.h
322 xmalloc.so: ${BUILD_DIR}/config.h
323 xmalloc.so: $(topdir)/ansi_stdlib.h
324
325 bind.so: $(topdir)/rlshell.h
326 histfile.so: $(topdir)/rlshell.h
327 nls.so: $(topdir)/rlshell.h
328 readline.so: $(topdir)/rlshell.h
329 shell.so: $(topdir)/rlshell.h
330 terminal.so: $(topdir)/rlshell.h
331 histexpand.so: $(topdir)/rlshell.h
332
333 bind.so: $(topdir)/rlprivate.h
334 callback.so: $(topdir)/rlprivate.h
335 complete.so: $(topdir)/rlprivate.h
336 display.so: $(topdir)/rlprivate.h
337 input.so: $(topdir)/rlprivate.h
338 isearch.so: $(topdir)/rlprivate.h
339 kill.so: $(topdir)/rlprivate.h
340 macro.so: $(topdir)/rlprivate.h
341 mbutil.so: $(topdir)/rlprivate.h
342 misc.so: $(topdir)/rlprivate.h
343 nls.so: $(topdir)/rlprivate.h   
344 parens.so: $(topdir)/rlprivate.h
345 readline.so: $(topdir)/rlprivate.h
346 rltty.so: $(topdir)/rlprivate.h 
347 search.so: $(topdir)/rlprivate.h
348 signals.so: $(topdir)/rlprivate.h
349 terminal.so: $(topdir)/rlprivate.h
350 text.so: $(topdir)/rlprivate.h
351 undo.so: $(topdir)/rlprivate.h
352 util.so: $(topdir)/rlprivate.h
353 vi_mode.so: $(topdir)/rlprivate.h
354
355 bind.so: $(topdir)/xmalloc.h
356 complete.so: $(topdir)/xmalloc.h
357 display.so: $(topdir)/xmalloc.h
358 funmap.so: $(topdir)/xmalloc.h
359 histexpand.so: $(topdir)/xmalloc.h
360 histfile.so: $(topdir)/xmalloc.h
361 history.so: $(topdir)/xmalloc.h
362 input.so: $(topdir)/xmalloc.h
363 isearch.so: $(topdir)/xmalloc.h
364 keymaps.so: $(topdir)/xmalloc.h
365 kill.so: $(topdir)/xmalloc.h
366 macro.so: $(topdir)/xmalloc.h
367 mbutil.so: $(topdir)/xmalloc.h
368 misc.so: $(topdir)/xmalloc.h
369 readline.so: $(topdir)/xmalloc.h
370 savestring.so: $(topdir)/xmalloc.h
371 search.so: $(topdir)/xmalloc.h
372 shell.so: $(topdir)/xmalloc.h
373 terminal.so: $(topdir)/xmalloc.h
374 text.so: $(topdir)/xmalloc.h
375 tilde.so: $(topdir)/xmalloc.h
376 undo.so: $(topdir)/xmalloc.h
377 util.so: $(topdir)/xmalloc.h
378 vi_mode.so: $(topdir)/xmalloc.h
379 xfree.so: $(topdir)/xmalloc.h
380 xmalloc.so: $(topdir)/xmalloc.h
381
382 complete.o: $(topdir)/rlmbutil.h
383 display.o: $(topdir)/rlmbutil.h
384 histexpand.o: $(topdir)/rlmbutil.h
385 input.o: $(topdir)/rlmbutil.h
386 isearch.o: $(topdir)/rlmbutil.h
387 mbutil.o: $(topdir)/rlmbutil.h
388 misc.o: $(topdir)/rlmbutil.h
389 readline.o: $(topdir)/rlmbutil.h
390 search.o: $(topdir)/rlmbutil.h
391 text.o: $(topdir)/rlmbutil.h
392 vi_mode.o: $(topdir)/rlmbutil.h
393
394 bind.so: $(topdir)/bind.c
395 callback.so: $(topdir)/callback.c
396 compat.so: $(topdir)/compat.c
397 complete.so: $(topdir)/complete.c
398 display.so: $(topdir)/display.c
399 funmap.so: $(topdir)/funmap.c
400 input.so: $(topdir)/input.c
401 isearch.so: $(topdir)/isearch.c
402 keymaps.so: $(topdir)/keymaps.c $(topdir)/emacs_keymap.c $(topdir)/vi_keymap.c
403 kill.so: $(topdir)/kill.c
404 macro.so: $(topdir)/macro.c
405 mbutil.so: $(topdir)/mbutil.c
406 misc.so: $(topdir)/mbutil.c
407 nls.so: $(topdir)/nls.c
408 parens.so: $(topdir)/parens.c
409 readline.so: $(topdir)/readline.c
410 rltty.so: $(topdir)/rltty.c
411 savestring.so: $(topdir)/savestring.c
412 search.so: $(topdir)/search.c
413 shell.so: $(topdir)/shell.c
414 signals.so: $(topdir)/signals.c
415 terminal.so: $(topdir)/terminal.c
416 text.so: $(topdir)/text.c
417 tilde.so: $(topdir)/tilde.c
418 undo.so: $(topdir)/undo.c
419 util.so: $(topdir)/util.c
420 vi_mode.so: $(topdir)/vi_mode.c
421 xfree.so: $(topdir)/xfree.c
422 xmalloc.so: $(topdir)/xmalloc.c
423
424 histexpand.so: $(topdir)/histexpand.c
425 histfile.so: $(topdir)/histfile.c
426 history.so: $(topdir)/history.c
427 histsearch.so: $(topdir)/histsearch.c
428
429 bind.so: bind.c
430 callback.so: callback.c
431 comapt.so: compat.c
432 complete.so: complete.c
433 display.so: display.c
434 funmap.so: funmap.c
435 input.so: input.c
436 isearch.so: isearch.c
437 keymaps.so: keymaps.c emacs_keymap.c vi_keymap.c
438 kill.so: kill.c
439 macro.so: macro.c
440 mbutil.so: mbutil.c
441 misc.so: misc.c
442 nls.so: nls.c
443 parens.so: parens.c
444 readline.so: readline.c
445 rltty.so: rltty.c
446 savestring.so: savestring.c
447 search.so: search.c
448 signals.so: signals.c
449 shell.so: shell.c
450 terminal.so: terminal.c
451 text.so: text.c
452 tilde.so: tilde.c
453 undo.so: undo.c
454 util.so: util.c
455 vi_mode.so: vi_mode.c
456 xfree.so: xfree.c
457 xmalloc.so: xmalloc.c
458
459 histexpand.so: histexpand.c
460 histfile.so: histfile.c
461 history.so: history.c
462 histsearch.so: histsearch.c