annotate src/Makefile.in.in @ 159:3bb7ccffb0c0 r20-3b6

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