annotate src/Makefile.in.in @ 157:6b37e6ddd302 r20-3b5

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