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