]>
Commit | Line | Data |
---|---|---|
229e1740 EZ |
1 | ## -*- text -*- ## |
2 | # Master Makefile for the GNU readline library. | |
3 | # Copyright (C) 1994 Free Software Foundation, Inc. | |
4 | ||
5 | # This program is free software; you can redistribute it and/or modify | |
92bb90af | 6 | # it under the terms of the GNU General Public License as published by |
229e1740 EZ |
7 | # the Free Software Foundation; either version 2, or (at your option) |
8 | # any later version. | |
9 | ||
92bb90af RP |
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. | |
229e1740 | 14 | |
92bb90af RP |
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 | |
229e1740 EZ |
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 | |
bcb14db5 | 37 | |
229e1740 EZ |
38 | prefix = @prefix@ |
39 | exec_prefix = @exec_prefix@ | |
7187e60c | 40 | |
229e1740 EZ |
41 | bindir = @bindir@ |
42 | libdir = @libdir@ | |
43 | mandir = @mandir@ | |
44 | includedir = @includedir@ | |
92bb90af | 45 | |
229e1740 | 46 | infodir = @infodir@ |
b65a4fe5 | 47 | |
92bb90af | 48 | man3dir = $(mandir)/man3 |
92bb90af RP |
49 | |
50 | SHELL = /bin/sh | |
51 | ||
229e1740 EZ |
52 | # Programs to make tags files. |
53 | ETAGS = etags -tw | |
54 | CTAGS = ctags -tw | |
7da15eff | 55 | |
229e1740 EZ |
56 | CFLAGS = @CFLAGS@ |
57 | LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"' | |
58 | CPPFLAGS = @CPPFLAGS@ | |
59 | LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@ @CFLAGS@ | |
92bb90af | 60 | |
229e1740 EZ |
61 | DEFS = @DEFS@ |
62 | LOCAL_DEFS = @LOCAL_DEFS@ | |
bd5635a1 | 63 | |
229e1740 EZ |
64 | # For libraries which include headers from other libraries. |
65 | INCLUDES = -I. -I$(srcdir) -I$(includedir) | |
bd5635a1 | 66 | |
229e1740 | 67 | CCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES) $(LOCAL_CFLAGS) $(CFLAGS) |
bd5635a1 | 68 | |
229e1740 EZ |
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 | |
bd5635a1 | 73 | |
229e1740 EZ |
74 | MAJOR= 3 |
75 | # shared library systems like SVR4's do not use minor versions | |
76 | MINOR= .0 | |
bd5635a1 | 77 | |
229e1740 EZ |
78 | .SUFFIXES: .so |
79 | ||
80 | .c.o: | |
81 | $(CC) -c $(CCFLAGS) $< | |
bd5635a1 | 82 | |
229e1740 EZ |
83 | .c.so: |
84 | -mv $*.o z$*.o | |
85 | $(CC) -c $(PICFLAG) $(CCFLAGS) $< | |
86 | mv $*.o $@ | |
87 | -mv z$*.o $*.o | |
bd5635a1 | 88 | |
5e98bbab PB |
89 | # The name of the main library target. |
90 | LIBRARY_NAME = libreadline.a | |
229e1740 EZ |
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) | |
5e98bbab PB |
96 | |
97 | # The C code source files for this library. | |
229e1740 EZ |
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 | |
5e98bbab PB |
108 | |
109 | # The header files for this library. | |
229e1740 EZ |
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 | |
5e98bbab | 113 | |
229e1740 EZ |
114 | HISTOBJ = history.o histexpand.o histfile.o histsearch.o shell.o |
115 | TILDEOBJ = tilde.o | |
5e98bbab PB |
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 \ | |
229e1740 EZ |
118 | util.o kill.o undo.o macro.o input.o callback.o terminal.o \ |
119 | nls.o xmalloc.o $(HISTOBJ) $(TILDEOBJ) | |
bd5635a1 | 120 | |
229e1740 EZ |
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) | |
bd5635a1 | 127 | |
229e1740 EZ |
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) | |
bd5635a1 | 133 | |
229e1740 EZ |
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 | |
bd5635a1 | 138 | |
229e1740 | 139 | INSTALLED_HEADERS = readline.h chardefs.h keymaps.h history.h tilde.h |
5e98bbab | 140 | |
229e1740 | 141 | ########################################################################## |
5e98bbab | 142 | |
229e1740 | 143 | all: static |
bd5635a1 | 144 | |
229e1740 EZ |
145 | static: $(STATIC_LIBS) |
146 | shared: $(SHARED_LIBS) | |
fff3e61f | 147 | |
5e98bbab | 148 | libreadline.a: $(OBJECTS) |
229e1740 EZ |
149 | $(RM) $@ |
150 | $(AR) cr $@ $(OBJECTS) | |
151 | -test -n "$(RANLIB)" && $(RANLIB) $@ | |
bd5635a1 | 152 | |
229e1740 EZ |
153 | libhistory.a: $(HISTOBJ) xmalloc.o |
154 | $(RM) $@ | |
155 | $(AR) cr $@ $(HISTOBJ) xmalloc.o | |
156 | -test -n "$(RANLIB)" && $(RANLIB) $@ | |
e92ee469 | 157 | |
229e1740 EZ |
158 | $(SHARED_READLINE): $(SHARED_OBJ) |
159 | $(RM) $@ | |
160 | $(LD) ${SHLIB_OPTS} -o $@ $(SHARED_OBJ) | |
b65a4fe5 | 161 | |
229e1740 EZ |
162 | $(SHARED_HISTORY): $(SHARED_HISTOBJ) xmalloc.so |
163 | $(RM) $@ | |
164 | $(LD) ${SHLIB_OPTS} -o $@ $(SHARED_HISTOBJ) xmalloc.so | |
bd5635a1 | 165 | |
229e1740 EZ |
166 | readline: $(OBJECTS) readline.h rldefs.h chardefs.h |
167 | $(CC) $(CCFLAGS) -o $@ ./examples/rl.c ./libreadline.a -ltermcap | |
84c8bac2 | 168 | |
229e1740 EZ |
169 | Makefile makefile: config.status $(srcdir)/Makefile.in |
170 | CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status | |
84c8bac2 | 171 | |
229e1740 EZ |
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 | |
7da15eff | 176 | |
229e1740 EZ |
177 | config.status: configure |
178 | $(SHELL) ./config.status --recheck | |
7da15eff | 179 | |
229e1740 | 180 | config.h: stamp-h |
30ba1dfe | 181 | |
229e1740 EZ |
182 | stamp-h: config.status $(srcdir)/config.h.in |
183 | CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status | |
184 | echo > $@ | |
30ba1dfe | 185 | |
975c2886 | 186 | # CYGNUS LOCAL: Never run autoconf. |
229e1740 EZ |
187 | #$(srcdir)/configure: $(srcdir)/configure.in Comment-me-out in distribution |
188 | # cd $(srcdir) && autoconf Comment-me-out in distribution | |
7da15eff | 189 | |
229e1740 EZ |
190 | documentation: force |
191 | -test -d doc || mkdir doc | |
192 | -( cd doc && $(MAKE) $(MFLAGS) ) | |
7da15eff | 193 | |
229e1740 EZ |
194 | examples: force |
195 | -test -d examples || mkdir examples | |
196 | -(cd examples && ${MAKE} ${MFLAGS} all ) | |
7da15eff RP |
197 | |
198 | force: | |
199 | ||
229e1740 EZ |
200 | install: installdirs $(STATIC_LIBS) |
201 | for f in ${INSTALLED_HEADERS}; do \ | |
202 | $(INSTALL_DATA) $(srcdir)/$$f $(includedir)/readline ; \ | |
203 | done | |
204 | -$(MV) $(libdir)/libreadline.a $(libdir)/libreadline.old | |
205 | $(INSTALL_DATA) libreadline.a $(libdir)/libreadline.a | |
206 | -test -n "$(RANLIB)" && $(RANLIB) -t $(libdir)/libreadline.a | |
207 | -$(MV) $(libdir)/libhistory.a $(libdir)/libhistory.old | |
208 | $(INSTALL_DATA) libhistory.a $(libdir)/libhistory.a | |
209 | -test -n "$(RANLIB)" && $(RANLIB) -t $(libdir)/libhistory.a | |
210 | -( if test -d doc ; then \ | |
211 | cd doc && \ | |
212 | ${MAKE} ${MFLAGS} infodir=$(infodir) $@; \ | |
213 | fi ) | |
214 | ||
215 | installdirs: $(srcdir)/support/mkdirs | |
216 | -$(SHELL) $(srcdir)/support/mkdirs $(includedir) \ | |
217 | $(includedir)/readline $(libdir) $(infodir) $(man3dir) | |
218 | ||
219 | uninstall: | |
220 | -test -n "$(includedir)" && cd $(includedir)/readline && \ | |
221 | ${RM} ${INSTALLED_HEADERS} | |
222 | -test -n "$(libdir)" && cd $(libdir) && \ | |
223 | ${RM} libreadline.a libreadline.old libhistory.a libhistory.old $(SHARED_LIBS) | |
224 | ||
225 | install-shared: installdirs shared | |
226 | -$(MV) $(libdir)/$(SHARED_HISTORY) $(libdir)/$(SHARED_HISTORY).old | |
227 | $(INSTALL_DATA) $(SHARED_HISTORY) $(libdir)/$(SHARED_HISTORY) | |
228 | -$(MV) $(libdir)/$(SHARED_READLINE) $(libdir)/$(SHARED_READLINE).old | |
229 | $(INSTALL_DATA) $(SHARED_READLINE) $(libdir)/$(SHARED_READLINE) | |
230 | ||
231 | uninstall-shared: | |
232 | -test -n "$(libdir)" && cd $(libdir) && ${RM} ${SHARED_LIBS} | |
233 | ||
234 | TAGS: force | |
235 | $(ETAGS) $(CSOURCES) $(HSOURCES) | |
236 | ||
237 | tags: force | |
238 | $(CTAGS) $(CSOURCES) $(HSOURCES) | |
239 | ||
240 | clean: force | |
241 | $(RM) $(OBJECTS) $(STATIC_LIBS) | |
242 | $(RM) $(SHARED_OBJ) $(SHARED_LIBS) | |
243 | -( cd doc && $(MAKE) $(MFLAGS) $@ ) | |
244 | -( cd examples && $(MAKE) $(MFLAGS) $@ ) | |
245 | ||
246 | mostlyclean: clean | |
247 | -( cd doc && $(MAKE) $(MFLAGS) $@ ) | |
248 | -( cd examples && $(MAKE) $(MFLAGS) $@ ) | |
249 | ||
250 | distclean maintainer-clean: clean | |
251 | -( cd doc && $(MAKE) $(MFLAGS) $@ ) | |
252 | -( cd examples && $(MAKE) $(MFLAGS) $@ ) | |
253 | $(RM) Makefile | |
254 | $(RM) $(CREATED_CONFIGURE) | |
255 | $(RM) $(CREATED_TAGS) | |
256 | ||
257 | info dvi: | |
258 | -( cd doc && $(MAKE) $(MFLAGS) $@ ) | |
259 | ||
260 | install-info: | |
261 | check: | |
262 | installcheck: | |
7da15eff | 263 | |
229e1740 EZ |
264 | dist: force |
265 | @echo Readline distributions are created using $(srcdir)/support/mkdist. | |
266 | @echo Here is a sample of the necessary commands: | |
267 | @echo bash $(srcdir)/support/mkdist -m $(srcdir)/MANIFEST -s $(srcdir) -r $(RL_LIBRARY_NAME)-$(RL_LIBRARY_VERSION) | |
268 | @echo tar cf $(RL_LIBRARY_NAME)-${RL_LIBRARY_VERSION}.tar ${RL_LIBRARY_NAME}-$(RL_LIBRARY_VERSION) | |
269 | @echo gzip $(RL_LIBRARY_NAME)-$(RL_LIBRARY_VERSION).tar | |
270 | ||
271 | # Tell versions [3.59,3.63) of GNU make not to export all variables. | |
272 | # Otherwise a system limit (for SysV at least) may be exceeded. | |
273 | .NOEXPORT: | |
274 | ||
275 | # Dependencies | |
276 | bind.o: ansi_stdlib.h posixstat.h | |
277 | bind.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
278 | bind.o: readline.h keymaps.h chardefs.h tilde.h | |
279 | bind.o: history.h | |
280 | callback.o: rlconf.h | |
281 | callback.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
282 | callback.o: readline.h keymaps.h chardefs.h tilde.h | |
283 | complete.o: ansi_stdlib.h posixdir.h posixstat.h | |
284 | complete.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
285 | complete.o: readline.h keymaps.h chardefs.h tilde.h | |
286 | display.o: ansi_stdlib.h posixstat.h | |
287 | display.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
288 | display.o: tcap.h | |
289 | display.o: readline.h keymaps.h chardefs.h tilde.h | |
290 | display.o: history.h | |
291 | funmap.o: readline.h keymaps.h chardefs.h tilde.h | |
292 | funmap.o: rlconf.h ansi_stdlib.h | |
293 | funmap.o: ${BUILD_DIR}/config.h | |
294 | histexpand.o: ansi_stdlib.h | |
295 | histexpand.o: history.h histlib.h | |
296 | histexpand.o: ${BUILD_DIR}/config.h | |
297 | histfile.o: ansi_stdlib.h | |
298 | histfile.o: history.h histlib.h | |
299 | histfile.o: ${BUILD_DIR}/config.h | |
300 | history.o: ansi_stdlib.h | |
301 | history.o: history.h histlib.h | |
302 | history.o: ${BUILD_DIR}/config.h | |
303 | histsearch.o: ansi_stdlib.h | |
304 | histsearch.o: history.h histlib.h | |
305 | histsearch.o: ${BUILD_DIR}/config.h | |
306 | input.o: ansi_stdlib.h | |
307 | input.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
308 | input.o: readline.h keymaps.h chardefs.h tilde.h | |
309 | isearch.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
310 | isearch.o: readline.h keymaps.h chardefs.h tilde.h | |
311 | isearch.o: ansi_stdlib.h history.h | |
312 | keymaps.o: emacs_keymap.c vi_keymap.c | |
313 | keymaps.o: keymaps.h chardefs.h rlconf.h ansi_stdlib.h | |
314 | keymaps.o: readline.h keymaps.h chardefs.h tilde.h | |
315 | keymaps.o: ${BUILD_DIR}/config.h | |
316 | kill.o: ansi_stdlib.h | |
317 | kill.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
318 | kill.o: readline.h keymaps.h chardefs.h tilde.h | |
319 | kill.o: history.h | |
320 | macro.o: ansi_stdlib.h | |
321 | macro.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
322 | macro.o: readline.h keymaps.h chardefs.h tilde.h | |
323 | macro.o: history.h | |
324 | nls.o: ansi_stdlib.h | |
325 | nls.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
326 | parens.o: rlconf.h | |
327 | parens.o: ${BUILD_DIR}/config.h | |
328 | parens.o: readline.h keymaps.h chardefs.h tilde.h | |
329 | readline.o: readline.h keymaps.h chardefs.h tilde.h | |
330 | readline.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
331 | readline.o: history.h | |
332 | readline.o: posixstat.h ansi_stdlib.h posixjmp.h | |
333 | rltty.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
334 | rltty.o: rltty.h | |
335 | rltty.o: readline.h keymaps.h chardefs.h tilde.h | |
336 | search.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
337 | search.o: readline.h keymaps.h chardefs.h tilde.h | |
338 | search.o: ansi_stdlib.h history.h | |
339 | shell.o: ${BUILD_DIR}/config.h | |
340 | shell.o: ansi_stdlib.h | |
341 | signals.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
342 | signals.o: readline.h keymaps.h chardefs.h tilde.h | |
343 | signals.o: history.h | |
344 | terminal.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
345 | terminal.o: tcap.h | |
346 | terminal.o: readline.h keymaps.h chardefs.h tilde.h | |
347 | terminal.o: history.h | |
348 | tilde.o: ansi_stdlib.h | |
349 | tilde.o: ${BUILD_DIR}/config.h | |
350 | tilde.o: tilde.h | |
351 | undo.o: ansi_stdlib.h | |
352 | undo.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
353 | undo.o: readline.h keymaps.h chardefs.h tilde.h | |
354 | undo.o: history.h | |
355 | util.o: posixjmp.h ansi_stdlib.h | |
356 | util.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
357 | util.o: readline.h keymaps.h chardefs.h tilde.h | |
358 | vi_mode.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
359 | vi_mode.o: readline.h keymaps.h chardefs.h tilde.h | |
360 | vi_mode.o: history.h ansi_stdlib.h | |
361 | xmalloc.o: ${BUILD_DIR}/config.h | |
362 | xmalloc.o: ansi_stdlib.h | |
363 | ||
364 | readline.o: $(srcdir)/readline.c | |
365 | vi_mode.o: $(srcdir)/vi_mode.c | |
366 | funmap.o: $(srcdir)/funmap.c | |
367 | keymaps.o: $(srcdir)/keymaps.c | |
368 | parens.o: $(srcdir)/parens.c | |
369 | search.o: $(srcdir)/search.c | |
370 | rltty.o: $(srcdir)/rltty.c | |
371 | complete.o: $(srcdir)/complete.c | |
372 | bind.o: $(srcdir)/bind.c | |
373 | isearch.o: $(srcdir)/isearch.c | |
374 | display.o: $(srcdir)/display.c | |
375 | signals.o: $(srcdir)/signals.c | |
376 | util.o: $(srcdir)/util.c | |
377 | kill.o: $(srcdir)/kill.c | |
378 | undo.o: $(srcdir)/undo.c | |
379 | macro.o: $(srcdir)/macro.c | |
380 | input.o: $(srcdir)/input.c | |
381 | callback.o: $(srcdir)/callback.c | |
382 | terminal.o: $(srcdir)/terminal.c | |
383 | nls.o: $(srcdir)/nls.c | |
384 | xmalloc.o: $(srcdir)/xmalloc.c | |
385 | history.o: $(srcdir)/history.c | |
386 | histexpand.o: $(srcdir)/histexpand.c | |
387 | histfile.o: $(srcdir)/histfile.c | |
388 | histsearch.o: $(srcdir)/histsearch.c | |
389 | shell.o: $(srcdir)/shell.c | |
390 | tilde.o: $(srcdir)/tilde.c | |
391 | ||
392 | bind.so: ansi_stdlib.h posixstat.h | |
393 | bind.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
394 | bind.so: readline.h keymaps.h chardefs.h tilde.h | |
395 | bind.so: history.h | |
396 | callback.so: rlconf.h | |
397 | callback.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
398 | callback.so: readline.h keymaps.h chardefs.h tilde.h | |
399 | complete.so: ansi_stdlib.h posixdir.h posixstat.h | |
400 | complete.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
401 | complete.so: readline.h keymaps.h chardefs.h tilde.h | |
402 | display.so: ansi_stdlib.h posixstat.h | |
403 | display.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
404 | display.so: tcap.h | |
405 | display.so: readline.h keymaps.h chardefs.h tilde.h | |
406 | display.so: history.h | |
407 | funmap.so: readline.h keymaps.h chardefs.h tilde.h | |
408 | funmap.so: rlconf.h ansi_stdlib.h | |
409 | funmap.so: ${BUILD_DIR}/config.h | |
410 | histexpand.so: ansi_stdlib.h | |
411 | histexpand.so: history.h histlib.h | |
412 | histexpand.so: ${BUILD_DIR}/config.h | |
413 | histfile.so: ansi_stdlib.h | |
414 | histfile.so: history.h histlib.h | |
415 | histfile.so: ${BUILD_DIR}/config.h | |
416 | history.so: ansi_stdlib.h | |
417 | history.so: history.h histlib.h | |
418 | history.so: ${BUILD_DIR}/config.h | |
419 | histsearch.so: ansi_stdlib.h | |
420 | histsearch.so: history.h histlib.h | |
421 | histsearch.so: ${BUILD_DIR}/config.h | |
422 | input.so: ansi_stdlib.h | |
423 | input.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
424 | input.so: readline.h keymaps.h chardefs.h tilde.h | |
425 | isearch.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
426 | isearch.so: readline.h keymaps.h chardefs.h tilde.h | |
427 | isearch.so: ansi_stdlib.h history.h | |
428 | keymaps.so: emacs_keymap.c vi_keymap.c | |
429 | keymaps.so: keymaps.h chardefs.h rlconf.h ansi_stdlib.h | |
430 | keymaps.so: readline.h keymaps.h chardefs.h tilde.h | |
431 | keymaps.so: ${BUILD_DIR}/config.h | |
432 | kill.so: ansi_stdlib.h | |
433 | kill.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
434 | kill.so: readline.h keymaps.h chardefs.h tilde.h | |
435 | kill.so: history.h | |
436 | macro.so: ansi_stdlib.h | |
437 | macro.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
438 | macro.so: readline.h keymaps.h chardefs.h tilde.h | |
439 | macro.so: history.h | |
440 | nls.so: ansi_stdlib.h | |
441 | nls.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
442 | parens.so: rlconf.h | |
443 | parens.so: ${BUILD_DIR}/config.h | |
444 | parens.so: readline.h keymaps.h chardefs.h tilde.h | |
445 | readline.so: readline.h keymaps.h chardefs.h tilde.h | |
446 | readline.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
447 | readline.so: history.h | |
448 | readline.so: posixstat.h ansi_stdlib.h posixjmp.h | |
449 | rltty.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
450 | rltty.so: rltty.h | |
451 | rltty.so: readline.h keymaps.h chardefs.h tilde.h | |
452 | search.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
453 | search.so: readline.h keymaps.h chardefs.h tilde.h | |
454 | search.so: ansi_stdlib.h history.h | |
455 | signals.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
456 | signals.so: readline.h keymaps.h chardefs.h tilde.h | |
457 | signals.so: history.h | |
458 | terminal.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
459 | terminal.so: tcap.h | |
460 | terminal.so: readline.h keymaps.h chardefs.h tilde.h | |
461 | terminal.so: history.h | |
462 | tilde.so: ansi_stdlib.h | |
463 | tilde.so: ${BUILD_DIR}/config.h | |
464 | tilde.so: tilde.h | |
465 | undo.so: ansi_stdlib.h | |
466 | undo.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
467 | undo.so: readline.h keymaps.h chardefs.h tilde.h | |
468 | undo.so: history.h | |
469 | util.so: posixjmp.h ansi_stdlib.h | |
470 | util.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
471 | util.so: readline.h keymaps.h chardefs.h tilde.h | |
472 | vi_mode.so: rldefs.h ${BUILD_DIR}/config.h rlconf.h | |
473 | vi_mode.so: readline.h keymaps.h chardefs.h tilde.h | |
474 | vi_mode.so: history.h ansi_stdlib.h | |
475 | xmalloc.so: ${BUILD_DIR}/config.h | |
476 | xmalloc.so: ansi_stdlib.h | |
477 | ||
478 | readline.o: readline.c | |
479 | vi_mode.o: vi_mode.c | |
480 | funmap.o: funmap.c | |
481 | keymaps.o: keymaps.c | |
482 | parens.o: parens.c | |
483 | search.o: search.c | |
484 | rltty.o: rltty.c | |
485 | complete.o: complete.c | |
486 | bind.o: bind.c | |
487 | isearch.o: isearch.c | |
488 | display.o: display.c | |
489 | signals.o: signals.c | |
490 | util.o: util.c | |
491 | kill.o: kill.c | |
492 | undo.o: undo.c | |
493 | macro.o: macro.c | |
494 | input.o: input.c | |
495 | callback.o: callback.c | |
496 | terminal.o: terminal.c | |
497 | nls.o: nls.c | |
498 | xmalloc.o: xmalloc.c | |
499 | history.o: history.c | |
500 | histexpand.o: histexpand.c | |
501 | histfile.o: histfile.c | |
502 | histsearch.o: histsearch.c | |
503 | shell.o: shell.c | |
504 | tilde.o: tilde.c | |
505 | ||
506 | readline.so: $(srcdir)/readline.c | |
507 | vi_mode.so: $(srcdir)/vi_mode.c | |
508 | funmap.so: $(srcdir)/funmap.c | |
509 | keymaps.so: $(srcdir)/keymaps.c | |
510 | parens.so: $(srcdir)/parens.c | |
511 | search.so: $(srcdir)/search.c | |
512 | rltty.so: $(srcdir)/rltty.c | |
513 | complete.so: $(srcdir)/complete.c | |
514 | bind.so: $(srcdir)/bind.c | |
515 | isearch.so: $(srcdir)/isearch.c | |
516 | display.so: $(srcdir)/display.c | |
517 | signals.so: $(srcdir)/signals.c | |
518 | util.so: $(srcdir)/util.c | |
519 | kill.so: $(srcdir)/kill.c | |
520 | undo.so: $(srcdir)/undo.c | |
521 | macro.so: $(srcdir)/macro.c | |
522 | input.so: $(srcdir)/input.c | |
523 | callback.so: $(srcdir)/callback.c | |
524 | terminal.so: $(srcdir)/terminal.c | |
525 | nls.so: $(srcdir)/nls.c | |
526 | xmalloc.so: $(srcdir)/xmalloc.c | |
527 | history.so: $(srcdir)/history.c | |
528 | histexpand.so: $(srcdir)/histexpand.c | |
529 | histfile.so: $(srcdir)/histfile.c | |
530 | histsearch.so: $(srcdir)/histsearch.c | |
531 | shell.so: $(srcdir)/shell.c | |
532 | tilde.so: $(srcdir)/tilde.c | |
533 | ||
534 | readline.so: readline.c | |
535 | vi_mode.so: vi_mode.c | |
536 | funmap.so: funmap.c | |
537 | keymaps.so: keymaps.c | |
538 | parens.so: parens.c | |
539 | search.so: search.c | |
540 | rltty.so: rltty.c | |
541 | complete.so: complete.c | |
542 | bind.so: bind.c | |
543 | isearch.so: isearch.c | |
544 | display.so: display.c | |
545 | signals.so: signals.c | |
546 | util.so: util.c | |
547 | kill.so: kill.c | |
548 | undo.so: undo.c | |
549 | macro.so: macro.c | |
550 | input.so: input.c | |
551 | callback.so: callback.c | |
552 | terminal.so: terminal.c | |
553 | nls.so: nls.c | |
554 | xmalloc.so: xmalloc.c | |
555 | history.so: history.c | |
556 | histexpand.so: histexpand.c | |
557 | histfile.so: histfile.c | |
558 | histsearch.so: histsearch.c | |
559 | shell.so: shell.c | |
560 | tilde.so: tilde.c |