OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gdb/] [gdb-6.8/] [readline/] [shlib/] [Makefile.in] - Blame information for rev 26

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 26 jlechner
## -*- text -*- ##
2
# Makefile for the GNU readline library shared library support.
3
#
4
# Copyright (C) 1998-2003 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
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
19
 
20
PACKAGE = @PACKAGE_NAME@
21
VERSION = @PACKAGE_VERSION@
22
 
23
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
24
PACKAGE_NAME = @PACKAGE_NAME@
25
PACKAGE_STRING = @PACKAGE_STRING@
26
PACKAGE_VERSION = @PACKAGE_VERSION@
27
 
28
RL_LIBRARY_VERSION = @LIBVERSION@
29
RL_LIBRARY_NAME = readline
30
 
31
srcdir = @srcdir@
32
VPATH = .:@top_srcdir@
33
topdir = @top_srcdir@
34
BUILD_DIR = @BUILD_DIR@
35
 
36
INSTALL = @INSTALL@
37
INSTALL_PROGRAM = @INSTALL_PROGRAM@
38
INSTALL_DATA = @INSTALL_DATA@
39
 
40
CC = @CC@
41
RANLIB = @RANLIB@
42
AR = @AR@
43
ARFLAGS = @ARFLAGS@
44
RM = rm -f
45
CP = cp
46
MV = mv
47
LN = ln
48
 
49
SHELL = @MAKE_SHELL@
50
 
51
host_os = @host_os@
52
 
53
prefix = @prefix@
54
exec_prefix = @exec_prefix@
55
includedir = @includedir@
56
bindir = @bindir@
57
libdir = @libdir@
58
datadir = @datadir@
59
localedir = $(datadir)/locale
60
 
61
# Support an alternate destination root directory for package building
62
DESTDIR =
63
 
64
CFLAGS = @CFLAGS@
65
LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'
66
CPPFLAGS = @CPPFLAGS@
67
LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@ @CFLAGS@
68
 
69
DEFS = @DEFS@ @CROSS_COMPILE@
70
LOCAL_DEFS = @LOCAL_DEFS@
71
 
72
#
73
# These values are generated for configure by ${topdir}/support/shobj-conf.
74
# If your system is not supported by that script, but includes facilities for
75
# dynamic loading of shared objects, please update the script and send the
76
# changes to bash-maintainers@gnu.org.
77
#
78
SHOBJ_CC = @SHOBJ_CC@
79
SHOBJ_CFLAGS = @SHOBJ_CFLAGS@
80
SHOBJ_LD = @SHOBJ_LD@
81
 
82
SHOBJ_LDFLAGS = @SHOBJ_LDFLAGS@
83
SHOBJ_XLDFLAGS = @SHOBJ_XLDFLAGS@
84
SHOBJ_LIBS = @SHOBJ_LIBS@
85
 
86
SHLIB_XLDFLAGS = @LDFLAGS@ @SHLIB_XLDFLAGS@
87
SHLIB_LIBS = @SHLIB_LIBS@
88
 
89
SHLIB_DOT = @SHLIB_DOT@
90
SHLIB_LIBPREF = @SHLIB_LIBPREF@
91
SHLIB_LIBSUFF = @SHLIB_LIBSUFF@
92
 
93
SHLIB_LIBVERSION = @SHLIB_LIBVERSION@
94
SHLIB_DLLVERSION = @SHLIB_DLLVERSION@
95
 
96
SHLIB_STATUS = @SHLIB_STATUS@
97
 
98
TERMCAP_LIB = @TERMCAP_LIB@
99
 
100
# shared library versioning
101
SHLIB_MAJOR=            @SHLIB_MAJOR@
102
# shared library systems like SVR4's do not use minor versions
103
SHLIB_MINOR=            .@SHLIB_MINOR@
104
 
105
# For libraries which include headers from other libraries.
106
INCLUDES = -I. -I.. -I$(topdir)
107
 
108
CCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES) $(LOCAL_CFLAGS) $(CFLAGS)
109
 
110
.SUFFIXES:      .so
111
 
112
.c.so:
113
        ${RM} $@
114
        $(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_CFLAGS) -o $*.o $<
115
        $(MV) $*.o $@
116
 
117
# The name of the main library target.
118
 
119
SHARED_READLINE = $(SHLIB_LIBPREF)readline$(SHLIB_DOT)$(SHLIB_LIBVERSION)
120
SHARED_HISTORY = $(SHLIB_LIBPREF)history$(SHLIB_DOT)$(SHLIB_LIBVERSION)
121
SHARED_LIBS = $(SHARED_READLINE) $(SHARED_HISTORY)
122
 
123
WCWIDTH_OBJ = @WCWIDTH_OBJ@
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 \
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 $(topdir)/support/wcwidth.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 $(SHARED_HISTOBJ) $(SHARED_TILDEOBJ) \
151
          compat.so $(WCWIDTH_OBJ)
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
172
        $(RM) $@
173
        $(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_HISTOBJ) xmalloc.so $(SHLIB_LIBS)
174
 
175
wcwidth.o: $(srcdir)/support/wcwidth.c
176
        $(RM) $@
177
        $(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_FLAGS) $(srcdir)/support/wcwidth.c
178
 
179
# Since tilde.c is shared between readline and bash, make sure we compile
180
# it with the right flags when it's built as part of readline
181
tilde.so:        tilde.c
182
        ${RM} $@
183
        $(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_CFLAGS) -DREADLINE_LIBRARY -c -o tilde.o $(topdir)/tilde.c
184
        $(MV) tilde.o $@
185
 
186
installdirs: $(topdir)/support/mkdirs
187
        -$(SHELL) $(topdir)/support/mkdirs $(DESTDIR)$(libdir)
188
 
189
install: installdirs $(SHLIB_STATUS)
190
        $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -i "$(INSTALL_DATA)" $(SHARED_HISTORY)
191
        $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -i "$(INSTALL_DATA)" $(SHARED_READLINE)
192
        @echo install: you may need to run ldconfig
193
 
194
uninstall:
195
        $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -U $(SHARED_HISTORY)
196
        $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -U $(SHARED_READLINE)
197
        @echo uninstall: you may need to run ldconfig
198
 
199
clean mostlyclean:      force
200
        $(RM) $(SHARED_OBJ) $(SHARED_LIBS)
201
 
202
distclean maintainer-clean: clean
203
        $(RM) Makefile
204
 
205
force:
206
 
207
# Tell versions [3.59,3.63) of GNU make not to export all variables.
208
# Otherwise a system limit (for SysV at least) may be exceeded.
209
.NOEXPORT:
210
 
211
# Dependencies
212
bind.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.h
213
bind.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
214
bind.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
215
bind.so: $(topdir)/rltypedefs.h
216
bind.so: $(topdir)/tilde.h $(topdir)/history.h
217
compat.so: $(topdir)/rlstdc.h
218
callback.so: $(topdir)/rlconf.h
219
callback.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h
220
callback.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
221
callback.so: $(topdir)/rltypedefs.h
222
callback.so: $(topdir)/tilde.h
223
complete.so: $(topdir)/ansi_stdlib.h posixdir.h $(topdir)/posixstat.h
224
complete.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
225
complete.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
226
complete.so: $(topdir)/rltypedefs.h
227
complete.so: $(topdir)/tilde.h
228
display.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.h
229
display.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
230
display.so: $(topdir)/tcap.h
231
display.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
232
display.so: $(topdir)/rltypedefs.h
233
display.so: $(topdir)/tilde.h $(topdir)/history.h
234
funmap.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
235
funmap.so: $(topdir)/rltypedefs.h
236
funmap.so: $(topdir)/rlconf.h $(topdir)/ansi_stdlib.h
237
funmap.so: ${BUILD_DIR}/config.h $(topdir)/tilde.h
238
histexpand.so: $(topdir)/ansi_stdlib.h
239
histexpand.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
240
histexpand.so: ${BUILD_DIR}/config.h
241
histfile.so: $(topdir)/ansi_stdlib.h
242
histfile.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
243
histfile.so: ${BUILD_DIR}/config.h
244
history.so: $(topdir)/ansi_stdlib.h
245
history.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
246
history.so: ${BUILD_DIR}/config.h
247
histsearch.so: $(topdir)/ansi_stdlib.h
248
histsearch.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
249
histsearch.so: ${BUILD_DIR}/config.h
250
input.so: $(topdir)/ansi_stdlib.h
251
input.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
252
input.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
253
input.so: $(topdir)/rltypedefs.h
254
input.so: $(topdir)/tilde.h
255
isearch.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
256
isearch.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
257
isearch.so: $(topdir)/rltypedefs.h
258
isearch.so: $(topdir)/ansi_stdlib.h $(topdir)/history.h $(topdir)/tilde.h
259
keymaps.so: emacs_keymap.c vi_keymap.c
260
keymaps.so: $(topdir)/keymaps.h $(topdir)/chardefs.h $(topdir)/rlconf.h
261
keymaps.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
262
keymaps.so: $(topdir)/rltypedefs.h
263
keymaps.so: ${BUILD_DIR}/config.h $(topdir)/ansi_stdlib.h $(topdir)/tilde.h
264
kill.so: $(topdir)/ansi_stdlib.h
265
kill.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
266
kill.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
267
kill.so: $(topdir)/tilde.h $(topdir)/history.h  $(topdir)/rltypedefs.h
268
macro.so: $(topdir)/ansi_stdlib.h
269
macro.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
270
macro.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
271
macro.so: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rltypedefs.h
272
mbutil.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
273
mbutil.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/rltypedefs.h
274
mbutil.so: $(topdir)/chardefs.h $(topdir)/rlstdc.h
275
misc.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
276
misc.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
277
misc.so: $(topdir)/rltypedefs.h
278
misc.so: $(topdir)/history.h $(topdir)/tilde.h $(topdir)/ansi_stdlib.h
279
nls.so: $(topdir)/ansi_stdlib.h
280
nls.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
281
nls.o: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
282
nls.o: $(topdir)/rltypedefs.h
283
nls.o: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rlstdc.h
284
parens.so: $(topdir)/rlconf.h ${BUILD_DIR}/config.h
285
parens.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
286
parens.so: $(topdir)/rltypedefs.h
287
parens.so: $(topdir)/tilde.h
288
rltty.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
289
rltty.so: $(topdir)/rltty.h $(topdir)/tilde.h
290
rltty.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
291
rltty.so: $(topdir)/rltypedefs.h
292
search.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
293
search.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
294
search.so: $(topdir)/ansi_stdlib.h $(topdir)/history.h $(topdir)/tilde.h
295
search.so: $(topdir)/rltypedefs.h
296
signals.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
297
signals.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
298
signals.so: $(topdir)/history.h $(topdir)/tilde.h
299
signals.so: $(topdir)/rltypedefs.h
300
terminal.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
301
terminal.so: $(topdir)/tcap.h
302
terminal.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
303
terminal.so: $(topdir)/tilde.h $(topdir)/history.h
304
terminal.so: $(topdir)/rltypedefs.h
305
text.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
306
text.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
307
text.so: $(topdir)/rltypedefs.h
308
text.so: $(topdir)/history.h $(topdir)/tilde.h $(topdir)/ansi_stdlib.h
309
tilde.so: $(topdir)/ansi_stdlib.h ${BUILD_DIR}/config.h $(topdir)/tilde.h
310
undo.so: $(topdir)/ansi_stdlib.h
311
undo.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
312
undo.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
313
undo.so: $(topdir)/rltypedefs.h
314
undo.so: $(topdir)/tilde.h $(topdir)/history.h
315
util.so: $(topdir)/posixjmp.h $(topdir)/ansi_stdlib.h
316
util.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
317
util.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
318
util.so: $(topdir)/rltypedefs.h $(topdir)/tilde.h
319
vi_mode.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
320
vi_mode.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
321
vi_mode.so: $(topdir)/history.h $(topdir)/ansi_stdlib.h $(topdir)/tilde.h
322
vi_mode.so: $(topdir)/rltypedefs.h
323
xmalloc.so: ${BUILD_DIR}/config.h
324
xmalloc.so: $(topdir)/ansi_stdlib.h
325
 
326
bind.so: $(topdir)/rlshell.h
327
histfile.so: $(topdir)/rlshell.h
328
nls.so: $(topdir)/rlshell.h
329
readline.so: $(topdir)/rlshell.h
330
shell.so: $(topdir)/rlshell.h
331
terminal.so: $(topdir)/rlshell.h
332
histexpand.so: $(topdir)/rlshell.h
333
 
334
bind.so: $(topdir)/rlprivate.h
335
callback.so: $(topdir)/rlprivate.h
336
complete.so: $(topdir)/rlprivate.h
337
display.so: $(topdir)/rlprivate.h
338
input.so: $(topdir)/rlprivate.h
339
isearch.so: $(topdir)/rlprivate.h
340
kill.so: $(topdir)/rlprivate.h
341
macro.so: $(topdir)/rlprivate.h
342
mbutil.so: $(topdir)/rlprivate.h
343
misc.so: $(topdir)/rlprivate.h
344
nls.so: $(topdir)/rlprivate.h
345
parens.so: $(topdir)/rlprivate.h
346
readline.so: $(topdir)/rlprivate.h
347
rltty.so: $(topdir)/rlprivate.h
348
search.so: $(topdir)/rlprivate.h
349
signals.so: $(topdir)/rlprivate.h
350
terminal.so: $(topdir)/rlprivate.h
351
text.so: $(topdir)/rlprivate.h
352
undo.so: $(topdir)/rlprivate.h
353
util.so: $(topdir)/rlprivate.h
354
vi_mode.so: $(topdir)/rlprivate.h
355
 
356
bind.so: $(topdir)/xmalloc.h
357
complete.so: $(topdir)/xmalloc.h
358
display.so: $(topdir)/xmalloc.h
359
funmap.so: $(topdir)/xmalloc.h
360
histexpand.so: $(topdir)/xmalloc.h
361
histfile.so: $(topdir)/xmalloc.h
362
history.so: $(topdir)/xmalloc.h
363
input.so: $(topdir)/xmalloc.h
364
isearch.so: $(topdir)/xmalloc.h
365
keymaps.so: $(topdir)/xmalloc.h
366
kill.so: $(topdir)/xmalloc.h
367
macro.so: $(topdir)/xmalloc.h
368
mbutil.so: $(topdir)/xmalloc.h
369
misc.so: $(topdir)/xmalloc.h
370
readline.so: $(topdir)/xmalloc.h
371
savestring.so: $(topdir)/xmalloc.h
372
search.so: $(topdir)/xmalloc.h
373
shell.so: $(topdir)/xmalloc.h
374
terminal.so: $(topdir)/xmalloc.h
375
text.so: $(topdir)/xmalloc.h
376
tilde.so: $(topdir)/xmalloc.h
377
undo.so: $(topdir)/xmalloc.h
378
util.so: $(topdir)/xmalloc.h
379
vi_mode.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
xmalloc.so: $(topdir)/xmalloc.c
422
 
423
histexpand.so: $(topdir)/histexpand.c
424
histfile.so: $(topdir)/histfile.c
425
history.so: $(topdir)/history.c
426
histsearch.so: $(topdir)/histsearch.c
427
 
428
bind.so: bind.c
429
callback.so: callback.c
430
comapt.so: compat.c
431
complete.so: complete.c
432
display.so: display.c
433
funmap.so: funmap.c
434
input.so: input.c
435
isearch.so: isearch.c
436
keymaps.so: keymaps.c emacs_keymap.c vi_keymap.c
437
kill.so: kill.c
438
macro.so: macro.c
439
mbutil.so: mbutil.c
440
misc.so: misc.c
441
nls.so: nls.c
442
parens.so: parens.c
443
readline.so: readline.c
444
rltty.so: rltty.c
445
savestring.so: savestring.c
446
search.so: search.c
447
signals.so: signals.c
448
shell.so: shell.c
449
terminal.so: terminal.c
450
text.so: text.c
451
tilde.so: tilde.c
452
undo.so: undo.c
453
util.so: util.c
454
vi_mode.so: vi_mode.c
455
xmalloc.so: xmalloc.c
456
 
457
histexpand.so: histexpand.c
458
histfile.so: histfile.c
459
history.so: history.c
460
histsearch.so: histsearch.c

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.