annotate src/Makefile.in.in @ 265:8efd647ea9ca r20-5b31

Import from CVS: tag r20-5b31
author cvs
date Mon, 13 Aug 2007 10:25:37 +0200
parents 727739f917cb
children 966663fcf606
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
1 ## Makefile for src subdirectory in XEmacs.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
2 ## Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
3 ## Copyright (C) 1994, 1995 Board of Trustees, University of Illinois
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
4 ## Copyright (C) 1996, 1997 Sun Microsystems, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
6 ## This file is part of XEmacs.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
8 ## XEmacs is free software; you can redistribute it and/or modify it
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
9 ## under the terms of the GNU General Public License as published by the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
10 ## Free Software Foundation; either version 2, or (at your option) any
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
11 ## later version.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
13 ## XEmacs is distributed in the hope that it will be useful, but WITHOUT
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
14 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
15 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
16 ## for more details.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
18 ## You should have received a copy of the GNU General Public License
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
19 ## along with XEmacs; see the file COPYING. If not, write to
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
20 ## the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
21 ## Boston, MA 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
23 ## Synched up with: Not synched with FSF.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
25 all: xemacs
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
26 .PHONY : all release dump-elc dump-elcs all-elc all-elcs lint
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
28 ## For performance and consistency, no built-in rules.
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
29 .SUFFIXES:
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 231
diff changeset
30 .SUFFIXES: .c .cc .o .i .h .dep
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
32 @SET_MAKE@
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
33 SHELL=/bin/sh
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
34 RM = rm -f
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
35
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
36 lispdir = ${srcdir}/../lisp/
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
37 libsrc = ../lib-src/
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
38 etcdir = ../etc/
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
39
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
40 ## Here are the things that we expect ../configure to edit.
203
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 199
diff changeset
41 prefix=@prefix@
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 srcdir=@srcdir@
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
43 blddir=@blddir@
203
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 199
diff changeset
44 version=@version@
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 199
diff changeset
45 infodir=@infodir@
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 199
diff changeset
46 infopath=@infopath@
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 CC=@CC@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 CPP=@CPP@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 CFLAGS=@CFLAGS@
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
50 CPPFLAGS=@CPPFLAGS@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
51 LDFLAGS=@LDFLAGS@
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
52 RECURSIVE_MAKE=@RECURSIVE_MAKE@
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
53
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
54 c_switch_general=@c_switch_general@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
55 c_switch_window_system=@c_switch_window_system@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
56 c_switch_all=@c_switch_all@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
57 ld_switch_general=@ld_switch_general@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
58 ld_switch_window_system=@ld_switch_window_system@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
59 ld_switch_all=@ld_switch_all@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
60 ld_libs_general=@ld_libs_general@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
61 ld_libs_window_system=@ld_libs_window_system@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
62 ld_libs_all=@ld_libs_all@
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
63 ld_dynamic_link_flags=@ld_dynamic_link_flags@
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
64
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
65 extra_objs=@extra_objs@
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 LN_S=@LN_S@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
68 ld_switch_shared=@ld_switch_shared@
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
69 start_files=@start_files@
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
70 start_flags=@start_flags@
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
71 LD=@ld@
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
72 lib_gcc=@lib_gcc@
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
73
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #define NOT_C_CODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 #include "config.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
77 ## With the traditional VPATH setting, it is not possible to
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
78 ## simultaneously compile in-place and in another directory. The
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
79 ## mistaken definition is that *all* dependencies are searched for in
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
80 ## the VPATH directory, rather than just the dependencies that are not
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
81 ## themselves targets. Thus, if there is an up-to-date .o file in the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
82 ## in-place location, it will not get recompiled in the not-in-place
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
83 ## location.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
85 ## The GNU Make "vpath" directive continues this tradition, but at
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
86 ## least lets you restrict the classes of files that it applies to.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
87 ## This allows us to kludge around the problem.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
88
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 #ifdef USE_GNU_MAKE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 vpath %.c @srcdir@
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 231
diff changeset
91 vpath %.cc @srcdir@
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 vpath %.h @srcdir@
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
93 ## now list files that should NOT be searched in the srcdir.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
94 ## This includes any .c or .h built from something else
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
95 ## (e.g. a .in file).
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 vpath config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 vpath paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 vpath Emacs.ad.h
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
99 vpath puresize-adjust.h
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
100 vpath sheap-adjust.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 VPATH=@srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
105 RM = rm -f
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 #ifdef HAVE_NATIVE_SOUND
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
108 sound_cflags=@sound_cflags@
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
111 LWLIB_SRCDIR = ${srcdir}/../lwlib
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
112
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
113 #ifdef HAVE_X_WINDOWS
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
114 lwlib_libs = ../lwlib/liblw.a
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
115 lwlib_deps = $(lwlib_libs)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
116 $(lwlib_libs) :
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
117 cd ../lwlib && $(RECURSIVE_MAKE)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
119 ## a separate offix lib which merges with non-Xt event systems (TkStep, XEmacs)
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
120 OFFIX_O = @OFFIX_O@
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
121
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
122 x_objs=balloon_help.o balloon-x.o console-x.o device-x.o event-Xt.o frame-x.o\
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
123 glyphs-x.o objects-x.o redisplay-x.o xgccache.o xselect.o imgproc.o
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
124
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
125 #ifdef AIX4
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
126 LIBI18N = -li18n
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
127 #endif /* AIX4 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
128
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
129 X11_libs= $(LIBX11_LIBS) $(libx11_intl) $(LIBI18N)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
130 #endif /* HAVE_X_WINDOWS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
132 #ifdef HEAP_IN_DATA
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
133 sheap_obj=sheap.o
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
134 #endif
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
135
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
136 ## -Demacs is needed to make some files produce the correct version
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
137 ## for use in Emacs.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
139 cppflags = $(CPPFLAGS) -Demacs -I. $(c_switch_all)
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
140 cflags = $(CFLAGS) $(cppflags)
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
141 ldflags = $(ld_switch_all) $(ld_dynamic_link_flags)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 185
diff changeset
143 #ifdef SOLARIS2
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 185
diff changeset
144 %.o : %.c
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 185
diff changeset
145 #else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 .c.o:
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 185
diff changeset
147 #endif
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
148 $(CC) -c $(cflags) $<
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 231
diff changeset
150 #ifdef SOLARIS2
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 231
diff changeset
151 %.o : %.cc
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 231
diff changeset
152 #else
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 231
diff changeset
153 .cc.o:
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 231
diff changeset
154 #endif
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 231
diff changeset
155 $(CC) -c $(cflags) $<
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 231
diff changeset
156
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
157 ## Create preprocessor output (debugging purposes only)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
158 .c.i:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
159 $(CC) -P $(cppflags) $<
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
161 ## Create RTL files
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
162 %.c.rtl : %.c
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
163 $(CC) -dr -c $(cflags) $<
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
164
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
165 ## lastfile must follow all files whose initialized data areas should
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
166 ## be dumped as pure by dump-emacs.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
168 ## NOTE: The last line cannot be all macros, because make will barf
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
169 ## if they all come out null.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
171 objs=\
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
172 abbrev.o alloc.o blocktype.o buffer.o bytecode.o\
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
173 callint.o callproc.o casefiddle.o casetab.o chartab.o\
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
174 cmdloop.o cmds.o console.o console-stream.o\
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
175 data.o device.o dired.o doc.o doprnt.o dynarr.o\
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
176 editfns.o elhash.o emacs.o\
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
177 eval.o events.o $(extra_objs)\
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
178 event-stream.o extents.o faces.o\
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
179 fileio.o $(LOCK_OBJ) filemode.o floatfns.o fns.o font-lock.o\
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
180 frame.o general.o getloadavg.o glyphs.o\
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
181 $(gui_objs) hash.o indent.o insdel.o intl.o\
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
182 keymap.o $(RTC_patch_objs) line-number.o lread.o lstream.o\
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
183 macros.o marker.o md5.o minibuf.o objects.o opaque.o\
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
184 print.o process.o profile.o pure.o\
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
185 rangetab.o redisplay.o redisplay-output.o regex.o\
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
186 search.o $(sheap_obj) signal.o sound.o\
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
187 specifier.o strftime.o symbols.o syntax.o sysdep.o\
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
188 undo.o $(x_objs) widget.o window.o
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
190 obj_rtl = $(objs:.o=.c.rtl)
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
191
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 #ifdef REL_ALLOC
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
193 rallocdocsrc = ralloc.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 rallocobjs = ralloc.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
197 malloclib =
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 #ifndef SYSTEM_MALLOC
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
199 # ifdef GNU_MALLOC /* GNU malloc */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 # ifdef ERROR_CHECK_MALLOC
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
201 #ifdef DOUG_LEA_MALLOC
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
202 mallocobjs = free-hook.o vm-limit.o
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
203 #else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 mallocobjs = gmalloc.o free-hook.o vm-limit.o
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
205 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 mallocdocsrc = free-hook.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
207 # else /* New GNU malloc, sans error checking */
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
208 #ifdef DOUG_LEA_MALLOC
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
209 mallocobjs = vm-limit.o
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
210 #else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 mallocobjs = gmalloc.o vm-limit.o
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
212 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 mallocdocsrc =
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
214 # endif /* ERROR_CHECK_MALLOC */
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
215 # else /* Older GNU malloc */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 mallocobjs = malloc.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 mallocdocsrc =
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
218 # endif /* Older GNU malloc */
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
219 #else /* SYSTEM_MALLOC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 mallocobjs =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 mallocdocsrc =
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
222 #ifdef USE_DEBUG_MALLOC
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
223 malloclib = -ldmalloc
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
224 #endif /* USE_DEBUG_MALLOC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 #endif /* SYSTEM_MALLOC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 # ifdef EXTERNAL_WIDGET
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
230 external_widget_objs = ExternalShell.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
232 ## Now we try to figure out how to link a shared library.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
233 ## If we cannot figure it out, leave EXTW_LINK undefined and a shared
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
234 ## library will not be created.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 # ifdef USE_GCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 # ifdef USG5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 # define EXTW_LINK(objs, output) $(CC) -shared objs -Xlinker -z -Xlinker text -o output
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
239 ## I cannot figure out how to do shared a.out libraries, so just punt.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 # elif !defined (LINUX) || defined (__ELF__)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 # define EXTW_LINK(objs, output) $(CC) -shared objs -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 # elif defined (USG5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 # if defined (IRIX)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 # define EXTW_LINK(objs, output) $(LD) -shared -g -check_registry ${TOOLROOT}/usr/lib/so_locations objs -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 # else /* not IRIX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 # define EXTW_LINK(objs, output) $(CC) -G objs -z text -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 # endif /* not IRIX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 # else /* not USG5 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 # if defined (DEC_ALPHA) && defined (OSF1)
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
251 # define EXTW_LINK(objs, output) $(LD) $(ldflags) $(ld_switch_shared) -d objs -o output $(LIBES)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 # else /* !(DEC_ALPHA && OSF1) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 # define EXTW_LINK(objs, output) $(LD) -dc objs -assert pure-text -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 # endif /* !(DEC_ALPHA && OSF1) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 # endif /* not USG5 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 # ifdef LWLIB_USES_MOTIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 # ifdef EXTW_LINK
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
259 motif_other_files = libextcli_Xm.a libextcli_Xm.so.1
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 # else
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
261 motif_other_files = libextcli_Xm.a
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 # endif
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
263 #endif /* LWLIB_USES_MOTIF */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 # ifdef EXTW_LINK
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
266 shared_other_files = libextcli_Xt.so.1 libextcli_Xlib.so.1
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 # endif
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
268 other_files=\
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
269 ${motif_other_files}\
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
270 libextcli_Xt.a libextcli_Xlib.a\
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
271 ${shared_other_files}
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
272
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
273 all: ${other_files}
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
274 # endif /* EXTERNAL_WIDGET */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275
225
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
276 X11_objs = $(OFFIX_O) EmacsFrame.o EmacsShell.o TopLevelEmacsShell.o TransientEmacsShell.o EmacsManager.o $(external_widget_objs)
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
277 #endif /* HAVE_X_WINDOWS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
279 ## define otherobjs as list of object files that make-docfile
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
280 ## should not be told about.
151
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
281 otherobjs = $(BTL_objs) lastfile.o $(mallocobjs) $(rallocobjs) $(X11_objs)
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
282 otherrtls = $(otherobjs:.o=.c.rtl)
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
283 othersrcs = $(otherobjs:.o=.c)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
285 LIBES = $(lwlib_libs) $(quantify_libs) $(malloclib) $(ld_libs_all) $(lib_gcc)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 #ifdef I18N3
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
288 mo_dir = ${etcdir}
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
289 mo_file = ${mo_dir}emacs.mo
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
292 LOADPATH = EMACSLOADPATH="${lispdir}:${blddir}"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 DUMPENV = $(LOADPATH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
295 release: temacs ${libsrc}DOC $(mo_file) ${other_files}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 #ifdef CANNOT_DUMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 ln temacs xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 #ifdef HAVE_SHM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 -if [ -w ${srcdir}/../lisp ]; then \
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
301 w=`pwd`; cd ${srcdir} && $${w}/temacs -nl -batch -l inc-vers; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 else true; fi
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
303 @touch SATISFIED
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
304 -$(DUMPENV) ./temacs -nl -batch -l loadup.el dump
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
305 @if test ! -f SATISFIED; then $(RECURSIVE_MAKE) $@; fi
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
306 @$(RM) SATISFIED
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 #else /* ! defined (HAVE_SHM) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 -if [ -w ${srcdir}/../lisp ]; then \
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
309 w=`pwd`; cd ${srcdir} && $${w}/temacs -batch -l inc-vers; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 else true; fi
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
311 @touch SATISFIED
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
312 -$(DUMPENV) ./temacs -batch -l loadup.el dump
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
313 @if test ! -f SATISFIED; then $(RECURSIVE_MAKE) $@; fi
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
314 @$(RM) SATISFIED
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 #endif /* ! defined (HAVE_SHM) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 touch release
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 #endif /* ! defined (CANNOT_DUMP) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
319 xemacs: temacs ${libsrc}DOC $(mo_file) ${other_files} update-elc.stamp
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
320 @$(RM) $@ && touch SATISFIED
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
321 -$(DUMPENV) ./temacs -batch -l loadup.el dump
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 185
diff changeset
322 @if test -f $@; then if test -f SATISFIED; then \
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 203
diff changeset
323 ./xemacs -batch -vanilla -f list-load-path-shadows; fi; \
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 185
diff changeset
324 $(RM) SATISFIED; exit 0; fi; \
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
325 if test -f SATISFIED; then $(RM) SATISFIED; exit 1; fi; \
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
326 $(RECURSIVE_MAKE) $@;
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
327
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
328 FRC.update-elc.stamp :
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
329
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 211
diff changeset
330 update-elc.stamp : temacs FRC.update-elc.stamp
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
331 @touch NOBYTECOMPILE
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
332 ${DUMPENV} ./temacs -batch -l update-elc.el
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
333 @if test ! -f $@ -o -f NOBYTECOMPILE; then touch $@; fi; \
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
334 $(RM) NOBYTECOMPILE
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 obj_src = $(objs:.o=.c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
338 dortl : $(obj_rtl) $(otherrtls)
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
339 echo "(defvar source-files '(" > ${srcdir}/../lisp/source-files.el
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
340 (for a in $(obj_src) $(othersrcs);do \
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
341 echo -n "\""$$a"\"" >> ${srcdir}/../lisp/source-files.el ;\
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
342 done)
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
343 echo "))" >> ${srcdir}/../lisp/source-files.el
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
344
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
345 #ifdef DYNODUMP
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
346 dynodump_deps = ../dynodump/dynodump.so
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
347 ../dynodump/dynodump.so:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
348 cd ../dynodump && $(RECURSIVE_MAKE)
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
349 #endif /* DYNODUMP */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
351 ${libsrc}DOC: temacs update-elc.stamp
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
352 $(RM) ${libsrc}DOC; \
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
353 ${DUMPENV} ./temacs -batch -l make-docfile.el -- \
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
354 -o ${libsrc}DOC -d ${srcdir} -i ${libsrc}../site-packages \
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
355 ${obj_src} ${mallocdocsrc} ${rallocdocsrc}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 dump_elcs: dump-elcs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 dump-elcs: temacs
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
360 -${DUMPENV} ./temacs -batch -l update-elc.el
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
362 all-elc all-elcs:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
363 cd .. && $(RECURSIVE_MAKE) all-elc
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
364
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
365 #ifdef I18N3
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
366
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
367 # if defined(SPARC) && !defined(USG)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
368 xgettext= /usr/openwin/bin/xgettext
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
369 xgettext_args= -o emacs -m_X messages
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
370 msgfmt= /usr/openwin/bin/msgfmt
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
371 # else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
372 xgettext= xgettext
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
373 xgettext_args= -s -d emacs -M_X messages
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
374 msgfmt= msgfmt
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
375 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
376
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
377 ${mo_dir}emacs.po: ${libsrc}make-msgfile ${libsrc}make-po ${objs}
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
378 ${libsrc}make-msgfile -o ${libsrc}messages ${objs}
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
379 cd ${libsrc} && ${xgettext} ${xgettext_args}
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
380 $(RM) ${mo_dir}emacs.po
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
381 cd ${libsrc} && ${libsrc}make-po -a ${mo_dir}emacs.po DOC
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
382
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
383 ${mo_dir}emacs.mo: ${mo_dir}emacs.po
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
384 cd ${mo_dir} && ${msgfmt} -o emacs.mo emacs.po
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
385
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
386 ${libsrc}make-msgfile:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
387 cd ${libsrc} && $(RECURSIVE_MAKE) make-msgfile
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
388
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
389 ${libsrc}make-po:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
390 cd ${libsrc} && $(RECURSIVE_MAKE) make-po
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
391
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
392 #endif /* I18N3 */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
393
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 ${libsrc}make-docfile:
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
395 cd ${libsrc} && $(RECURSIVE_MAKE) make-docfile
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
397 ## Lint Section
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
398 LINT.c=$(LINT) $(LINTFLAGS) $(LINTINCLUDES)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 LINTFILES= $(objs:.o=.ln)
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
400 LINTINCLUDES = $(cppflags)
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
401 ## LINTFLAGS= -fd -m -p -s -u -v -x
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
402 LINTFLAGS= -fd -m -s -u -v -x
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 lint: $(LINTFILES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 $(LINT.c) $(LINTFILES)
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
405 ## end of Lint Section
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
407 temacs_deps=\
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
408 $(start_files) ${objs} ${otherobjs}\
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 251
diff changeset
409 $(lwlib_deps) $(dynodump_deps)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
411 temacs_link_args=\
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
412 ${start_flags} ${ldflags}\
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
413 -o $@ ${start_files} ${objs} ${otherobjs} ${LIBES}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
415 temacs: $(temacs_deps)
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
416 $(LD) $(temacs_link_args)
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
417
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
418 .PHONY : run-temacs
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
419
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
420 run-temacs: temacs
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
421 ./temacs -batch -l loadup.el run-temacs
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
422
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
423 ## Debugging targets:
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
424 ##
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
425 ## RTC is Sun WorkShop's Run Time Checking
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
426 ##
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
427 ## Purify, Quantify, PureCoverage are software quality products from
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
428 ## Rational, formerly Pure Atria, formerly Pure Software.
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
429 ##
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
430 ## None of these products work with a dumped xemacs binary, because it
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
431 ## does unexpected things like free memory that has been malloc'ed in
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
432 ## a *different* process!! So we need to run these on temacs.
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
433 ##
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
434
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
435 .PHONY : run-rtcmacs run-puremacs run-quantmacs
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
437 rtc_patch.o:
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
438 rtc_patch_area -o $@
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
439
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
440 rtcmacs: $(temacs_deps) rtc_patch.o
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
441 $(RM) temacs; $(RECURSIVE_MAKE) temacs RTC_patch_objs=rtc_patch.o
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
442 mv temacs rtcmacs
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
443
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
444 run-rtcmacs: rtcmacs
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
445 dbx -q -C -c \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
446 'dbxenv rtc_error_log_file_name /dev/fd/1; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
447 dbxenv suppress_startup_message 5.0; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
448 ignore POLL; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
449 check -access; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
450 suppress rui; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
451 runargs -batch -l loadup.el run-temacs -q; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
452 run' rtcmacs
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
453
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
454 ## Purify
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
455 PURIFY_PROG=purify
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
456 PURIFY_FLAGS=-chain-length=32 -ignore-signals=SIGPOLL -threads=yes \
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
457 -cache-dir=./purecache -always-use-cache-dir=yes -pointer-mask=0x0fffffff
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
458 puremacs: $(temacs_deps)
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
459 $(PURIFY_PROG) $(PURIFY_FLAGS) $(LD) $(temacs_link_args) -lpthread
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
460
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
461 run-puremacs: puremacs
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
462 ./puremacs -batch -l loadup.el run-temacs
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
464 ## Quantify
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
465 #ifdef QUANTIFY
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
466 quantify_prog = quantify
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
467 quantify_flags = -windows=no -record-data=no
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
468 quantify_includes = -I/local/include
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
469 quantify_libs = /local/lib/quantify_stubs.a
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
470
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
471 quantmacs: $(temacs_deps)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
472 $(quantify_prog) $(quantify_flags) $(LD) $(temacs_link_args)
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
473 #endif /* QUANTIFY */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
475 PURECOV_PROG=purecov
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
476 covmacs: $(temacs_deps)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
477 $(PURECOV_PROG) $(LD) $(temacs_link_args)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
479
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
480 TopLevelEmacsShell.o : ${srcdir}/EmacsShell-sub.c config.h xintrinsicp.h EmacsShellP.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
481 $(CC) -c $(cflags) -DDEFINE_TOP_LEVEL_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 mv EmacsShell-sub.o TopLevelEmacsShell.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
484 TopLevelEmacsShell.c.rtl : ${srcdir}/EmacsShell-sub.c config.h xintrinsicp.h EmacsShellP.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
485 $(CC) -dr -c $(cflags) -DDEFINE_TOP_LEVEL_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
486 mv EmacsShell-sub.c.rtl TopLevelEmacsShell.c.rtl
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
487
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
488 TransientEmacsShell.o : ${srcdir}/EmacsShell-sub.c TopLevelEmacsShell.o config.h xintrinsicp.h EmacsShellP.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
489 $(CC) -c $(cflags) -DDEFINE_TRANSIENT_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 mv EmacsShell-sub.o TransientEmacsShell.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
492 TransientEmacsShell.c.rtl : ${srcdir}/EmacsShell-sub.c TopLevelEmacsShell.o config.h xintrinsicp.h EmacsShellP.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
493 $(CC) -dr -c $(cflags) -DDEFINE_TRANSIENT_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
494 mv EmacsShell-sub.c.rtl TransientEmacsShell.c.rtl
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
495
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
496 ## Position-independent code for shared library creation
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
497 #if USE_GCC
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
498 pic_arg = -fpic
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
499 #elif defined (IRIX)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
500 pic_arg = -KPIC
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
501 # else
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
502 pic_arg = -K pic
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
503 #endif
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
504
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
507 external_client_motif_objs_shared = ExternalClient-Xm-shared.o extw-Xt-shared.o extw-Xlib-shared.o
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
508 external_client_xt_objs_shared = ExternalClient-Xt-shared.o extw-Xt-shared.o extw-Xlib-shared.o
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
509 external_client_xlib_objs_shared = ExternalClient-Xlib-shared.o extw-Xlib-shared.o
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
510 external_client_motif_objs_nonshared = ExternalClient-Xm-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
511 external_client_xt_objs_nonshared = ExternalClient-Xt-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
512 external_client_xlib_objs_nonshared = ExternalClient-Xlib-nonshared.o extw-Xlib-nonshared.o
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
514 ## Add dependencies so things work right with a parallel make
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 ExternalClient-Xm-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-shared.o ExternalClient-Xm-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
516 $(CC) -c $(pic_arg) $(cflags) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 mv ExternalClient.o ExternalClient-Xm-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 ExternalClient-Xt-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
520 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/ExternalClient.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 mv ExternalClient.o ExternalClient-Xt-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 ExternalClient-Xlib-shared.o: ${srcdir}/ExternalClient-Xlib.c ExternalClient-Xlib-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
524 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/ExternalClient-Xlib.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 mv ExternalClient-Xlib.o ExternalClient-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 ExternalClient-Xm-nonshared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
528 $(CC) -c $(cflags) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 mv ExternalClient.o ExternalClient-Xm-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 ExternalClient-Xt-nonshared.o: ${srcdir}/ExternalClient.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
532 $(CC) -c $(cflags) ${srcdir}/ExternalClient.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 mv ExternalClient.o ExternalClient-Xt-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 ExternalClient-Xlib-nonshared.o: ${srcdir}/ExternalClient-Xlib.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
536 $(CC) -c $(cflags) ${srcdir}/ExternalClient-Xlib.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 mv ExternalClient-Xlib.o ExternalClient-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
539 ## We compile the common files twice (once with PIC and once without)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
540 ## because on some systems, compiling with PIC but not linking into
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
541 ## a shared library messes things up.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
542
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 extw-Xt-shared.o: ${srcdir}/extw-Xt.c extw-Xt-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
544 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/extw-Xt.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 mv extw-Xt.o extw-Xt-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 extw-Xlib-shared.o: ${srcdir}/extw-Xlib.c extw-Xlib-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
548 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/extw-Xlib.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 mv extw-Xlib.o extw-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 extw-Xt-nonshared.o: ${srcdir}/extw-Xt.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
552 $(CC) -c $(cflags) ${srcdir}/extw-Xt.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 mv extw-Xt.o extw-Xt-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 extw-Xlib-nonshared.o: ${srcdir}/extw-Xlib.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
556 $(CC) -c $(cflags) ${srcdir}/extw-Xlib.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 mv extw-Xlib.o extw-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
559 libextcli_Xm.a: ${external_client_motif_objs_nonshared}
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
560 ar r libextcli_Xm.a ${external_client_motif_objs_nonshared}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
562 libextcli_Xt.a: ${external_client_xt_objs_nonshared}
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
563 ar r libextcli_Xt.a ${external_client_xt_objs_nonshared}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
565 libextcli_Xlib.a: ${external_client_xlib_objs_nonshared}
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
566 ar r libextcli_Xlib.a ${external_client_xlib_objs_nonshared}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 #ifdef EXTW_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
570 libextcli_Xm.so.1: ${external_client_motif_objs_shared}
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
571 EXTW_LINK(${external_client_motif_objs_shared}, libextcli_Xm.so.1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
573 libextcli_Xt.so.1: ${external_client_xt_objs_shared}
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
574 EXTW_LINK(${external_client_xt_objs_shared}, libextcli_Xt.so.1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
576 libextcli_Xlib.so.1: ${external_client_xlib_objs_shared}
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
577 EXTW_LINK(${external_client_xlib_objs_shared}, libextcli_Xlib.so.1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
579 #endif /* EXTW_LINK */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 #endif /* EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 config.h: ${srcdir}/config.h.in
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
584 puresize-adjust.h: ${srcdir}/puresize.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 paths.h: ${srcdir}/paths.h.in
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
586 Emacs.ad.h: ${srcdir}/${etcdir}Emacs.ad
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
588 config.h puresize-adjust.h sheap-adjust.h paths.h Emacs.ad.h :
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
589 @echo "The file $@ needs to be re-generated."
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
590 @echo "Please run a make in the top level directory."
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
591 @echo "Consult the file \`INSTALL' for instructions for building XEmacs."
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
592 @exit 1
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
594 ## Some machines have alloca built-in.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
595 ## They should define HAVE_ALLOCA, or may just let alloca.s
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
596 ## be used but generate no code.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
597 ## Some have it written in assembler in alloca.s.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
598 ## Some use the C version in alloca.c (these define C_ALLOCA in config.h).
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
599
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 #ifdef C_ALLOCA
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
602 ## We could put something in alloca.c to #define free and malloc
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
603 ## whenever emacs was #defined, but that's not appropriate for all
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
604 ## users of alloca in Emacs. Check out ../lib-src/getopt.c. */
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
605
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 alloca.o : ${srcdir}/alloca.c
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 185
diff changeset
607 $(CC) -c -Dfree=xfree -Dmalloc=xmalloc $(cflags) ${srcdir}/alloca.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 #ifndef HAVE_ALLOCA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 alloca.o : ${srcdir}/alloca.s config.h
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
611 ## $(CPP) is cc -E, which may get confused by filenames
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
612 ## that do not end in .c. So copy file to a safe name. */
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
613 ## cp ${srcdir}/alloca.s allocatem.c
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
614 ## Remove any ^L, blank lines, and preprocessor comments,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
615 ## since some assemblers barf on them. Use a different basename for the
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
616 ## output file, since some stupid compilers (Green Hill) use that
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
617 ## name for the intermediate assembler file.
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
618 $(CPP) $(cppflags) allocatem.c | \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 sed -e 's/ //' -e 's/^#.*//' | \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 sed -n -e '/^..*$$/p' > allocax.s
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
621 @$(RM) alloca.o
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
622 ## Xenix, in particular, needs to run assembler via cc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 $(CC) -c allocax.s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 mv allocax.o alloca.o
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
625 $(RM) allocax.s allocatem.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 #endif /* HAVE_ALLOCA */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 #endif /* ! defined (C_ALLOCA) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 #ifdef EMACS_BTL
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
630 BTL_includes = -I$(BTL_dir)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
631 BTL_compile = -DEMACS_BTL -D`lucid-arch` -I. $(BTL_includes) $(BTL_dir)/$(@:.o=.c)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 cadillac-btl.o cadillac-btl-process.o cadillac-btl-emacs.o:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
634 $(CC) $(CFLAGS) -c $(BTL_compile)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 cadillac-btl-asm.o:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
636 $(CC) $(CFLAGS) -c $(BTL_compile)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 #endif /* EMACS_BTL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 #ifdef HAVE_NATIVE_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 sunplay.o: ${srcdir}/sunplay.c
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 185
diff changeset
641 $(CC) -c $(sound_cflags) $(cflags) ${srcdir}/sunplay.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 hpplay.o: ${srcdir}/hpplay.c
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 185
diff changeset
643 $(CC) -c -Demacs $(sound_cflags) $(cflags) ${srcdir}/hpplay.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 #endif /* HAVE_NATIVE_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
646 ## System-specific programs to be made.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
647 ## ${other_files}, $(objects_system) and $(objects_machine)
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
648 ## select which of these should be compiled. */
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
649
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
650 .PHONY: mostlyclean clean distclean realclean versionclean extraclean
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 mostlyclean:
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 255
diff changeset
652 $(RM) temacs puremacs quantmacs prefix-args depend.* *.o *.i \
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 255
diff changeset
653 core temacs.exe puresize-adjust.h sheap-adjust.h
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
654 clean: mostlyclean versionclean
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
655 $(RM) libextcli* update-elc.stamp
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
656 ## This is used in making a distribution.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
657 ## Do not use it on development directories!
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
658 distclean: clean
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
659 $(RM) config.h paths.h Emacs.ad.h \
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 225
diff changeset
660 Makefile Makefile.in TAGS xemacs.*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 realclean: distclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 versionclean:
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 255
diff changeset
663 $(RM) xemacs xemacs.exe ${libsrc}DOC
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 extraclean: realclean
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
665 $(RM) *~ \#* m/*~ m/\#* s/*~ s/\#*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
667 .PHONY : lock unlock
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
668 SOURCES = *.[chm] *.pswm [sm]/* COPYING paths.h.in Makefile.in.in \
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
669 config.h.in README COPYING ChangeLog
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 unlock:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 chmod u+w $(SOURCES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 relock:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 chmod -w $(SOURCES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 #ifdef __GNUC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
678 ## Dependency processing using GCC
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 .c.dep:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
681 $(CC) -MM $(cflags) $< > $*.dep
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 obj_dep = $(objs:.o=.dep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
685 .PHONY : depend gnu-depend
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
686 ## #### Needs a bit of work: it doesn't see the object files that
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
687 ## we are not compiling
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 gnu-depend: $(obj_dep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 cat $(obj_dep) | sh ${libsrc}process-gnu-depends.sh > depend.out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 #endif /* GCC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
693 ## Dependency processing using makedepend
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
694 ## This hasn't been used in over a year as of December 10, 1997.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 depend:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 : > depend.tmp
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
698 makedepend -f depend.tmp -Dsubprocesses \
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
699 -DHAVE_X_WINDOWS -DMULE -- $(cppflags) $(cflags) \
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
700 -- *.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 sh ${libsrc}process-depends.sh < depend.tmp > depend.out
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
702 egrep '^mule|[^a-zA-Z]mule' depend.out > /tmp/depend1.$$
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
703 grep -v '^mule' depend.out | grep -v '[^a-zA-Z]mule' > /tmp/depend2.$$
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
704 echo '#ifdef MULE' > depend.out
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
705 cat /tmp/depend1.$$ >> depend.out
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
706 @# The things you have to do to pay homage to the lexer God ... frightening
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
707 echo '#endif /''* MULE *''/' >> depend.out
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
708 echo '' >> depend.out
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
709 cat /tmp/depend2.$$ >> depend.out
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
710 $(RM) /tmp/depend1.$$ /tmp/depend2.$$
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
712 ## Manually-generated dependencies (makedepend misbehaves on these)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
714 ## (actually makedepend does OK on these but we want to conditionalize them)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 ExternalClient-Xlib.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 ExternalClient-Xm.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 ExternalClient-Xm.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 ExternalClient-Xm.o: ExternalClient.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 ExternalClient-Xm.o: ExternalClientP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 ExternalClient-Xm.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 ExternalClient-Xm.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 ExternalClient-Xt.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 ExternalClient-Xt.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 ExternalClient-Xt.o: ExternalClient.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 ExternalClient-Xt.o: ExternalClientP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 ExternalClient-Xt.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 ExternalClient-Xt.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 ExternalShell.o: ExternalShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 ExternalShell.o: ExternalShellP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 ExternalShell.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 ExternalShell.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 ExternalShell.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 ExternalShell.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 ExternalShell.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 extw-Xlib-shared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 extw-Xlib-shared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 extw-Xt-shared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 extw-Xt-shared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 extw-Xt-shared.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 extw-Xlib-nonshared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 extw-Xlib-nonshared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 extw-Xt-nonshared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 extw-Xt-nonshared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 extw-Xt-nonshared.o: extw-Xt.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
746 #endif /* EXTERNAL_WIDGET */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 #ifdef EMACS_BTL
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
749 cadillac-btl.o: $(BTL_dir)/cadillac-btl.c
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
750 cadillac-btl.o: $(BTL_dir)/cadillac-btl.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
751 cadillac-btl.o: $(BTL_dir)/cadillac-btl-extern.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
752 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl-asm.c
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
753 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
754 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl-extern.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
755 cadillac-btl-emacs.o: $(BTL_dir)/cadillac-btl-extern.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
756 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl-process.c
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
757 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
758 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl-extern.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 #endif /* EMACS_BTL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
761 ## (makedepend definitely misbehaves on these)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 sgiplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 sgiplay.o: libst.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 unexconvex.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 unexec.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 unexaix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 unexalpha.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 unexapollo.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 unexconvex.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 unexec.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 unexelf.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 unexenix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 unexfreebsd.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 unexhp9k3.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 unexhp9k800.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 unexmips.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 unexsunos4.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
779 ## Dependencies (formerly) generated by 'make depend'
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
780
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
781 ## This has been hand-maintained since (at least) some time in 1996
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
782 ## Note: We deliberately do not include a dependency on lisp.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783
261
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
784 #ifdef FILE_CODING
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
785 callproc.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
786 console-tty.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
787 event-Xt.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
788 event-stream.o: file-coding.h
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
789 file-coding.o: config.h
261
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
790 file-coding.o: buffer.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
791 file-coding.o: elhash.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
792 file-coding.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
793 file-coding.o: insdel.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
794 file-coding.o: lstream.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
795 #ifdef MULE
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
796 file-coding.o: mule-ccl.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
797 #endif
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
798 fileio.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
799 glyphs-x.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
800 inline.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
801 lread.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
802 md5.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
803 #ifdef HAVE_CANNA
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
804 mule-canna.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
805 #endif
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
806 #ifdef MULE
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
807 mule-ccl.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
808 #endif
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
809 process.o: file-coding.h
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
810 process-unix.o: file-coding.h
261
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
811 redisplay-x.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
812 redisplay.o: file-coding.h
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
813 #endif
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
814
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
815 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
816 EmacsFrame.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
817 abbrev.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
818 alloc.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
819 buffer.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
820 bytecode.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
821 callint.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
822 callproc.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
823 casefiddle.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
824 casetab.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
825 chartab.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
826 cmdloop.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
827 cmds.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
828 console-tty.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
829 console.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
830 data.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
831 device-tty.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
832 device-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
833 device.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
834 dialog-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
835 dired.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
836 doc.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
837 doprnt.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
838 editfns.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
839 emacs.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
840 eval.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
841 event-Xt.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
842 event-stream.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
843 events.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
844 extents.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
845 faces.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
846 fileio.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
847 filelock.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
848 fns.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
849 font-lock.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
850 frame-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
851 frame.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
852 glyphs-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
853 glyphs.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
854 gui-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
855 indent.o: mule-charset.h
118
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
856 inline.o: mule-charset.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
857 insdel.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
858 keymap.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
859 lread.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
860 lstream.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
861 macros.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
862 marker.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
863 md5.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
864 menubar-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
865 minibuf.o: mule-charset.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
866 #ifdef HAVE_CANNA
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
867 mule-canna.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
868 mule-canna.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
869 mule-canna.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
870 mule-canna.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
871 mule-canna.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
872 mule-canna.o: mule-charset.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
873 #endif /* HAVE_CANNA */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
874 mule-ccl.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
875 mule-ccl.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
876 mule-ccl.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
877 mule-ccl.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
878 mule-ccl.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
879 mule-ccl.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
880 mule-charset.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
881 mule-charset.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
882 mule-charset.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
883 mule-charset.o: chartab.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
884 mule-charset.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
885 mule-charset.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
886 mule-charset.o: elhash.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
887 mule-charset.o: lstream.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
888 mule-charset.o: mule-charset.h
261
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
889 #if 0
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
890 mule-coding.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
891 mule-coding.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
892 mule-coding.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
893 mule-coding.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
894 mule-coding.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
895 mule-coding.o: elhash.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
896 mule-coding.o: insdel.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
897 mule-coding.o: lstream.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
898 mule-coding.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
899 mule-coding.o: mule-coding.h
261
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
900 #endif
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
901 #if 0
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
902 mule-mcpath.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
903 mule-mcpath.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
904 mule-mcpath.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
905 mule-mcpath.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
906 mule-mcpath.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
907 mule-mcpath.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
908 mule-mcpath.o: sysfile.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
909 #endif /* obsolete */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
910 #ifdef HAVE_WNN
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
911 mule-wnnfns.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
912 mule-wnnfns.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
913 mule-wnnfns.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
914 mule-wnnfns.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
915 mule-wnnfns.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
916 mule-wnnfns.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
917 mule-wnnfns.o: redisplay.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
918 mule-wnnfns.o: scrollbar.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
919 mule-wnnfns.o: window.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
920 #endif /* HAVE_WNN */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
921 mule.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
922 mule.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
923 mule.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
924 mule.o: regex.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
925 objects-tty.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
926 objects-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
927 objects.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
928 print.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
929 process.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
930 redisplay-output.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
931 redisplay-tty.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
932 redisplay-x.o: mule-charset.h
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
933 redisplay-msw.o: mule-charset.h
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
934 redisplay-msw.o: mule-ccl.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
935 redisplay.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
936 regex.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
937 scrollbar.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
938 search.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
939 sound.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
940 specifier.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
941 symbols.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
942 syntax.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
943 sysdep.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
944 toolbar-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
945 toolbar.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
946 tooltalk.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
947 undo.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
948 window.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
949 xselect.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
950 #endif /* MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
199
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
952 #ifdef HAVE_OFFIX_DND
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
953 device-x.o: offix.h
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
954 device-x.o: offix-types.h
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
955 device-x.o: xintrinsic.h
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
956 event-Xt.o: offix.h offix-types.h xintrinsic.h
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
957 event-Xt.o: offix-types.h
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
958 event-Xt.o: xintrinsic.h
199
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
959 frame-x.o: offix.h
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
960 frame-x.o: offix-types.h
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
961 frame-x.o: xintrinsic.h
199
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
962 offix.o: offix-cursors.h
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
963 offix.o: offix.h
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
964 offix.o: offix-types.h
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
965 offix.o: xintrinsic.h
199
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
966 #endif
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
967
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
968 #ifdef HAVE_MS_WINDOWS
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
969 console-msw.o: blocktype.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
970 console-msw.o: config.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
971 console-msw.o: conslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
972 console-msw.o: console-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
973 console-msw.o: console.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
974 console-msw.o: dynarr.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
975 device-msw.o: blocktype.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
976 device-msw.o: buffer.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
977 device-msw.o: bufslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
978 device-msw.o: config.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
979 device-msw.o: conslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
980 device-msw.o: console-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
981 device-msw.o: console-stream.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
982 device-msw.o: console.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
983 device-msw.o: device.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
984 device-msw.o: dynarr.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
985 device-msw.o: events.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
986 device-msw.o: faces.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
987 device-msw.o: frame.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
988 device-msw.o: frameslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
989 device-msw.o: scrollbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
990 device-msw.o: specifier.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
991 device-msw.o: sysdep.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
992 device-msw.o: systime.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
993 device-msw.o: toolbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
994 event-msw.o: blocktype.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
995 event-msw.o: config.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
996 event-msw.o: conslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
997 event-msw.o: console-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
998 event-msw.o: console.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
999 event-msw.o: device.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1000 event-msw.o: dynarr.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1001 event-msw.o: events-mod.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1002 event-msw.o: events.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1003 event-msw.o: frame.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1004 event-msw.o: frameslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1005 event-msw.o: menubar-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1006 event-msw.o: process.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1007 event-msw.o: redisplay.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1008 event-msw.o: scrollbar-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1009 event-msw.o: scrollbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1010 event-msw.o: specifier.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1011 event-msw.o: sysproc.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1012 event-msw.o: systime.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1013 event-msw.o: syswait.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1014 event-msw.o: toolbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1015 frame-msw.o: blocktype.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1016 frame-msw.o: buffer.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1017 frame-msw.o: bufslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1018 frame-msw.o: config.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1019 frame-msw.o: conslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1020 frame-msw.o: console-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1021 frame-msw.o: console.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1022 frame-msw.o: device.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1023 frame-msw.o: dynarr.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1024 frame-msw.o: events.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1025 frame-msw.o: faces.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1026 frame-msw.o: frame.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1027 frame-msw.o: frameslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1028 frame-msw.o: scrollbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1029 frame-msw.o: specifier.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1030 frame-msw.o: systime.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1031 frame-msw.o: toolbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1032 menubar-msw.o: blocktype.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1033 menubar-msw.o: buffer.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1034 menubar-msw.o: bufslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1035 menubar-msw.o: commands.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1036 menubar-msw.o: config.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1037 menubar-msw.o: conslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1038 menubar-msw.o: console-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1039 menubar-msw.o: console.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1040 menubar-msw.o: device.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1041 menubar-msw.o: dynarr.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1042 menubar-msw.o: elhash.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1043 menubar-msw.o: events.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1044 menubar-msw.o: frame.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1045 menubar-msw.o: frameslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1046 menubar-msw.o: gui.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1047 menubar-msw.o: menubar-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1048 menubar-msw.o: menubar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1049 menubar-msw.o: opaque.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1050 menubar-msw.o: redisplay.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1051 menubar-msw.o: scrollbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1052 menubar-msw.o: specifier.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1053 menubar-msw.o: systime.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1054 menubar-msw.o: toolbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1055 menubar-msw.o: window.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1056 objects-msw.o: blocktype.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1057 objects-msw.o: buffer.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1058 objects-msw.o: bufslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1059 objects-msw.o: config.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1060 objects-msw.o: conslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1061 objects-msw.o: console-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1062 objects-msw.o: console.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1063 objects-msw.o: device.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1064 objects-msw.o: dynarr.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1065 objects-msw.o: insdel.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1066 objects-msw.o: objects-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1067 objects-msw.o: objects.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1068 objects-msw.o: specifier.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1069 redisplay-msw.o: blocktype.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1070 redisplay-msw.o: buffer.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1071 redisplay-msw.o: bufslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1072 redisplay-msw.o: config.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1073 redisplay-msw.o: conslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1074 redisplay-msw.o: console-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1075 redisplay-msw.o: console.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1076 redisplay-msw.o: debug.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1077 redisplay-msw.o: device.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1078 redisplay-msw.o: dynarr.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1079 redisplay-msw.o: events.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1080 redisplay-msw.o: faces.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1081 redisplay-msw.o: frame.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1082 redisplay-msw.o: frameslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1083 redisplay-msw.o: glyphs.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1084 redisplay-msw.o: objects-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1085 redisplay-msw.o: objects.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1086 redisplay-msw.o: redisplay.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1087 redisplay-msw.o: scrollbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1088 redisplay-msw.o: specifier.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1089 redisplay-msw.o: sysdep.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1090 redisplay-msw.o: systime.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1091 redisplay-msw.o: toolbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1092 redisplay-msw.o: window.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1093 scrollbar-msw.o: blocktype.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1094 scrollbar-msw.o: config.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1095 scrollbar-msw.o: conslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1096 scrollbar-msw.o: console-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1097 scrollbar-msw.o: console.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1098 scrollbar-msw.o: device.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1099 scrollbar-msw.o: dynarr.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1100 scrollbar-msw.o: events.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1101 scrollbar-msw.o: frame.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1102 scrollbar-msw.o: frameslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1103 scrollbar-msw.o: redisplay.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1104 scrollbar-msw.o: scrollbar-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1105 scrollbar-msw.o: scrollbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1106 scrollbar-msw.o: specifier.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1107 scrollbar-msw.o: systime.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1108 scrollbar-msw.o: toolbar.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1109 scrollbar-msw.o: window.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1110 select-msw.o: blocktype.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1111 select-msw.o: config.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1112 select-msw.o: conslots.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1113 select-msw.o: console-msw.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1114 select-msw.o: console.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1115 select-msw.o: dynarr.h
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1116 #endif
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
1117
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1118 EmacsFrame.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 EmacsFrame.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 EmacsFrame.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 EmacsFrame.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 EmacsFrame.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 EmacsFrame.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 EmacsFrame.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 EmacsFrame.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 EmacsFrame.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 EmacsFrame.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 EmacsFrame.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 EmacsFrame.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 EmacsFrame.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 EmacsFrame.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 EmacsFrame.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 EmacsFrame.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 EmacsFrame.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 EmacsFrame.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 EmacsFrame.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 EmacsFrame.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 EmacsFrame.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 EmacsFrame.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 EmacsFrame.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 EmacsFrame.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 EmacsFrame.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 EmacsFrame.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 EmacsFrame.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 EmacsFrame.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 EmacsFrame.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 EmacsManager.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 EmacsManager.o: EmacsManagerP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 EmacsManager.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 EmacsManager.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 EmacsManager.o: xmmanagerp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 EmacsShell-sub.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 EmacsShell-sub.o: EmacsShellP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 EmacsShell-sub.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 EmacsShell-sub.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 EmacsShell-sub.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 EmacsShell.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 EmacsShell.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 EmacsShell.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 abbrev.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 abbrev.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 abbrev.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1163 abbrev.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 abbrev.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 abbrev.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 abbrev.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 abbrev.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 abbrev.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 abbrev.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 abbrev.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 abbrev.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 alloc.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 alloc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 alloc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 alloc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 alloc.o: bytecode.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1177 alloc.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 alloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 alloc.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 alloc.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 alloc.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 alloc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 alloc.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 alloc.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 alloc.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 alloc.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 alloc.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 alloc.o: glyphs.h
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
1189 alloc.o: puresize.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 alloc.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 alloc.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 alloc.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 alloc.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 alloc.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 alloc.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 alloca.o: config.h
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
1197 balloon_help.o: config.h
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
1198 balloon_help.o: balloon_help.h
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
1199 balloon-x.o: config.h
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
1200 balloon-x.o: device.h
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
1201 balloon-x.o: console-x.h
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 159
diff changeset
1202 balloon-x.o: balloon_help.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 blocktype.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 blocktype.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 blocktype.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 buffer.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 buffer.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 buffer.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1209 buffer.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 buffer.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 buffer.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 buffer.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 buffer.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 buffer.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 buffer.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 buffer.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 buffer.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 buffer.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 buffer.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 buffer.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 buffer.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 buffer.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 buffer.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 buffer.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 buffer.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 buffer.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 buffer.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 buffer.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 buffer.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 buffer.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 bytecode.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 bytecode.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 bytecode.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1234 bytecode.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 bytecode.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 bytecode.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 bytecode.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 callint.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 callint.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 callint.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 callint.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 callint.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 callint.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 callint.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 callint.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 callint.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 callint.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 callint.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 callint.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 callint.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 callproc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 callproc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 callproc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 callproc.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 callproc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 callproc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 callproc.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 callproc.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 callproc.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 callproc.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 callproc.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 callproc.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 callproc.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 callproc.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 callproc.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 callproc.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 callproc.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 callproc.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 casefiddle.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 casefiddle.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 casefiddle.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1272 casefiddle.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 casefiddle.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 casefiddle.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 casefiddle.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 casefiddle.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 casefiddle.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 casetab.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 casetab.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 casetab.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 casetab.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 casetab.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 casetab.o: opaque.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1284 chartab.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1285 chartab.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1286 chartab.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1287 chartab.o: chartab.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1288 chartab.o: commands.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1289 chartab.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1290 chartab.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1291 chartab.o: syntax.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 cm.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 cm.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 cm.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 cm.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 cm.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 cm.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 cm.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 cm.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 cm.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 cm.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 cm.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 cm.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 cm.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 cm.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 cm.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 cmdloop.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 cmdloop.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 cmdloop.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 cmdloop.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 cmdloop.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 cmdloop.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 cmdloop.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 cmdloop.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 cmdloop.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 cmdloop.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 cmdloop.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 cmdloop.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 cmdloop.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 cmdloop.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 cmdloop.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 cmdloop.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 cmdloop.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 cmdloop.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 cmdloop.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 cmds.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 cmds.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 cmds.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1329 cmds.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 cmds.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 cmds.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 cmds.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 cmds.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 cmds.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 console-stream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 console-stream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 console-stream.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 console-stream.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 console-stream.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 console-stream.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 console-stream.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 console-stream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 console-stream.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 console-stream.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 console-stream.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 console-stream.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 console-stream.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 console-stream.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 console-stream.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 console-stream.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 console-stream.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 console-stream.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 console-stream.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 console-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 console-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 console-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 console-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 console-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 console-tty.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 console-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 console-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 console-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 console-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 console-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 console-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 console-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 console-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 console-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 console-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 console-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 console-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 console-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 console-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 console-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 console-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 console-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 console-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 console-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 console-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 console-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 console-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 console-x.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 console-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 console-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 console.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 console.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 console.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 console.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 console.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 console.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 console.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 console.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 console.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 console.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 console.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 console.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 console.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 console.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 console.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 console.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 console.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 console.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 console.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 console.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 data.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 data.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 data.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 data.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 data.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 data.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 data.o: sysfloat.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1412 #ifdef HAVE_DATABASE
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 database.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 database.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 database.o: database.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 database.o: dynarr.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1417 #endif /* HAVE_DATABASE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 debug.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 debug.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 debug.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 debug.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 debug.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 device-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 device-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 device-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 device-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 device-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 device-tty.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 device-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 device-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 device-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 device-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 device-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 device-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 device-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 device-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 device-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 device-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 device-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 device-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 device-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 device-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 device-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 device-tty.o: toolbar.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1445 device-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 device-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 device-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 device-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 device-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 device-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 device-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 device-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 device-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 device-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 device-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 device-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 device-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 device-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 device-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 device-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 device-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 device-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 device-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 device-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 device-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 device-x.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 device-x.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 device-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 device-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 device-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 device-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 device-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 device-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 device-x.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 device.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 device.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 device.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 device.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 device.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 device.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 device.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 device.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 device.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 device.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 device.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 device.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 device.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 device.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 device.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 device.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 device.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 device.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 device.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 device.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 device.o: window.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1496 dialog-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 dialog-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 dialog-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 dialog-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 dialog-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 dialog-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 dialog-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 dialog-x.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 dialog-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 dialog-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 dialog-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 dialog-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 dialog-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 dialog-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 dialog-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 dialog-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 dialog-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 dialog-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 dialog-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 dialog-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 dialog-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 dialog-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 dialog-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 dialog-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 dialog-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 dialog-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 dialog.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 dialog.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 dialog.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 dired.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 dired.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 dired.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 dired.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 dired.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 dired.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 dired.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 dired.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 dired.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 dired.o: sysfile.h
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
1535 dlopen.o: config.h
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 245
diff changeset
1536 dlopen.o: buffer.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 doc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 doc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 doc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 doc.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 doc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 doc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 doc.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 doc.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 doc.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 doprnt.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 doprnt.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 doprnt.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 doprnt.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 doprnt.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 doprnt.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 dynarr.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 dynarr.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 dynarr.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 ecrt0.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 editfns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 editfns.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 editfns.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 editfns.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 editfns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 editfns.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 editfns.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 editfns.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 editfns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 editfns.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 editfns.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 editfns.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 editfns.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 editfns.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 editfns.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 editfns.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 editfns.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 editfns.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 editfns.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 editfns.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 editfns.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 editfns.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 elhash.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 elhash.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 elhash.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 elhash.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 elhash.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 elhash.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 emacs.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 emacs.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 emacs.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 emacs.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 emacs.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 emacs.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 emacs.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 emacs.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 emacs.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 emacs.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 emacs.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 emacs.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 emacs.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 emacs.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 eval.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 eval.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 eval.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 eval.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 eval.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 eval.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 eval.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 eval.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 eval.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 eval.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 eval.o: opaque.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1609 event-Xt.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 event-Xt.o: Emacs.ad.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 event-Xt.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 event-Xt.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 event-Xt.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 event-Xt.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 event-Xt.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 event-Xt.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 event-Xt.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 event-Xt.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 event-Xt.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 event-Xt.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 event-Xt.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 event-Xt.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 event-Xt.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 event-Xt.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 event-Xt.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 event-Xt.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 event-Xt.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 event-Xt.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 event-Xt.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 event-Xt.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 event-Xt.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 event-Xt.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 event-Xt.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 event-Xt.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 event-Xt.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 event-Xt.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 event-Xt.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 event-Xt.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 event-stream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 event-stream.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 event-stream.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 event-stream.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 event-stream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 event-stream.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 event-stream.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 event-stream.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 event-stream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 event-stream.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 event-stream.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 event-stream.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 event-stream.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 event-stream.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 event-stream.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 event-stream.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 event-stream.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 event-stream.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 event-stream.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 event-stream.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 event-stream.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 event-stream.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 event-stream.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 event-stream.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 event-stream.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 event-stream.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 event-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 event-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 event-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 event-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 event-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 event-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 event-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 event-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 event-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 event-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 event-tty.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 event-tty.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 event-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 event-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 event-tty.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 event-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 event-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 event-tty.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 event-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 event-unixoid.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 event-unixoid.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 event-unixoid.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 event-unixoid.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 event-unixoid.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 event-unixoid.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 event-unixoid.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 event-unixoid.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 event-unixoid.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 event-unixoid.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 event-unixoid.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 event-unixoid.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 event-unixoid.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 event-unixoid.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 event-unixoid.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 events.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 events.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 events.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 events.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 events.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 events.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 events.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 events.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 events.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 events.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 events.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 events.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 events.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 events.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 events.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 events.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 events.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 events.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 events.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 events.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 events.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 events.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 events.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 events.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 extents.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 extents.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 extents.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 extents.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 extents.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 extents.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 extents.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 extents.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 extents.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 extents.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 extents.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 extents.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 extents.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 extents.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 extents.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 extents.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 extents.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 extents.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 extents.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 extents.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 extents.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 extents.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 extents.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 faces.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 faces.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 faces.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 faces.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 faces.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 faces.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 faces.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 faces.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 faces.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 faces.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 faces.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 faces.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 faces.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 faces.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 faces.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 faces.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 faces.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 faces.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 faces.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 faces.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 faces.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 faces.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 faces.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 faces.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 faces.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 fileio.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 fileio.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 fileio.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 fileio.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 fileio.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 fileio.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 fileio.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 fileio.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 fileio.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 fileio.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 fileio.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 fileio.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 fileio.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 fileio.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 fileio.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 fileio.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 fileio.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 fileio.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 fileio.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 fileio.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 fileio.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 fileio.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 fileio.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 fileio.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 fileio.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 filelock.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 filelock.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 filelock.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 filelock.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 filelock.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 filelock.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 filelock.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 filelock.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 filelock.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 filemode.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 filemode.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 filemode.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 filemode.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 floatfns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 floatfns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 floatfns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 floatfns.o: sysfloat.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 fns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 fns.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 fns.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 fns.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 fns.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 fns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 fns.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 fns.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 fns.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 fns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 fns.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 fns.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 fns.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 fns.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 fns.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 fns.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 fns.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 fns.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 font-lock.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 font-lock.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 font-lock.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1834 font-lock.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 font-lock.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 font-lock.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 font-lock.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 font-lock.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 frame-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 frame-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 frame-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 frame-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 frame-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 frame-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 frame-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 frame-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 frame-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 frame-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 frame-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 frame-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 frame-tty.o: toolbar.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1852 frame-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 frame-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 frame-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 frame-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 frame-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 frame-x.o: ExternalShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 frame-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 frame-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 frame-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 frame-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 frame-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 frame-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 frame-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 frame-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 frame-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 frame-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 frame-x.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 frame-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 frame-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 frame-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 frame-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 frame-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 frame-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 frame-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 frame-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 frame-x.o: scrollbar-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 frame-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 frame-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 frame-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 frame-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 frame-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 frame-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 frame-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 frame-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 frame-x.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 frame.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 frame.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 frame.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 frame.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 frame.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 frame.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 frame.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 frame.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 frame.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 frame.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 frame.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 frame.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 frame.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 frame.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 frame.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 frame.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 frame.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 frame.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 frame.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 frame.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 frame.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 frame.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 free-hook.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 free-hook.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 free-hook.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 free-hook.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 general.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 general.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 general.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 getloadavg.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 getloadavg.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 getloadavg.o: dynarr.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1919 glyphs-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 glyphs-x.o: ${srcdir}/${etcdir}xemacs.xbm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 glyphs-x.o: bitmaps.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 glyphs-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 glyphs-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 glyphs-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 glyphs-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 glyphs-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 glyphs-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 glyphs-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 glyphs-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 glyphs-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 glyphs-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 glyphs-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 glyphs-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 glyphs-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 glyphs-x.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 glyphs-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 glyphs-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 glyphs-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 glyphs-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 glyphs-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 glyphs-x.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 glyphs-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 glyphs-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 glyphs-x.o: xmu.h
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
1945 glyphs-x.o: imgproc.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
1946 imgproc.o: imgproc.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
1947 imgproc.o: config.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 glyphs.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 glyphs.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 glyphs.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 glyphs.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 glyphs.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 glyphs.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 glyphs.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 glyphs.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 glyphs.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 glyphs.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 glyphs.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 glyphs.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 glyphs.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 glyphs.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 glyphs.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 glyphs.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 glyphs.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 glyphs.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 glyphs.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 gmalloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 gmalloc.o: getpagesize.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1969 gui-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 gui-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 gui-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 gui-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 gui-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 gui-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 gui-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 gui-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 gui-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 gui-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 gui-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 gui-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 gui-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 gui-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 gui-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 gui-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 gui-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 gui-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 gui.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 gui.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 gui.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 hash.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 hash.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 hash.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 hash.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 hash.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 hftctl.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 hftctl.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 hftctl.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 hpplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 hpplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 hpplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 indent.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 indent.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 indent.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 indent.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 indent.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 indent.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 indent.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 indent.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 indent.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 indent.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 indent.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 indent.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 indent.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 indent.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 indent.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 indent.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 indent.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 indent.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 indent.o: window.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2020 inline.o: $(LWLIB_SRCDIR)/lwlib.h
118
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2021 inline.o: blocktype.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2022 inline.o: buffer.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2023 inline.o: bufslots.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2024 inline.o: bytecode.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2025 inline.o: chartab.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2026 inline.o: config.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2027 inline.o: conslots.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2028 inline.o: console-x.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2029 inline.o: console.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2030 inline.o: device.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2031 inline.o: dynarr.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2032 inline.o: elhash.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2033 inline.o: events.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2034 inline.o: extents.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2035 inline.o: faces.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2036 inline.o: frame.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2037 inline.o: frameslots.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2038 inline.o: glyphs-x.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2039 inline.o: glyphs.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2040 inline.o: gui-x.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2041 inline.o: keymap.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2042 inline.o: lstream.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2043 inline.o: objects.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2044 inline.o: opaque.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2045 inline.o: process.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2046 inline.o: redisplay.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2047 inline.o: scrollbar.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2048 inline.o: specifier.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2049 inline.o: syntax.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2050 inline.o: systime.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2051 inline.o: toolbar.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2052 inline.o: window.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2053 inline.o: xintrinsic.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2054 input-method-xlib.o: EmacsFrame.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2055 input-method-xlib.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2056 input-method-xlib.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2057 input-method-xlib.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2058 input-method-xlib.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2059 input-method-xlib.o: conslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2060 input-method-xlib.o: console-x.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2061 input-method-xlib.o: console.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2062 input-method-xlib.o: device.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2063 input-method-xlib.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2064 input-method-xlib.o: frame.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2065 input-method-xlib.o: frameslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2066 input-method-xlib.o: insdel.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2067 input-method-xlib.o: lstream.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2068 input-method-xlib.o: redisplay.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2069 input-method-xlib.o: scrollbar.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2070 input-method-xlib.o: specifier.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2071 input-method-xlib.o: toolbar.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2072 input-method-xlib.o: window.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2073 input-method-xlib.o: xintrinsic.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 insdel.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 insdel.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 insdel.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 insdel.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 insdel.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 insdel.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 insdel.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 insdel.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 insdel.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 insdel.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 insdel.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 insdel.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 insdel.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 insdel.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 insdel.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 insdel.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 insdel.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 intl.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 intl.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 intl.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 intl.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 intl.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 intl.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 intl.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 keymap.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 keymap.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 keymap.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 keymap.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 keymap.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 keymap.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 keymap.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 keymap.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 keymap.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 keymap.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 keymap.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 keymap.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 keymap.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 keymap.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 keymap.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 keymap.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 keymap.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 keymap.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 keymap.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 keymap.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 keymap.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 keymap.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 libsst.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 libsst.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 libsst.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 libsst.o: libsst.h
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
2124 line-number.o: config.h
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
2125 line-number.o: buffer.h
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
2126 line-number.o: insdel.h
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 219
diff changeset
2127 line-number.o: line-number.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 linuxplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 linuxplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 linuxplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 lread.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 lread.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 lread.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 lread.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 lread.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 lread.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 lread.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 lread.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 lread.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 lread.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 lread.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 lread.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 lstream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 lstream.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 lstream.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 lstream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 lstream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 lstream.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 lstream.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 lstream.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 macros.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 macros.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 macros.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 macros.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 macros.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 macros.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 macros.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 macros.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 macros.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 macros.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 macros.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 macros.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 macros.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 macros.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 macros.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 macros.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 macros.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 macros.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 macros.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 macros.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 malloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 malloc.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 marker.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 marker.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 marker.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 marker.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 marker.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 md5.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 md5.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 md5.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 md5.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 md5.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 md5.o: insdel.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2184 menubar-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 menubar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 menubar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 menubar-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 menubar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 menubar-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 menubar-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 menubar-x.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 menubar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 menubar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 menubar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 menubar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 menubar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 menubar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 menubar-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 menubar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 menubar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 menubar-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 menubar-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 menubar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 menubar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 menubar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 menubar-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 menubar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 menubar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 menubar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 menubar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 menubar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 menubar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 menubar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 menubar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 menubar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 menubar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 menubar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 menubar.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 menubar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 menubar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 menubar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 menubar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 menubar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 minibuf.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 minibuf.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 minibuf.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 minibuf.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 minibuf.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 minibuf.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 minibuf.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 minibuf.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 minibuf.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 minibuf.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 minibuf.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 minibuf.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 minibuf.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 minibuf.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 minibuf.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 minibuf.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 minibuf.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 minibuf.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 minibuf.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 minibuf.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 msdos.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 nas.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 nas.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 nas.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 objects-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 objects-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 objects-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 objects-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 objects-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 objects-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 objects-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 objects-tty.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 objects-tty.o: objects-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 objects-tty.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 objects-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 objects-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 objects-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 objects-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 objects-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 objects-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 objects-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 objects-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 objects-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 objects-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 objects-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 objects-x.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 objects-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 objects-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 objects-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 objects-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 objects.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 objects.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 objects.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 objects.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 objects.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 objects.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 objects.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 objects.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 objects.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 objects.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 objects.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 objects.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 objects.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 objects.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 objects.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 objects.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 objects.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 objects.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 opaque.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 opaque.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 opaque.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 opaque.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 print.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 print.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 print.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 print.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 print.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 print.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 print.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 print.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 print.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 print.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 print.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 print.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 print.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 print.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 print.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 print.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 print.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 print.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 print.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 print.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 print.o: toolbar.h
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2317 process-unix.o: config.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2318 process-unix.o: buffer.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2319 process-unix.o: commands.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2320 process-unix.o: events.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2321 process-unix.o: frame.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2322 process-unix.o: insdel.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2323 process-unix.o: lstream.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2324 process-unix.o: opaque.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2325 process-unix.o: process.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2326 process-unix.o: procimpl.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2327 process-unix.o: window.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2328 process-unix.o: sysfile.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2329 process-unix.o: sysproc.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2330 process-unix.o: systime.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2331 process-unix.o: syssignal.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2332 process-unix.o: systty.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
2333 process-unix.o: syswait.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 process.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 process.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 process.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 process.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 process.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 process.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 process.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 process.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 process.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 process.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 process.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 process.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 process.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 process.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 process.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 process.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 process.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 process.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 process.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 process.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 process.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 process.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 process.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 process.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 process.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 process.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 process.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 process.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 profile.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 profile.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 profile.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 profile.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 profile.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 profile.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 profile.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 pure.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 pure.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 pure.o: dynarr.h
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
2372 pure.o: puresize.h puresize-adjust.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 ralloc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 ralloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 ralloc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 ralloc.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 rangetab.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 rangetab.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 rangetab.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 realpath.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 redisplay-output.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 redisplay-output.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 redisplay-output.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 redisplay-output.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 redisplay-output.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 redisplay-output.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 redisplay-output.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 redisplay-output.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 redisplay-output.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 redisplay-output.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 redisplay-output.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 redisplay-output.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 redisplay-output.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 redisplay-output.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 redisplay-output.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 redisplay-output.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 redisplay-output.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 redisplay-output.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 redisplay-output.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 redisplay-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 redisplay-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 redisplay-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 redisplay-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 redisplay-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 redisplay-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 redisplay-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 redisplay-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 redisplay-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 redisplay-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 redisplay-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 redisplay-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 redisplay-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 redisplay-tty.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 redisplay-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 redisplay-tty.o: objects-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 redisplay-tty.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 redisplay-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 redisplay-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 redisplay-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 redisplay-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 redisplay-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 redisplay-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 redisplay-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 redisplay-tty.o: window.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2425 redisplay-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 redisplay-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 redisplay-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 redisplay-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 redisplay-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 redisplay-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 redisplay-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 redisplay-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 redisplay-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 redisplay-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 redisplay-x.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 redisplay-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 redisplay-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 redisplay-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 redisplay-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 redisplay-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 redisplay-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 redisplay-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 redisplay-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 redisplay-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 redisplay-x.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 redisplay-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 redisplay-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 redisplay-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 redisplay-x.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 redisplay-x.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 redisplay-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 redisplay-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 redisplay-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 redisplay-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 redisplay-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 redisplay-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 redisplay-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 redisplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 redisplay.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 redisplay.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 redisplay.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 redisplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 redisplay.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 redisplay.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 redisplay.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 redisplay.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 redisplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 redisplay.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 redisplay.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 redisplay.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 redisplay.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 redisplay.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 redisplay.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 redisplay.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 redisplay.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 redisplay.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 redisplay.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 redisplay.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 redisplay.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 redisplay.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 redisplay.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 regex.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 regex.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 regex.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2485 regex.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 regex.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 regex.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 regex.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 regex.o: syntax.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2490 scrollbar-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 scrollbar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 scrollbar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 scrollbar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 scrollbar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 scrollbar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 scrollbar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 scrollbar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 scrollbar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 scrollbar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 scrollbar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 scrollbar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 scrollbar-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 scrollbar-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 scrollbar-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 scrollbar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 scrollbar-x.o: scrollbar-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 scrollbar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 scrollbar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 scrollbar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 scrollbar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 scrollbar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 scrollbar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 scrollbar.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 scrollbar.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 scrollbar.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 scrollbar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 scrollbar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 scrollbar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 scrollbar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 scrollbar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 scrollbar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 scrollbar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 scrollbar.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 scrollbar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 scrollbar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 scrollbar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 scrollbar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 scrollbar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 search.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 search.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 search.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2532 search.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 search.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 search.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 search.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 search.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 search.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 search.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 search.o: syntax.h
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
2540 sheap.o: sheap-adjust.h
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
2541 sheap.o: config.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 signal.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 signal.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 signal.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 signal.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 signal.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 signal.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 signal.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 signal.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 signal.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 signal.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 signal.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 signal.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 signal.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 signal.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 sound.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557 sound.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 sound.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 sound.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560 sound.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 sound.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 sound.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 sound.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 sound.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 sound.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 sound.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 sound.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 sound.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 specifier.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 specifier.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 specifier.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 specifier.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 specifier.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 specifier.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 specifier.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 specifier.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 specifier.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 specifier.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 specifier.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 specifier.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 specifier.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 specifier.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 specifier.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 specifier.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 strftime.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 strftime.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 strftime.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 sunOS-fix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 sunplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 sunplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 sunplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 sunplay.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 sunpro.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 sunpro.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 sunpro.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 symbols.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 symbols.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 symbols.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 symbols.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 symbols.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 symbols.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 symbols.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 syntax.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 syntax.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 syntax.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2606 syntax.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 syntax.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 syntax.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 syntax.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 syntax.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 syntax.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 sysdep.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 sysdep.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 sysdep.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 sysdep.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 sysdep.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 sysdep.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 sysdep.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 sysdep.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 sysdep.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 sysdep.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 sysdep.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 sysdep.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 sysdep.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 sysdep.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 sysdep.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 sysdep.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 sysdep.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 sysdep.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 sysdep.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 sysdep.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 sysdep.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 sysdep.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 sysdep.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 sysdep.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 sysdep.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 termcap.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 termcap.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 termcap.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 termcap.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 termcap.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 termcap.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 terminfo.o: config.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2644 toolbar-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 toolbar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 toolbar-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 toolbar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 toolbar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 toolbar-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 toolbar-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 toolbar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 toolbar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 toolbar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 toolbar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 toolbar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 toolbar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 toolbar-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 toolbar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 toolbar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660 toolbar-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 toolbar-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 toolbar-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 toolbar-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 toolbar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 toolbar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 toolbar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 toolbar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 toolbar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 toolbar-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 toolbar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 toolbar-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 toolbar-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 toolbar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 toolbar.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 toolbar.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 toolbar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 toolbar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 toolbar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 toolbar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 toolbar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 toolbar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 toolbar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 toolbar.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 toolbar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 toolbar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 toolbar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 toolbar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 toolbar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 tooltalk.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 tooltalk.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 tooltalk.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 tooltalk.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 tooltalk.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 tooltalk.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 tooltalk.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 tooltalk.o: tooltalk.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 tparam.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 undo.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 undo.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 undo.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 undo.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 undo.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 undo.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 vm-limit.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 vm-limit.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 vm-limit.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 vm-limit.o: mem-limits.h
199
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
2708 widget.o: config.h
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
2709 widget.o: buffer.h
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
2710 widget.o: insdel.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 window.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 window.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 window.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 window.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 window.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 window.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 window.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 window.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 window.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 window.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 window.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 window.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 window.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 window.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 window.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 window.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 window.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 window.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 window.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 xgccache.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 xgccache.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 xgccache.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 xgccache.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 xgccache.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 xmu.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 xselect.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 xselect.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 xselect.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 xselect.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 xselect.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 xselect.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 xselect.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 xselect.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 xselect.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 xselect.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 xselect.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 xselect.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 xselect.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 xselect.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 xselect.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 xselect.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 xselect.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 xselect.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 xselect.o: xintrinsic.h