annotate src/Makefile.in.in @ 14:9ee227acff29 r19-15b90

Import from CVS: tag r19-15b90
author cvs
date Mon, 13 Aug 2007 08:48:42 +0200
parents bcdc7deadc19
children 0293115a14e9
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 /* Some people use these in paths they define. We don't want their paths
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 dot = .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 /* On Xenix and the IBM RS6000, double-dot gets screwed up. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 lispdir = ${srcdir}/$(dot)$(dot)/lisp/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 libsrc = $(dot)$(dot)/lib-src/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 etcdir = $(dot)$(dot)/etc/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 /* Here are the things that we expect ../configure to edit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 srcdir=@srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 CC=@CC@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 CPP=@CPP@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 CFLAGS=@CFLAGS@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 C_SWITCH_SYSTEM=@c_switch_system@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 LN_S=@LN_S@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 native_sound_lib=@native_sound_lib@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 /* just to be sure the sh is used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 SHELL=/bin/sh
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #define NO_SHORTNAMES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 #define NOT_C_CODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 #include "config.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 /* With the traditional VPATH setting, it is not possible to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 simultaneously compile in-place and in another directory. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 mistaken definition is that *all* dependencies are searched for in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 the VPATH directory, rather than just the dependencies that are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 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
61 in-place location, it will not get recompiled in the not-in-place
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 location.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 The GNU Make `vpath' directive continues this tradition, but at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 least lets you restrict the classes of files that it applies to.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 This allows us to kludge around the problem. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 #ifdef USE_GNU_MAKE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 vpath %.c @srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 vpath %.h @srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 /* now list files that should NOT be searched in the srcdir.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 This includes any .c or .h that's built from something else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (e.g. a .in file). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 vpath config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 vpath paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 vpath Emacs.ad.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 VPATH=@srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 #ifdef USE_LCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 /* Why is this here?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 # undef LIB_STANDARD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 # define LIB_STANDARD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 # define LCCFLAGS -Xa -wucp -XW'[Oo]ld style func dcl' $(ENERGIZEP)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 #ifdef NEW_LCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 # define LCCLINK -Xdbx
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 # define LCCLINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 # define ORDINARY_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 # define LCCFLAGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 # define LCCLINK
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;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 don't let it interfere with this file. */
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 /* On some systems we may not be able to use the system make command. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 #ifdef MAKE_COMMAND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 MAKE = MAKE_COMMAND
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 #ifdef C_COMPILER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 CC = C_COMPILER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 /* Some machines don't find the standard C libraries in the usual place. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 #ifndef ORDINARY_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 #ifndef LIB_STANDARD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 #define LIB_STANDARD -lc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 #ifndef LIB_STANDARD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 #define LIB_STANDARD
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 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 /* Unless inhibited or changed, use -lg to link for debugging. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 #ifndef LIBS_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 #define LIBS_DEBUG -lg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 /* Some s/*.h files define this to request special libraries. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 #ifndef LIBS_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 #define LIBS_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 /* Some m/*.h files define this to request special libraries. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #ifndef LIBS_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 #define LIBS_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 #ifndef LIB_MATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 # ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 # define LIB_MATH -lm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 # else /* ! defined (LISP_FLOAT_TYPE) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 # define LIB_MATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 # endif /* ! defined (LISP_FLOAT_TYPE) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 #endif /* LIB_MATH */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 /* Some s/*.h files define this to request special switches in ld. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 #ifndef LD_SWITCH_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 #if !defined (__GNUC__) && (defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 #define LD_SWITCH_SYSTEM -X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 #else /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 #define LD_SWITCH_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 #endif /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 #endif /* LD_SWITCH_SYSTEM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 #ifndef LD_SWITCH_CALL_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 #define LD_SWITCH_CALL_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 #endif /* define a call_shared switch */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 #ifndef LD_SWITCH_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 #define LD_SWITCH_SHARED -c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 #endif /* define a shared switch */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 /* Some m/*.h files define this to request special switches in ld. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 #ifndef LD_SWITCH_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 #define LD_SWITCH_MACHINE
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 /* Some m/*.h files define this to request special switches in cc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #ifndef C_SWITCH_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 #define C_SWITCH_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 /* Some s/*.h files define this to request special switches in cc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 #ifndef C_SWITCH_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 #define C_SWITCH_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 /* These macros are for switches specifically related to X Windows. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 #ifndef C_SWITCH_X_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 #define C_SWITCH_X_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 #ifndef C_SWITCH_X_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 #define C_SWITCH_X_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 #ifndef C_SWITCH_X_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 #define C_SWITCH_X_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 #ifndef LD_SWITCH_X_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 #define LD_SWITCH_X_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 #ifndef LD_SWITCH_X_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 #define LD_SWITCH_X_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 /* These can be passed in from config.h to define special load and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 compile switches needed by individual sites */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 #ifndef LD_SWITCH_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 #define LD_SWITCH_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 #ifndef C_SWITCH_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 #define C_SWITCH_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 #ifndef ORDINARY_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 #ifndef CRT0_COMPILE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 #define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS) C_SWITCH_ASM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 #ifndef START_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #ifdef NO_REMAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 #ifdef COFF_ENCAPSULATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 #define START_FILES pre-crt0.o /usr/local/lib/gcc-crt0.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 #else /* ! defined (COFF_ENCAPSULATE) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 #define START_FILES pre-crt0.o /lib/crt0.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 #endif /* ! defined (COFF_ENCAPSULATE) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 #else /* ! defined (NO_REMAP) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 #define START_FILES ecrt0.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 #endif /* ! defined (NO_REMAP) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 #endif /* START_FILES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 STARTFILES = START_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 #else /* ORDINARY_LINK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 /* config.h might want to force START_FILES anyway */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 #ifdef START_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 STARTFILES = START_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 STARTFILES =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 #endif /* START_FILES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 #endif /* not ORDINARY_LINK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 /* Unless inhibited or changed, use -g to compile for debugging. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 #ifndef C_DEBUG_SWITCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 #define C_DEBUG_SWITCH -g
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 /* If user wants to optimize, this is how. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 #ifndef C_OPTIMIZE_SWITCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 #define C_OPTIMIZE_SWITCH -O
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 /* cc switches needed to make `asm' keyword work.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 Nothing special needed on most machines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 #ifndef C_SWITCH_ASM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 #define C_SWITCH_ASM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 ILD=/cadillac1/code/bin.sun4/ild
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
255 PURIFY_PROG=purify
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
256 QUANTIFY_PROG=quantify
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
257 PURECOV_PROG=purecov
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
258 #ifdef QUANTIFY
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 #define QUANTIFY_INCLUDES -I/local/include
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 #define QUANTIFY_LIBS /local/lib/quantify_stubs.a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 #define QUANTIFY_INCLUDES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 #define QUANTIFY_LIBS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 /* Figure out whether the system cpp can handle long names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 Do it by testing it right now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 If it loses, arrange to use the GNU cpp. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 #define LONGNAMEBBBFOOX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 #ifdef LONGNAMEBBBARFOOX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 /* Installed cpp fails to distinguish those names! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 /* Arrange to compile the GNU cpp later on */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 #define NEED_CPP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 /* Cause cc to invoke the cpp that comes with Emacs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 which will be in a file named localcpp. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 MYCPPFLAG= -Blocal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 /* LOCALCPP is the local one or nothing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 CPP is the local one or the standardone. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 LOCALCPP= localcpp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 MYCPPFLAGS=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 LOCALCPP=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 #endif /* ! defined (LONGNAMEBBBARFOOX) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 #ifdef SHORTNAMES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 SHORT= shortnames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 SHORT=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 #ifdef HAVE_NATIVE_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 # if defined (SOLARIS2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 # define SOUND_CFLAGS C_SWITCH_SITE -I/usr/demo/SOUND/include
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 # define SOUND_LIBS ${native_sound_lib}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 # define SOUND_OBJS sunplay.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 # else /* !SOLARIS2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 # if defined (SPARC)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 # define SOUND_CFLAGS C_SWITCH_SITE -I/usr/demo/SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 # define SOUND_LIBS ${native_sound_lib}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 # define SOUND_OBJS sunplay.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 # else /* !SUNOS4 */
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 12
diff changeset
303 # if defined (IRIX4) || defined (IRIX5) || defined (IRIX6)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 # define SOUND_CFLAGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 # define SOUND_LIBS -laudio
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 # define SOUND_OBJS sgiplay.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 # else /* !IRIX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 # if defined (hp9000s800)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 # ifdef USE_GCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 # define SOUND_CFLAGS -Dconst= -Dvolatile= -I/usr/audio/examples
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 # else /* ! USE_GCC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 # define SOUND_CFLAGS +e -I/usr/audio/examples
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 # endif /* USE_GCC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 # define SOUND_LIBS -lAlib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 # define SOUND_OBJS hpplay.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 # else /* !HP9000S800 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 # if defined (LINUX)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 # define SOUND_CFLAGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 # define SOUND_LIBS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 # define SOUND_OBJS linuxplay.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 # else /* !LINUX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 ERROR!! HAVE\_NATIVE\_SOUND can only be defined on Solaris, SunOS, SGI, hp9000s800, or Linux
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 # endif /* !LINUX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 # endif /* !HP9000S800 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 # endif /* !IRIX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 # endif /* !SUNOS4 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 # endif /* !SOLARIS2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 #else /* !HAVE_NATIVE_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 # define SOUND_CFLAGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 # define SOUND_LIBS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 # define SOUND_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 #endif /* ! HAVE_NATIVE_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 #ifdef HAVE_NAS_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 # define NAS_CFLAGS C_SWITCH_SITE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 # define NAS_LIBS -laudio
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 # define NAS_OBJS nas.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 # define NAS_CFLAGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 # define NAS_LIBS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 # define NAS_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 #endif /* HAVE_NAS_SOUND */
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 ENERGIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 CONN_DIR=../connection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 # define ENERGIZE_INCLUDES -I${I_DIR_PREFIX}${CONN_DIR}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 # define ENERGIZE_LDFLAGS -L${CONN_DIR}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 # if defined(ENERGIZE_3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 # define ENERGIZE_LIBS -lenergize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 # elif defined (ENERGIZE_2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 # define ENERGIZE_LIBS -lconn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 # define ENERGIZE_LIBS -lconn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 #else /* !ENERGIZE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 # define ENERGIZE_INCLUDES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 # define ENERGIZE_LDFLAGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 # define ENERGIZE_LIBS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 #endif /* !ENERGIZE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 #ifdef HAVE_SOCKS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 # define SOCKS_LIBS -lsocks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 #else /* !HAVE_SOCKS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 # define SOCKS_LIBS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 #endif /* !HAVE_SOCKS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 #ifdef HAVE_GIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 # define GIF_OBJS dgif_lib.o gif_err.o gifalloc.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 # define GIF_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 #ifdef HAVE_PNG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 # ifdef HAVE_PNG_GNUZ
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 # define PNG_LIBS -lpng -lgz
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 # define PNG_LIBS -lpng -lz
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 # define PNG_LIBS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 #ifdef HAVE_DATABASE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 # define DATABASE_OBJS database.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 # if !defined (DATABASE_DBM_LIBS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 # if defined (HAVE_GNU_DBM) && defined (HAVE_LIBGDBM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 # define DATABASE_DBM_LIBS -lgdbm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 # elif defined (HAVE_DBM) && defined (HAVE_LIBDBM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 # define DATABASE_DBM_LIBS -ldbm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 # define DATABASE_DBM_LIBS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 # if !defined (DATABASE_DB_LIBS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 # if defined (HAVE_BERKELEY_DB) && defined (HAVE_LIBDB)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 # define DATABASE_DB_LIBS -ldb
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 # define DATABASE_DB_LIBS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 # define DATABASE_LIBS DATABASE_DBM_LIBS DATABASE_DB_LIBS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 #else /* not HAVE_DATABASE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 # define DATABASE_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 # define DATABASE_LIBS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 #endif /* not HAVE_DATABASE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 #ifdef HAVE_JPEG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 JPEG_LIBS = -ljpeg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 /* If you want to debug, you can add C_DEBUG_SWITCH to this list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 If you want to optimize, you can add C_OPTIMIZE_SWITCH to the list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 /* -Demacs is needed to make some files produce the correct version
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 for use in Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 -DHAVE_CONFIG_H is needed for some other files to take advantage of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 the information in `config.h'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 /* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 since it may have -I options that should override those two. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 CPPFLAGS=-Demacs -DHAVE_CONFIG_H $(MYCPPFLAG) -I. \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 -I${srcdir} LCCFLAGS C_SWITCH_MACHINE C_SWITCH_SYSTEM \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 C_SWITCH_SITE C_SWITCH_X_SITE C_SWITCH_X_MACHINE \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 C_SWITCH_X_SYSTEM $(LIBX11_INCLUDES) QUANTIFY_INCLUDES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 ALL_CFLAGS=$(CPPFLAGS) ${CFLAGS}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 #ifdef NEED_XILDOFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 #define XILDOFF -xildoff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 #define XILDOFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 LDFLAGS = LD_SWITCH_SITE LD_SWITCH_X_SITE LD_SWITCH_SYSTEM \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 LD_SWITCH_X_SYSTEM LD_SWITCH_MACHINE \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 -L. $(LIBX11_LDFLAGS) ENERGIZE_LDFLAGS XILDOFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 #ifdef HAVE_NEXTSTEP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 .m.o:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 $(CC) -c $(ALL_CFLAGS) $<
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 .c.o:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 $(CC) -c $(ALL_CFLAGS) $<
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 #ifndef LIBX11_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 #define LIBX11_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 #ifndef LIBX11_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 #define LIBX11_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 LWLIBSRCDIR = ${srcdir}/$(dot)$(dot)/lwlib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 #define TOOLBAR_X_OBJS toolbar-x.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 #define TOOLBAR_X_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 #ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 #define MENUBAR_X_OBJS menubar-x.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 #define MENUBAR_X_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 #define SCROLLBAR_X_OBJS scrollbar-x.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 #define SCROLLBAR_X_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 #ifdef HAVE_DIALOGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 #define DIALOG_X_OBJS dialog-x.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 #define DIALOG_X_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_DIALOGS) || defined (HAVE_TOOLBARS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 #define GUI_X_OBJS gui-x.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 #define GUI_X_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 #define XOBJS console-x.o device-x.o DIALOG_X_OBJS event-Xt.o frame-x.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 glyphs-x.o GUI_X_OBJS MENUBAR_X_OBJS objects-x.o redisplay-x.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 SCROLLBAR_X_OBJS TOOLBAR_X_OBJS xgccache.o xselect.o
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 HAVE_XMU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 #define XMU_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 XMU_LIB = -lXmu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 #define XMU_OBJS xmu.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 #ifdef EPOCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 #define EPOCH_OBJS epoch.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 #define EPOCH_OBJS
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 /* LWLIBSRCDIR is defined above regardless of X being used or not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 This avoids having to conditionalize the dependencies on lwlib.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 LWLIBBUILDDIR = $(dot)$(dot)/lwlib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 LIBX11_LDFLAGS = -L$(LWLIBBUILDDIR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 LIBX11_INCLUDES = -I$(LWLIBSRCDIR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 /* Force the Xpm library to be statically linked, always, if at Sun. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 # ifdef USAGE_TRACKING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 XPM_LIBS = -Bstatic -lXpm -Bdynamic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 XPM_LIBS = -lXpm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 # endif /* at Sun */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 #endif /* HAVE_XPM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 #ifdef HAVE_XFACE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 XFACE_LIBS = -lcompface
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 #endif /* HAVE_XFACE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 #ifdef USAGE_TRACKING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 /* Force the ut library to be statically linked, always. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 # if defined (SOLARIS2) || defined (SUNOS4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 USAGE_TRACKING_LIBS = -Bstatic -lut -Bdynamic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 USAGE_TRACKING_LIBS = -lut
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 # endif /* SOLARIS2 || SUNOS4 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 USAGE_TRACKING_LIBS =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 #endif /* USAGE_TRACKING */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 #ifdef LWLIB_USES_MOTIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 TOOLKIT_LIBS = -lXm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 #else /* ! LWLIB_USES_MOTIF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 TOOLKIT_LIBS = -lXaw
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 #endif /* ! LWLIB_USES_MOTIF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 LIBX11_LIBS = -llw $(TOOLKIT_LIBS) $(XPM_LIBS) $(XFACE_LIBS) $(JPEG_LIBS) PNG_LIBS $(USAGE_TRACKING_LIBS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 #ifdef AIX4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 #define LIBI18N -li18n
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 #define LIBI18N
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 #endif /* AIX4 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 #ifdef THIS_IS_X11R6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 #ifdef NEED_LIBW
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 LIBW= -lw
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 LIBW=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 LIBX= $(LIBX11_LIBS) $(XMU_LIB) -lXt -lSM -lICE $(LIBW) -lXext -lX11 LIBX11_MACHINE LIBX11_SYSTEM LIBI18N
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 LIBX= $(LIBX11_LIBS) $(XMU_LIB) -lXt -lXext -lX11 LIBX11_MACHINE LIBX11_SYSTEM LIBI18N
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 # define XOBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 # define XMU_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 # define EPOCH_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 #endif /* HAVE_X_WINDOWS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 #ifdef HAVE_NEXTSTEP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 #define TOOLBAR_NS_OBJS toolbar-ns.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 #define TOOLBAR_NS_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 #ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 #define MENUBAR_NS_OBJS menubar-ns.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 #define MENUBAR_NS_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 #define SCROLLBAR_NS_OBJS scrollbar-ns.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 #define SCROLLBAR_NS_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 #ifdef HAVE_DIALOGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 #define DIALOG_NS_OBJS dialog-ns.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 #define DIALOG_NS_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 #define NSOBJS console-ns.o device-ns.o DIALOG_NS_OBJS event-ns.o frame-ns.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 glyphs-ns.o MENUBAR_NS_OBJS nsselect.o objects-ns.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 redisplay-ns.o SCROLLBAR_NS_OBJS TOOLBAR_NS_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 # define NSOBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 #endif /* HAVE_NEXTSTEP */
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 DYNODUMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 DYNODUMPBUILDDIR = $(dot)$(dot)/dynodump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 #ifndef ORDINARY_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 /* Fix linking if compiled with GCC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 #ifdef __GNUC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 #if __GNUC__ > 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 /* Versions of GCC >= 2.0 put their library, libgcc.a, in obscure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 places that are difficult to figure out at make time. Fortunately,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 these same versions allow you to pass arbitrary flags on to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 linker, so there's no reason not to use it as a linker.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 Well, it's not quite perfect. The `-nostdlib' keeps GCC from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 searching for libraries in its internal directories, so we have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 ask GCC explicitly where to find libgcc.a. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 #ifndef LINKER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 #define LINKER $(CC) -nostdlib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 /* GCC passes any argument prefixed with -Xlinker directly to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 linker. See prefix-args.c for an explanation of why we don't do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 this with the shell's `for' construct.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 Note that some people don't have '.' in their paths, so we must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 use ./prefix-args. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 #define YMF_PASS_LDFLAGS(flags) `./prefix-args -Xlinker flags`
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 #endif /* LINKER */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 #ifndef LIB_GCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 /* Ask GCC where to find libgcc.a. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 #define LIB_GCC `$(CC) -print-libgcc-file-name`
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 #endif /* LIB_GCC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 GNULIB_VAR = LIB_GCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 #else /* __GNUC__ < 2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 #ifndef LIB_GCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 #define LIB_GCC /usr/local/lib/gcc-gnulib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 #endif /* LIB_GCC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 GNULIB_VAR = `if [ -f LIB_GCC ] ; then echo LIB_GCC; else echo; fi`
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 #endif /* __GNUC__ < 2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 #else /* ! defined (__GNUC__) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 GNULIB_VAR =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 #endif /* ! defined (__GNUC__) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 GNULIB_VAR =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 #endif /* not ORDINARY_LINK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 /* Specify address for ld to start loading at,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 if requested by configuration. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 #ifdef LD_TEXT_START_ADDR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 STARTFLAGS = -T LD_TEXT_START_ADDR -e __start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 STARTFLAGS =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 #endif
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 ORDINARY_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 LD = $(CC) $(CFLAGS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 #ifdef COFF_ENCAPSULATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 LD=$(CC) -nostdlib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 #else /* not ORDINARY_LINK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 #ifdef LINKER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 LD=LINKER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 #else /* ! defined (LINKER) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 LD=ld
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 #endif /* ! defined (LINKER) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 #endif /* ! defined (COFF_ENCAPSULATE) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 #endif /* not ORDINARY_LINK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 /* A macro which other sections of the makefile can redefine to munge the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 flags before they're passed to LD. This is helpful if you have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 redefined LD to something odd, like "gcc". */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 #ifndef YMF_PASS_LDFLAGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 #define YMF_PASS_LDFLAGS(flags) flags
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 /* Allow config.h to specify a replacement file for unexec.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 #ifndef UNEXEC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 #define UNEXEC unexec.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 #ifndef UNEXEC_SRC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 #define UNEXEC_SRC unexec.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 #ifdef ENERGIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 # ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 BTLDIR=$(srcdir)/../btl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 # define BTLOBJS cadillac-btl.o cadillac-btl-process.o cadillac-btl-asm.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 cadillac-btl-emacs.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 # define BTLOBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 # endif /* BTL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 # if defined(FREE_CHECKING) || defined(DEBUG_INPUT_BLOCKING) || defined(DEBUG_GCPRO)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 # define FREECHECKOBJS free-hook.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 # else /* !FREE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 # define FREECHECKOBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 # endif /* !FREE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 # define ENERGIZE_OBJS energize.o FREECHECKOBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 #else /* !ENERGIZE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 # define ENERGIZE_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 # define BTLOBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 #endif /* !ENERGIZE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 #ifdef HAVE_REALPATH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 #define REALPATH_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 #define REALPATH_OBJS realpath.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 #ifdef TOOLTALK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 # define TOOLTALK_OBJS tooltalk.o
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
720 # if (defined (IRIX5) || defined (HPUX) || defined (POWERPC) || defined (AIX4))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 # define LIB_TOOLTALK -ltt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 # if (defined (SPARC) && !defined (USG))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 # define LIB_TOOLTALK -ltt -lI18N
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 # if ((defined (SPARC) || defined(INTEL386)) && defined (USG))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 # define LIB_TOOLTALK -ltt -lce
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 # endif /* ((SPARC || INTEL386) && USG) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 # endif /* ! (SPARC && !USG) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 # endif /* !IRIX5 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 #else /* !TOOLTALK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 # define TOOLTALK_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 # define LIB_TOOLTALK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 #endif /* !TOOLTALK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 #ifdef HAVE_CDE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 # define LIB_CDE -lDtSvc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 # define LIB_CDE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
742 #ifdef HAVE_OFFIX_DND
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
743 # define LIB_OFFIX_DND -lDnd
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
744 #else
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
745 # define LIB_OFFIX_DND
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
746 #endif
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
747
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 #if (defined(LIB_INTL) && (!(defined(I18N3) || defined(I18N4))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 /* this should be defined by s- files, but we should not use it unless
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 I18N3 or I18N4 are defined. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 # undef LIB_INTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 #ifndef LIB_INTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 # define LIB_INTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 #ifdef MOCKLISP_SUPPORT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 # define MOCKLISPOBJS mocklisp.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 # define MOCKLISPOBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 # define DEBUG_OBJS debug.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 # define DEBUG_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 #ifdef SUNPRO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 # define SUNPRO_OBJS sunpro.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 # define SUNPRO_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 #ifdef HAVE_TTY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 #define TTY_OBJS console-tty.o device-tty.o event-tty.o frame-tty.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 objects-tty.o redisplay-tty.o cm.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 #define TTY_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 #define TOOLBAR_OBJS toolbar.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 #define TOOLBAR_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 #ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 #define MENUBAR_OBJS menubar.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 #define MENUBAR_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 #define SCROLLBAR_OBJS scrollbar.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 #define SCROLLBAR_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 #ifdef HAVE_DIALOGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 #define DIALOG_OBJS dialog.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 #define DIALOG_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_DIALOGS) || defined (HAVE_TOOLBARS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 #define GUI_OBJS gui.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 #define GUI_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 #ifdef HAVE_UNIXOID_EVENT_LOOP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 #define EVENT_UNIXOID_OBJS event-unixoid.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 #define EVENT_UNIXOID_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 /* lastfile must follow all files whose initialized data areas should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 be dumped as pure by dump-emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 /* NOTE: The last line cannot be all macros, because make will barf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 if they all come out null. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 objs= abbrev.o alloc.o blocktype.o buffer.o bytecode.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 callint.o callproc.o casefiddle.o casetab.o cmdloop.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 cmds.o console.o console-stream.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 data.o DATABASE_OBJS DEBUG_OBJS device.o DIALOG_OBJS dired.o doc.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 doprnt.o dynarr.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 editfns.o elhash.o emacs.o ENERGIZE_OBJS EPOCH_OBJS eval.o events.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 event-stream.o EVENT_UNIXOID_OBJS extents.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 faces.o fileio.o filelock.o filemode.o floatfns.o fns.o font-lock.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 frame.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 general.o getloadavg.o GIF_OBJS glyphs.o GUI_OBJS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 hash.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 indent.o inline.o insdel.o intl.o \
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
834 keymap.o $(RTC_PATCH_O) \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 lread.o lstream.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 macros.o marker.o md5.o MENUBAR_OBJS minibuf.o MOCKLISPOBJS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 NAS_OBJS NSOBJS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 objects.o opaque.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 print.o process.o profile.o pure.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 rangetab.o REALPATH_OBJS redisplay.o redisplay-output.o regex.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 SCROLLBAR_OBJS search.o signal.o sound.o SOUND_OBJS specifier.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 strftime.o SUNPRO_OBJS symbols.o syntax.o sysdep.o \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 TOOLBAR_OBJS TOOLTALK_OBJS TTY_OBJS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 undo.o UNEXEC \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 XOBJS XMU_OBJS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 window.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 #ifdef HAVE_TTY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 # ifdef HAVE_NCURSES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 /* If your machine needs -ltermcap, define LIBS_TERMCAP to include
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 -lncurses -ltermcap in your s or m file (conditionalized on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 HAVE_NCURSES). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 # ifndef LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 # define LIBS_TERMCAP -lncurses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 # endif /* LIBS_TERMCAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 termcapobjs = terminfo.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 # elif defined (TERMINFO)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 /* Used to be -ltermcap here. If your machine needs that,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 define LIBS_TERMCAP in the m/<machine>.h file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 # ifndef LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 # define LIBS_TERMCAP -lcurses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 # endif /* LIBS_TERMCAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 termcapobjs = terminfo.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 # else /* ! defined (TERMINFO) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 # ifndef LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 # define LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 termcapobjs = termcap.o tparam.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 # else /* LIBS_TERMCAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 termcapobjs = tparam.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 # endif /* LIBS_TERMCAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 # endif /* ! defined (TERMINFO) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 #else /* !HAVE_TTY */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 # undef LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 # define LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 #endif /* !HAVE_TTY */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 #ifdef REL_ALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 rallocobjs = ralloc.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 rallocdocsrc = ralloc.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 rallocobjs =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 rallocdocsrc =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 #ifndef SYSTEM_MALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 # ifdef GNU_MALLOC /* New GNU malloc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 # ifdef ERROR_CHECK_MALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 mallocobjs = gmalloc.o free-hook.o vm-limit.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 mallocdocsrc = free-hook.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 mallocobjs = gmalloc.o vm-limit.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 mallocdocsrc =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 # else /* Old GNU malloc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 mallocobjs = malloc.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 mallocdocsrc =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 # endif /* Old GNU malloc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 mallocobjs =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 mallocdocsrc =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 #endif /* SYSTEM_MALLOC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
904 #ifdef FORCE_ALLOCA_H
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
905 allocaobjs = alloca.o
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
906 #else /* !FORCE_ALLOCA_H */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 allocaobjs = @ALLOCA@
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
908 #endif /* !FORCE_ALLOCA_H */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 # ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 # define EXTERNAL_WIDGET_OBJS ExternalShell.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 /* Now we try to figure out how to link a shared library.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 If we can't figure it out, leave EXTW_LINK undefined and a shared
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 library will not be created. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 # ifdef USE_GCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 # ifdef USG5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 # define EXTW_LINK(objs, output) $(CC) -shared objs -Xlinker -z -Xlinker text -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 /* I can't figure out how to do shared a.out libraries, so just punt. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 # elif !defined (LINUX) || defined (__ELF__)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 # define EXTW_LINK(objs, output) $(CC) -shared objs -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 # elif defined (USG5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 # if defined (IRIX)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 # 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
929 # else /* not IRIX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 # define EXTW_LINK(objs, output) $(CC) -G objs -z text -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 # endif /* not IRIX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 # else /* not USG5 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 # if defined (DEC_ALPHA) && defined (OSF1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 # define EXTW_LINK(objs, output) $(LD) $(LDFLAGS) LD_SWITCH_SHARED -d objs -o output $(LIBES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 # else /* !(DEC_ALPHA && OSF1) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 # define EXTW_LINK(objs, output) $(LD) -dc objs -assert pure-text -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 # endif /* !(DEC_ALPHA && OSF1) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 # endif /* not USG5 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 # ifdef LWLIB_USES_MOTIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 # ifdef EXTW_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 # define MOTIF_OTHER_FILES libextcli_Xm.a libextcli_Xm.so.1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 # define MOTIF_OTHER_FILES libextcli_Xm.a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 # define MOTIF_OTHER_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 #endif
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 EXTW_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 # define OTHER_FILES MOTIF_OTHER_FILES \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 libextcli_Xt.a libextcli_Xt.so.1 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 libextcli_Xlib.a libextcli_Xlib.so.1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 # define OTHER_FILES MOTIF_OTHER_FILES \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 libextcli_Xt.a libextcli_Xlib.a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 # else /* !EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 # define EXTERNAL_WIDGET_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 # endif /* !EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 # define LIBX11_OBJS EmacsFrame.o EmacsShell.o TopLevelEmacsShell.o TransientEmacsShell.o EmacsManager.o EXTERNAL_WIDGET_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 # define LWLIB_DEPS $(LWLIBBUILDDIR)/liblw.a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 #else /* !X */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 # define LIBX11_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 # define LWLIB_DEPS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 /* define otherobjs as list of object files that make-docfile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 should not be told about. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 otherobjs= $(termcapobjs) BTLOBJS lastfile.o $(mallocobjs) $(rallocobjs) $(allocaobjs) LIBX11_OBJS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 #ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 #define FLOAT_LISP ${lispdir}prim/float-sup.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 #define FLOAT_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 /* lisp files that are preloaded if compiled with support for X Windows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 # ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 # define X11_TOOLBAR_LISP ${lispdir}x11/x-toolbar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 # define X11_TOOLBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 # ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 # define X11_MENUBAR_LISP ${lispdir}x11/x-menubar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 # define X11_MENUBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 # ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 # define X11_SCROLLBAR_LISP ${lispdir}x11/x-scrollbar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 # define X11_SCROLLBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 #define X11_LISP X11_MENUBAR_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 ${lispdir}x11/x-faces.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 ${lispdir}x11/x-iso8859-1.elc ${lispdir}x11/x-mouse.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 ${lispdir}x11/x-select.elc X11_SCROLLBAR_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 X11_TOOLBAR_LISP ${lispdir}x11/x-misc.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 ${lispdir}x11/x-init.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 #define X11_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 #ifdef HAVE_NEXTSTEP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 /* lisp files that are preloaded if compiled with support for NeXTstep */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 #define NS_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 #define NS_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 #ifdef HAVE_TTY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 /* lisp files that are preloaded if compiled with support for NeXTstep */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 #define TTY_LISP ${lispdir}term/tty-init.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 #define TTY_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 #ifdef EPOCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 #define EPOCH_LISP ${lispdir}epoch/epoch.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 #define EPOCH_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 #ifdef ENERGIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 /* Lisp files that are preloaded if compiled with support for Energize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 #define ENERGIZE_LISP ${lispdir}comint/gdb.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 ${lispdir}comint/comint.elc ${lispdir}comint/shell.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 ${lispdir}utils/ring.elc ${lispdir}packages/compile.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 ${lispdir}modes/view-less.elc ${lispdir}emulators/evi.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 ${lispdir}packages/font-lock.elc ${lispdir}packages/fast-lock.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 ${lispdir}dired/dired.elc ${lispdir}dired/dired-x.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 ${lispdir}dired/dired-lucid.elc ${lispdir}prim/userlock.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 ${lispdir}energize/energize-init.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 ${lispdir}energize/energize-mode.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 ${lispdir}energize/energize-windows.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 ${lispdir}energize/energize-menus.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 ${lispdir}energize/energize-shell.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 ${lispdir}energize/energize-visit-use.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 ${lispdir}energize/energize-vi.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 ${lispdir}energize/energize-font-lock.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 ${lispdir}energize/energize-advice.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 #define ENERGIZE_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 #ifdef SUNPRO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 /* Lisp files that are preloaded if compiled with support for SunPro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 products */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 #define SUNPRO_LISP ${lispdir}packages/sccs.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 ${lispdir}sunpro/sunpro-init.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 ${lispdir}sunpro/sunpro-menubar.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 ${lispdir}sunpro/sunpro-keys.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 ${lispdir}eos/sun-eos-init.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 ${lispdir}eos/sun-eos-load.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 ${lispdir}eos/sun-eos-common.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 ${lispdir}eos/sun-eos-editor.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 ${lispdir}eos/sun-eos-browser.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 ${lispdir}eos/sun-eos-debugger.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 ${lispdir}eos/sun-eos-debugger-extra.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 ${lispdir}comint/comint.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 ${lispdir}utils/ring.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 ${lispdir}eos/sun-eos-toolbar.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 ${lispdir}eos/sun-eos-menubar.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 ${lispdir}utils/annotations.elc \
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1069 ${lispdir}prim/loaddefs.elc
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 #define SUNPRO_LISP ${lispdir}prim/loaddefs.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 #ifdef TOOLTALK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 /* Lisp files that are preloaded if compiled with support for Tooltalk
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 #define TOOLTALK_LISP ${lispdir}tooltalk/tooltalk-macros.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 ${lispdir}tooltalk/tooltalk-util.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 ${lispdir}tooltalk/tooltalk-init.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 #define TOOLTALK_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 #ifdef LISP_COMMAND_LOOP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 #define CMDLOOP_LISP ${lispdir}prim/cmdloop1.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 #define CMDLOOP_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 #define TOOLBAR_LISP ${lispdir}prim/toolbar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 #define TOOLBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 #ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 #define MENUBAR_LISP ${lispdir}prim/menubar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 #define MENUBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 #define SCROLLBAR_LISP ${lispdir}prim/scrollbar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 #define SCROLLBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 #ifdef HAVE_DIALOGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 #define DIALOG_LISP ${lispdir}prim/dialog.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 #define DIALOG_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 #ifdef HAVE_WINDOW_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 #define MOUSE_LISP ${lispdir}prim/gui.elc ${lispdir}prim/mouse.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 ${lispdir}prim/mode-motion.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 #define MOUSE_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 /* List of Lisp files loaded into the dumped Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 Every file that is loaded from loadup.el must be enumerated
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1119 here, or the functions won't have docstrings.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1120 This is dumb - this list should be generated automatically.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 [Note: "version.el" is included in the doc separately, but is not listed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 here because we don't want things to appear to be out-of-date just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 because the version number has been incremented. -- D.N.G. 8/28/93]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 /* loaddefs is now included handled by the SUNPRO_LISP define because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 SparcWorks support requires an altered version. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 lisp= ${lispdir}paths.el \
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1128 ${lispdir}prim/loaddefs.elc ${lispdir}prim/auto-autoloads.elc \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 ${lispdir}prim/loadup.el ${lispdir}prim/subr.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 ${lispdir}prim/cmdloop.elc CMDLOOP_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 ${lispdir}utils/text-props.elc MOUSE_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 ${lispdir}prim/keymap.elc ${lispdir}prim/syntax.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 ${lispdir}prim/minibuf.elc ${lispdir}prim/faces.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 ${lispdir}prim/objects.elc ${lispdir}prim/process.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 ${lispdir}prim/keydefs.elc ${lispdir}prim/device.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 ${lispdir}prim/obsolete.elc ${lispdir}prim/glyphs.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 ${lispdir}prim/extents.elc ${lispdir}prim/backquote.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 ${lispdir}prim/events.elc ${lispdir}prim/console.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 ${lispdir}utils/map-ynp.elc ${lispdir}prim/modeline.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 ${lispdir}prim/profile.elc ${lispdir}modes/list-mode.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 ${lispdir}utils/derived.elc ${lispdir}cl/cl.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 ${lispdir}cl/cl-defs.elc ${lispdir}prim/undo-stack.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 ${lispdir}prim/simple.elc ${lispdir}prim/help.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 ${lispdir}prim/files.elc ${lispdir}utils/lib-complete.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 ${lispdir}prim/indent.elc ${lispdir}prim/frame.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 TOOLBAR_LISP ${lispdir}prim/format.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 ${lispdir}prim/window.elc ${lispdir}prim/startup.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 ${lispdir}prim/lisp.elc ${lispdir}prim/page.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 ${lispdir}prim/register.elc ${lispdir}iso/iso8859-1.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 ${lispdir}prim/paragraphs.elc ${lispdir}modes/lisp-mode.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 ${lispdir}modes/text-mode.elc ${lispdir}prim/fill.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 ${lispdir}prim/isearch-mode.elc ${lispdir}prim/misc.elc \
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1153 ${lispdir}packages/vc-hooks.elc \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 ${lispdir}prim/replace.elc ${lispdir}prim/specifier.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 ${lispdir}modes/auto-show.elc SUNPRO_LISP TTY_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 ${lispdir}bytecomp/bytecomp-runtime.elc FLOAT_LISP EPOCH_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 ${lispdir}prim/itimer.elc ${lispdir}ediff/ediff-hook.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 ${lispdir}packages/fontl-hooks.elc SCROLLBAR_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 ${lispdir}prim/buffer.elc MENUBAR_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 ${lispdir}packages/buff-menu.elc DIALOG_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 ${lispdir}modes/abbrev.elc X11_LISP NS_LISP ENERGIZE_LISP TOOLTALK_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 /* Other Lisp files that are not dumped out but where it's convenient
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 (or required?) for them to be byte-compiled early, before xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 is dumped out. Don't list them in ${lisp} because then the doc-snarfing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 routines get confused. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 otherlisp= ${lispdir}bytecomp/bytecomp.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 ${lispdir}bytecomp/byte-optimize.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 ${lispdir}utils/advice.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1171 LIBES = NAS_LIBS SOUND_LIBS SOCKS_LIBS ENERGIZE_LIBS LIB_CDE LIB_OFFIX_DND \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 LIB_TOOLTALK $(LIBX) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP LIB_INTL QUANTIFY_LIBS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 DATABASE_LIBS LIBS_DEBUG $(GNULIB_VAR) LIB_MATH LIB_STANDARD \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 $(GNULIB_VAR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 /* Enable recompilation of certain other files depending on system type. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 #ifndef OTHER_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 #define OTHER_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 /* Enable inclusion of object files in temacs depending on system type. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 #ifndef OBJECTS_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 #define OBJECTS_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 #ifndef OBJECTS_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 #define OBJECTS_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 all: xemacs OTHER_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 /* "make release" to build "xemacs" with an incremented version number;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 "make xemacs" to just build "xemacs" without incrementing the version. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 modir = ${etcdir}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 # define MOFILE ${modir}emacs.mo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 # define MOFILE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 LOADPATH = EMACSLOADPATH="${lispdir}prim"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 DUMPENV = $(LOADPATH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 release: temacs ${lisp} ${libsrc}DOC MOFILE OTHER_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 #ifdef CANNOT_DUMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 ln temacs xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 #ifdef HAVE_SHM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 -if [ -w ${srcdir}/../lisp ]; then \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 w=`pwd`; cd ${srcdir}; $${w}/temacs -nl -batch -l inc-vers; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 else true; fi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 $(DUMPENV) ./temacs -nl -batch -l loadup.el dump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 #else /* ! defined (HAVE_SHM) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 -if [ -w ${srcdir}/../lisp ]; then \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 w=`pwd`; cd ${srcdir}; $${w}/temacs -batch -l inc-vers; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 else true; fi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 $(DUMPENV) ./temacs -batch -l loadup.el dump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 #endif /* ! defined (HAVE_SHM) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 touch release
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 #endif /* ! defined (CANNOT_DUMP) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 xemacs: temacs ${libsrc}DOC ${lisp} MOFILE OTHER_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 $(DUMPENV) ./temacs -batch -l loadup.el dump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 xemacs-no-site-file: temacs ${libsrc}DOC ${lisp} MOFILE OTHER_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 $(DUMPENV) ./temacs -batch -l loadup.el dump no-site-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 obj_src = $(objs:.o=.c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 #ifdef NO_DOC_FILE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 ${libsrc}DOC: ${libsrc}make-docfile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 ${libsrc}DOC: ${libsrc}make-docfile ${obj_src} ${lisp}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 rm -f ${libsrc}DOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 ${libsrc}make-docfile -d ${srcdir} ${obj_src} \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 ${mallocdocsrc} ${rallocdocsrc} ${lispdir}version.el \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 ${lisp} > ${libsrc}DOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 dump_elcs: dump-elcs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 dump-elcs: temacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 $(LOADPATH) ./temacs -batch -l ../prim/update-elc.el $(lisp) $(otherlisp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 ${libsrc}make-docfile:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 /* Lint Section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 LINT.c=$(LINT) $(LINTFLAGS) $(LINTINCLUDES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 LINTFILES= $(objs:.o=.ln)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 LINTINCLUDES = -Demacs -DHAVE_CONFIG_H $(MYCPPFLAG) -I. \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 -I${srcdir} LCCFLAGS C_SWITCH_MACHINE C_SWITCH_SYSTEM \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 C_SWITCH_SITE C_SWITCH_X_SITE C_SWITCH_X_MACHINE \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 C_SWITCH_X_SYSTEM $(LIBX11_INCLUDES)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1259 /* LINTFLAGS= -fd -m -p -s -u -v -x */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1260 LINTFLAGS= -fd -m -s -u -v -x
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 lint: $(LINTFILES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 $(LINT.c) $(LINTFILES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 /* end of Lint Section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 force:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 $(LWLIBBUILDDIR)/liblw.a: force
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 cd ${LWLIBBUILDDIR}; ${MAKE} ${MFLAGS}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 #ifdef DYNODUMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 $(DYNODUMPBUILDDIR)/dynodump.so: force
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 cd ${DYNODUMPBUILDDIR}; ${MAKE} ${MFLAGS}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 /* Some systems define this to cause parallel Make-ing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 #ifndef MAKE_PARALLEL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 #define MAKE_PARALLEL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 #ifdef DYNODUMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 #define DYNODUMP_DEPS $(DYNODUMPBUILDDIR)/dynodump.so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 #define DYNODUMP_DEPS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 #define TEMACS_DEPS MAKE_PARALLEL $(LOCALCPP) $(SHORT) $(STARTFILES) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 ${objs} ${otherobjs} OBJECTS_SYSTEM \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 OBJECTS_MACHINE LWLIB_DEPS DYNODUMP_DEPS prefix-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 #define TEMACS_LINK_ARGS YMF_PASS_LDFLAGS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 (${STARTFLAGS} ${LDFLAGS} LD_SWITCH_CALL_SHARED) -o $@ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 ${STARTFILES} ${objs} ${otherobjs} OBJECTS_SYSTEM \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 OBJECTS_MACHINE ${LIBES}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 temacs_deps: TEMACS_DEPS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 temacs: TEMACS_DEPS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 $(LD) LCCLINK TEMACS_LINK_ARGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 cemacs: TEMACS_DEPS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 $(LD) $(ENERGIZEP) TEMACS_LINK_ARGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1302 rtc_patch.o:
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1303 rtc_patch_area -o $@
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1304
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1305 rtcmacs: TEMACS_DEPS rtc_patch.o
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1306 rm -f temacs; $(MAKE) $(MAKE_FLAGS) temacs RTC_PATCH_O=rtc_patch.o
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1307 mv temacs rtcmacs
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1308
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1309 rtcrun: rtcmacs
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1310 dbx -q -C -c \
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1311 'dbxenv rtc_error_log_file_name /dev/fd/1; \
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1312 dbxenv suppress_startup_message 5.0; \
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1313 ignore POLL; \
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1314 check -access; \
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1315 suppress rui; \
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1316 runargs -batch -l loadup.el run-temacs -q; \
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1317 run' rtcmacs
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
1318
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 puremacs: TEMACS_DEPS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 $(PURIFY_PROG) $(LD) TEMACS_LINK_ARGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 quantmacs: TEMACS_DEPS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 $(QUANTIFY_PROG) $(LD) TEMACS_LINK_ARGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 covmacs: TEMACS_DEPS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 $(PURECOV_PROG) $(LD) TEMACS_LINK_ARGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 TopLevelEmacsShell.o : ${srcdir}/EmacsShell-sub.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 $(CC) -c $(ALL_CFLAGS) -DDEFINE_TOP_LEVEL_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 mv EmacsShell-sub.o TopLevelEmacsShell.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 TransientEmacsShell.o : ${srcdir}/EmacsShell-sub.c TopLevelEmacsShell.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 $(CC) -c $(ALL_CFLAGS) -DDEFINE_TRANSIENT_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 mv EmacsShell-sub.o TransientEmacsShell.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 #if USE_GCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 # define PIC_ARG -fpic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 # ifdef IRIX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 # define PIC_ARG -KPIC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 # define PIC_ARG -K pic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 # define EXTERNAL_CLIENT_MOTIF_OBJS_SHARED ExternalClient-Xm-shared.o extw-Xt-shared.o extw-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 # define EXTERNAL_CLIENT_XT_OBJS_SHARED ExternalClient-Xt-shared.o extw-Xt-shared.o extw-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 # define EXTERNAL_CLIENT_XLIB_OBJS_SHARED ExternalClient-Xlib-shared.o extw-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 # define EXTERNAL_CLIENT_MOTIF_OBJS_NONSHARED ExternalClient-Xm-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 # define EXTERNAL_CLIENT_XT_OBJS_NONSHARED ExternalClient-Xt-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 # define EXTERNAL_CLIENT_XLIB_OBJS_NONSHARED ExternalClient-Xlib-nonshared.o extw-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 /* Add dependencies so things work right with a parallel make */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 ExternalClient-Xm-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-shared.o ExternalClient-Xm-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 $(CC) -c PIC_ARG $(ALL_CFLAGS) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 mv ExternalClient.o ExternalClient-Xm-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 ExternalClient-Xt-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 $(CC) -c PIC_ARG $(ALL_CFLAGS) ${srcdir}/ExternalClient.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 mv ExternalClient.o ExternalClient-Xt-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 ExternalClient-Xlib-shared.o: ${srcdir}/ExternalClient-Xlib.c ExternalClient-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 $(CC) -c PIC_ARG $(ALL_CFLAGS) ${srcdir}/ExternalClient-Xlib.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 mv ExternalClient-Xlib.o ExternalClient-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 ExternalClient-Xm-nonshared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 $(CC) -c $(ALL_CFLAGS) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 mv ExternalClient.o ExternalClient-Xm-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 ExternalClient-Xt-nonshared.o: ${srcdir}/ExternalClient.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 $(CC) -c $(ALL_CFLAGS) ${srcdir}/ExternalClient.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 mv ExternalClient.o ExternalClient-Xt-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 ExternalClient-Xlib-nonshared.o: ${srcdir}/ExternalClient-Xlib.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 $(CC) -c $(ALL_CFLAGS) ${srcdir}/ExternalClient-Xlib.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 mv ExternalClient-Xlib.o ExternalClient-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 /* We compile the common files twice (once with PIC and once without)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 because on some systems, compiling with PIC but not linking into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 a shared library messes things up. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 extw-Xt-shared.o: ${srcdir}/extw-Xt.c extw-Xt-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 $(CC) -c PIC_ARG $(ALL_CFLAGS) ${srcdir}/extw-Xt.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 mv extw-Xt.o extw-Xt-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 extw-Xlib-shared.o: ${srcdir}/extw-Xlib.c extw-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 $(CC) -c PIC_ARG $(ALL_CFLAGS) ${srcdir}/extw-Xlib.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 mv extw-Xlib.o extw-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 extw-Xt-nonshared.o: ${srcdir}/extw-Xt.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 $(CC) -c $(ALL_CFLAGS) ${srcdir}/extw-Xt.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 mv extw-Xt.o extw-Xt-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 extw-Xlib-nonshared.o: ${srcdir}/extw-Xlib.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 $(CC) -c $(ALL_CFLAGS) ${srcdir}/extw-Xlib.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 mv extw-Xlib.o extw-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 libextcli_Xm.a: EXTERNAL_CLIENT_MOTIF_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 ar r libextcli_Xm.a EXTERNAL_CLIENT_MOTIF_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 libextcli_Xt.a: EXTERNAL_CLIENT_XT_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 ar r libextcli_Xt.a EXTERNAL_CLIENT_XT_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 libextcli_Xlib.a: EXTERNAL_CLIENT_XLIB_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 ar r libextcli_Xlib.a EXTERNAL_CLIENT_XLIB_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 #ifdef EXTW_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 libextcli_Xm.so.1: EXTERNAL_CLIENT_MOTIF_OBJS_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 EXTW_LINK(EXTERNAL_CLIENT_MOTIF_OBJS_SHARED, libextcli_Xm.so.1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 libextcli_Xt.so.1: EXTERNAL_CLIENT_XT_OBJS_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 EXTW_LINK(EXTERNAL_CLIENT_XT_OBJS_SHARED, libextcli_Xt.so.1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 libextcli_Xlib.so.1: EXTERNAL_CLIENT_XLIB_OBJS_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 EXTW_LINK(EXTERNAL_CLIENT_XLIB_OBJS_SHARED, libextcli_Xlib.so.1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 #endif /* EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 prefix-args: ${srcdir}/prefix-args.c config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 $(CC) $(ALL_CFLAGS) ${srcdir}/prefix-args.c -o prefix-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 /* These are needed for C compilation, on the systems that need them */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 #ifdef NEED_CPP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 CPP = ./localcpp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 localcpp:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 cd ${cppdir}; ${MAKE} ${MFLAGS} EMACS=-DEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 ln ${cppdir}cpp localcpp /* Name where ALL_CFLAGS will refer to it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 /* cc appears to be cretinous and require all of these to exist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 if -B is specified -- we can't use one local pass and let the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 others be the standard ones. What a loser.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 We can't even use ln, since they are probably
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 on different disks. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 cp /lib/ccom localccom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 -cp /lib/optim localoptim
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 -cp /lib/c2 localc2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 cp /bin/as localas
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 #else /* ! defined (NEED_CPP) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 CPP = $(CC) -E
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 #endif /* ! defined (NEED_CPP) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 #ifdef SHORTNAMES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 shortnames:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 cd ${shortnamesdir}; ${MAKE} ${MFLAGS}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 config.h: ${srcdir}/config.h.in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 @echo "The file config.h needs to be set up from config.h.in."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 exit 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 paths.h: ${srcdir}/paths.h.in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 @echo "The file paths.h needs to be set up from paths.h.in."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 exit 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 Emacs.ad.h: ${srcdir}/${etcdir}Emacs.ad
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 @echo "The file Emacs.ad.h needs to be set up from ${srcdir}/${etcdir}Emacs.ad"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 exit 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 /* Some machines have alloca built-in.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 They should define HAVE_ALLOCA, or may just let alloca.s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 be used but generate no code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 Some have it written in assembler in alloca.s.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 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
1470 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 #ifdef C_ALLOCA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 /* We could put something in alloca.c to #define free and malloc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 whenever emacs was #defined, but that's not appropriate for all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 users of alloca in Emacs. Check out ../lib-src/getopt.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 alloca.o : ${srcdir}/alloca.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 $(CC) -c $(CPPFLAGS) -Dfree=xfree -Dmalloc=xmalloc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 $(ALL_CFLAGS) $<
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 #ifndef HAVE_ALLOCA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 alloca.o : ${srcdir}/alloca.s config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 /* $(CPP) is cc -E, which may get confused by filenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 that do not end in .c. So copy file to a safe name. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 cp ${srcdir}/alloca.s allocatem.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 /* Remove any ^L, blank lines, and preprocessor comments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 since some assemblers barf on them. Use a different basename for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 output file, since some stupid compilers (Green Hill's) use that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 name for the intermediate assembler file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 $(CPP) $(CPPFLAGS) $(ALL_CFLAGS) allocatem.c | \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 sed -e 's/ //' -e 's/^#.*//' | \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 sed -n -e '/^..*$$/p' > allocax.s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 -rm -f alloca.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 /* Xenix, in particular, needs to run assembler via cc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 $(CC) -c allocax.s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 mv allocax.o alloca.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 rm -f allocax.s allocatem.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 #endif /* HAVE_ALLOCA */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 #endif /* ! defined (C_ALLOCA) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 #ifdef USE_LCC /* lcc doesn't do asm() yet */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 ecrt0.o: ${srcdir}/ecrt0.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 gcc -c -g -Demacs $<
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 #endif /* USE_LCC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 BTL_INCLUDES=-I$(BTLDIR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 # define BTL_COMPILE \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 -DEMACS_BTL -D`lucid-arch` -I. $(BTL_INCLUDES) $(BTLDIR)/$(@:.o=.c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 cadillac-btl.o cadillac-btl-process.o cadillac-btl-emacs.o:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 $(CC) $(CFLAGS) -c BTL_COMPILE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 # ifndef USE_LCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 cadillac-btl-asm.o:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 $(CC) $(CFLAGS) -c BTL_COMPILE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 # else /* lcc doesn't do asm() yet */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 cadillac-btl-asm.o:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 gcc -O -g -c BTL_COMPILE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 # endif /* lcc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 #endif /* EMACS_BTL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 #ifdef ENERGIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 energize.o: ${srcdir}/energize.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) ENERGIZE_INCLUDES $(BTL_INCLUDES) $<
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 #endif /* ENERGIZE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 #ifdef HAVE_NATIVE_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 # if defined (SUNOS4) || defined (SOLARIS2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 sunplay.o: ${srcdir}/sunplay.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 $(CC) -c $(ALL_CFLAGS) SOUND_CFLAGS $<
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 # endif /* SUNOS4 or SOLARIS2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 # ifdef hp9000s800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 hpplay.o: ${srcdir}/hpplay.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 $(CC) -c -Demacs $(ALL_CFLAGS) SOUND_CFLAGS $<
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 # endif /* hp9000s800 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 #endif /* HAVE_NATIVE_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 #ifdef HAVE_NAS_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 nas.o: ${srcdir}/nas.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 $(CC) -c $(ALL_CFLAGS) NAS_CFLAGS $<
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 #endif /* HAVE_NAS_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 /* System-specific programs to be made.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 OTHER_FILES, OBJECTS_SYSTEM and OBJECTS_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 select which of these should be compiled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 ${libsrc}emacstool: ${libsrc}emacstool.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 mostlyclean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 rm -f temacs puremacs quantmacs prefix-args xmakefile* core depend.* \#* *.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 rm -f ${libsrc}DOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 clean: mostlyclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 rm -f xemacs libextcli*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 /**/# This is used in making a distribution.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 /**/# Do not use it on development directories!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 distclean: clean versionclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 rm -f config.h paths.h Emacs.ad.h Makefile Makefile.in .pure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 realclean: distclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 rm -f TAGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 versionclean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 -rm -f xemacs emacs-* ${libsrc}DOC*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 extraclean: realclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 -rm -f *~ \#* m/?*~ s/?*~
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 /* 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
1565 avoid looking like a C comment to CPP. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 SOURCES = *.[chm] *.pswm [sm]/?* COPYING paths.h.in Makefile.in.in \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 config.h.in README COPYING ChangeLog vms.pp-trans
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 unlock:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 chmod u+w $(SOURCES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 relock:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 chmod -w $(SOURCES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 #ifdef __GNUC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 /*** Dependency processing using GCC ***/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 .c.dep:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 $(CC) -MM $(ALL_CFLAGS) $< > $*.dep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 .SUFFIXES: .dep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 obj_dep = $(objs:.o=.dep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 gnu-depend: $(obj_dep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 /* #### Needs a bit of work: it doesn't see the object files that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 we aren't compiling */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 cat $(obj_dep) | sh ${libsrc}process-gnu-depends.sh > depend.out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 #endif /* GCC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 /*** Dependency processing using makedepend ***/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 depend:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 : > depend.tmp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 makedepend -f depend.tmp -Dsubprocesses -DMOCKLISP_SUPPORT -DHAVE_X_WINDOWS -- $(CPPFLAGS) $(ALL_CFLAGS) -- *.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 sh ${libsrc}process-depends.sh < depend.tmp > depend.out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 /* Manually-generated dependencies (makedepend misbehaves on these) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 /* (actually makedepend does OK on these but we want to conditionalize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 them) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 ExternalClient-Xlib.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 ExternalClient-Xm.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 ExternalClient-Xm.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 ExternalClient-Xm.o: ExternalClient.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 ExternalClient-Xm.o: ExternalClientP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 ExternalClient-Xm.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 ExternalClient-Xm.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 ExternalClient-Xt.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 ExternalClient-Xt.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 ExternalClient-Xt.o: ExternalClient.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 ExternalClient-Xt.o: ExternalClientP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 ExternalClient-Xt.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 ExternalClient-Xt.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 ExternalShell.o: ExternalShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 ExternalShell.o: ExternalShellP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 ExternalShell.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 ExternalShell.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 ExternalShell.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 ExternalShell.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 ExternalShell.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 extw-Xlib-shared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 extw-Xlib-shared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 extw-Xt-shared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 extw-Xt-shared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 extw-Xt-shared.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 extw-Xlib-nonshared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 extw-Xlib-nonshared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 extw-Xt-nonshared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 extw-Xt-nonshared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 extw-Xt-nonshared.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 cadillac-btl.o: $(BTLDIR)/cadillac-btl.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 cadillac-btl.o: $(BTLDIR)/cadillac-btl.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 cadillac-btl.o: $(BTLDIR)/cadillac-btl-extern.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 cadillac-btl-asm.o: $(BTLDIR)/cadillac-btl-asm.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 cadillac-btl-asm.o: $(BTLDIR)/cadillac-btl.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 cadillac-btl-asm.o: $(BTLDIR)/cadillac-btl-extern.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 cadillac-btl-emacs.o: $(BTLDIR)/cadillac-btl-extern.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 cadillac-btl-process.o: $(BTLDIR)/cadillac-btl-process.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 cadillac-btl-process.o: $(BTLDIR)/cadillac-btl.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 cadillac-btl-process.o: $(BTLDIR)/cadillac-btl-extern.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 #endif /* EMACS_BTL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 /* (makedepend definitely misbehaves on these) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 sgiplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 sgiplay.o: libst.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 unexconvex.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 unexec.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 unexaix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 unexalpha.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 unexapollo.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 unexconvex.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 unexec.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 unexelf.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 unexenix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 unexfreebsd.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 unexhp9k3.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 unexhp9k800.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 unexmips.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 unexsunos4.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 /* Dependencies generated by 'make depend' */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 EmacsFrame.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 EmacsFrame.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 EmacsFrame.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 EmacsFrame.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 EmacsFrame.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 EmacsFrame.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 EmacsFrame.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 EmacsFrame.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 EmacsFrame.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 EmacsFrame.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 EmacsFrame.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 EmacsFrame.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 EmacsFrame.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 EmacsFrame.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 EmacsFrame.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 EmacsFrame.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 EmacsFrame.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 EmacsFrame.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 EmacsFrame.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 EmacsFrame.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 EmacsFrame.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 EmacsFrame.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 EmacsFrame.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 EmacsFrame.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 EmacsFrame.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 EmacsFrame.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 EmacsFrame.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 EmacsFrame.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 EmacsFrame.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 EmacsManager.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 EmacsManager.o: EmacsManagerP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 EmacsManager.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 EmacsManager.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 EmacsManager.o: xmmanagerp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 EmacsShell-sub.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 EmacsShell-sub.o: EmacsShellP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 EmacsShell-sub.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 EmacsShell-sub.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 EmacsShell-sub.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 EmacsShell.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 EmacsShell.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 EmacsShell.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 abbrev.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 abbrev.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 abbrev.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 abbrev.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 abbrev.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 abbrev.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 abbrev.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 abbrev.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 abbrev.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 abbrev.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 abbrev.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 alloc.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 alloc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 alloc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 alloc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 alloc.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 alloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 alloc.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 alloc.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 alloc.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 alloc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 alloc.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 alloc.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 alloc.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 alloc.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 alloc.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 alloc.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 alloc.o: puresize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 alloc.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 alloc.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 alloc.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 alloc.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 alloc.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 alloc.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 alloca.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 blocktype.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 blocktype.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 blocktype.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 buffer.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 buffer.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 buffer.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 buffer.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 buffer.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 buffer.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 buffer.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 buffer.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 buffer.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 buffer.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 buffer.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 buffer.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 buffer.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 buffer.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 buffer.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 buffer.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 buffer.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 buffer.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 buffer.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 buffer.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 buffer.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 buffer.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 buffer.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 buffer.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 bytecode.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 bytecode.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 bytecode.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 bytecode.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 bytecode.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 bytecode.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 callint.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 callint.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 callint.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 callint.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 callint.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 callint.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 callint.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 callint.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 callint.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 callint.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 callint.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 callint.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 callint.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 callproc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 callproc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 callproc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 callproc.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 callproc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 callproc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 callproc.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 callproc.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 callproc.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 callproc.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 callproc.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 callproc.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 callproc.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 callproc.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 callproc.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 callproc.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 callproc.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 callproc.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 casefiddle.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 casefiddle.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 casefiddle.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 casefiddle.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 casefiddle.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 casefiddle.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 casefiddle.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 casefiddle.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 casetab.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 casetab.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 casetab.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 casetab.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 casetab.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 casetab.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 cm.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 cm.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 cm.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 cm.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 cm.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 cm.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 cm.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 cm.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 cm.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 cm.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 cm.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 cm.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 cm.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 cm.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 cm.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 cmdloop.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 cmdloop.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 cmdloop.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 cmdloop.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 cmdloop.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 cmdloop.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 cmdloop.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 cmdloop.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 cmdloop.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 cmdloop.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 cmdloop.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 cmdloop.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 cmdloop.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 cmdloop.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 cmdloop.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 cmdloop.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 cmdloop.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 cmdloop.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 cmdloop.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 cmds.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 cmds.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 cmds.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 cmds.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 cmds.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 cmds.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 cmds.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 cmds.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 console-stream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 console-stream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 console-stream.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 console-stream.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 console-stream.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 console-stream.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 console-stream.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 console-stream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 console-stream.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 console-stream.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 console-stream.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 console-stream.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 console-stream.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 console-stream.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 console-stream.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 console-stream.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 console-stream.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 console-stream.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 console-stream.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 console-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 console-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 console-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 console-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 console-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 console-tty.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 console-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 console-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 console-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 console-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 console-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 console-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 console-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 console-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 console-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 console-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 console-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 console-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 console-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 console-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 console-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 console-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 console-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 console-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 console-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 console-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 console-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 console-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 console-x.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 console-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 console-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 console.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 console.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 console.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 console.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 console.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 console.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 console.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 console.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 console.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 console.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 console.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 console.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 console.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 console.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 console.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 console.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 console.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 console.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 console.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 console.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 data.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 data.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 data.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 data.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 data.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 data.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 data.o: sysfloat.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 database.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 database.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 database.o: database.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 database.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 debug.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 debug.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 debug.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 debug.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 debug.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 device-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 device-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 device-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 device-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 device-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 device-tty.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 device-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 device-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 device-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 device-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 device-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 device-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 device-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 device-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 device-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 device-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 device-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 device-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 device-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 device-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 device-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 device-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 device-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 device-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 device-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 device-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 device-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 device-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 device-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 device-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 device-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 device-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 device-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 device-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 device-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 device-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 device-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 device-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 device-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 device-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 device-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 device-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 device-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 device-x.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 device-x.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 device-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 device-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 device-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 device-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 device-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 device-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 device-x.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 device.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 device.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 device.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 device.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 device.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 device.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 device.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 device.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 device.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 device.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 device.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 device.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 device.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 device.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 device.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 device.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 device.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 device.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 device.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 device.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 device.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 dgif_lib.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 dgif_lib.o: gif_lib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 dialog-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 dialog-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 dialog-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 dialog-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 dialog-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 dialog-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 dialog-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 dialog-x.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 dialog-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 dialog-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 dialog-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 dialog-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 dialog-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 dialog-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 dialog-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 dialog-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 dialog-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 dialog-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 dialog-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 dialog-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 dialog-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 dialog-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 dialog-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 dialog-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 dialog-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 dialog-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 dialog.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 dialog.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 dialog.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 dired.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 dired.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 dired.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 dired.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 dired.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 dired.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 dired.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 dired.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 dired.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 dired.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 doc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 doc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 doc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 doc.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 doc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 doc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 doc.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 doc.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 doc.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 doprnt.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 doprnt.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 doprnt.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 doprnt.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 doprnt.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 doprnt.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 dynarr.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 dynarr.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 dynarr.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 ecrt0.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 editfns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 editfns.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 editfns.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 editfns.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 editfns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 editfns.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 editfns.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 editfns.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 editfns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 editfns.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 editfns.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 editfns.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 editfns.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 editfns.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 editfns.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 editfns.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 editfns.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 editfns.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 editfns.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 editfns.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 editfns.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 editfns.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 elhash.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 elhash.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 elhash.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 elhash.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 elhash.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 elhash.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 emacs.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 emacs.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 emacs.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 emacs.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 emacs.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 emacs.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 emacs.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 emacs.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 emacs.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 emacs.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 emacs.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 emacs.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 emacs.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 emacs.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 energize.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 epoch.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 epoch.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 epoch.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 epoch.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 epoch.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 epoch.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 epoch.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 epoch.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 epoch.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 epoch.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 epoch.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 epoch.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 epoch.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 epoch.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 epoch.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 epoch.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 epoch.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 eval.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 eval.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 eval.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 eval.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 eval.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 eval.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 eval.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 eval.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 eval.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 eval.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 eval.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 event-Xt.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 event-Xt.o: Emacs.ad.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 event-Xt.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 event-Xt.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 event-Xt.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 event-Xt.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 event-Xt.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 event-Xt.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 event-Xt.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 event-Xt.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 event-Xt.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 event-Xt.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 event-Xt.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 event-Xt.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 event-Xt.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 event-Xt.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 event-Xt.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 event-Xt.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 event-Xt.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 event-Xt.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 event-Xt.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 event-Xt.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 event-Xt.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 event-Xt.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 event-Xt.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 event-Xt.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 event-Xt.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 event-Xt.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 event-Xt.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 event-Xt.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 event-stream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 event-stream.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 event-stream.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 event-stream.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 event-stream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 event-stream.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 event-stream.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 event-stream.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 event-stream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 event-stream.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 event-stream.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 event-stream.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 event-stream.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 event-stream.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 event-stream.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 event-stream.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 event-stream.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 event-stream.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 event-stream.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 event-stream.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 event-stream.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 event-stream.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 event-stream.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 event-stream.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 event-stream.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 event-stream.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 event-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 event-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 event-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 event-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 event-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 event-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 event-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 event-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 event-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 event-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 event-tty.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 event-tty.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 event-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 event-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 event-tty.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 event-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 event-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 event-tty.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 event-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 event-unixoid.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 event-unixoid.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 event-unixoid.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 event-unixoid.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 event-unixoid.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 event-unixoid.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 event-unixoid.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 event-unixoid.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 event-unixoid.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 event-unixoid.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 event-unixoid.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 event-unixoid.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 event-unixoid.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 event-unixoid.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 event-unixoid.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 events.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 events.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 events.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 events.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 events.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 events.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 events.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 events.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 events.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 events.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 events.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 events.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 events.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 events.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 events.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 events.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 events.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 events.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 events.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 events.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 events.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 events.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 events.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 events.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 extents.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 extents.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 extents.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 extents.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 extents.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 extents.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 extents.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 extents.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 extents.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 extents.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 extents.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 extents.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 extents.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 extents.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 extents.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 extents.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 extents.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 extents.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 extents.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 extents.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 extents.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 extents.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 extents.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 faces.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 faces.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 faces.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 faces.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 faces.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 faces.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 faces.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 faces.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 faces.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 faces.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 faces.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 faces.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 faces.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 faces.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 faces.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 faces.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 faces.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 faces.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 faces.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 faces.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 faces.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 faces.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 faces.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 faces.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 faces.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 fileio.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 fileio.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 fileio.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 fileio.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 fileio.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 fileio.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 fileio.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 fileio.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 fileio.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 fileio.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 fileio.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 fileio.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 fileio.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 fileio.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 fileio.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 fileio.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 fileio.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 fileio.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 fileio.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 fileio.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 fileio.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 fileio.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 fileio.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 fileio.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 fileio.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 filelock.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 filelock.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 filelock.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 filelock.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 filelock.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 filelock.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 filelock.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 filelock.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 filelock.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 filemode.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 filemode.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 filemode.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 filemode.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 floatfns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 floatfns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 floatfns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 floatfns.o: sysfloat.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 fns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 fns.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 fns.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 fns.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 fns.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 fns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 fns.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 fns.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 fns.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 fns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 fns.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 fns.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 fns.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 fns.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 fns.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 fns.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 fns.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 fns.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 font-lock.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 font-lock.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 font-lock.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 font-lock.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 font-lock.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 font-lock.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 font-lock.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 frame-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 frame-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 frame-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 frame-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 frame-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 frame-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 frame-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 frame-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 frame-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 frame-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 frame-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 frame-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 frame-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 frame-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 frame-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 frame-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 frame-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 frame-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 frame-x.o: ExternalShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 frame-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 frame-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 frame-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 frame-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 frame-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 frame-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 frame-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 frame-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 frame-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 frame-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 frame-x.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 frame-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 frame-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 frame-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 frame-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 frame-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 frame-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 frame-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 frame-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 frame-x.o: scrollbar-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 frame-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 frame-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 frame-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 frame-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 frame-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 frame-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 frame-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 frame-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 frame-x.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 frame.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 frame.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 frame.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 frame.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 frame.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 frame.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 frame.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 frame.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 frame.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 frame.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 frame.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 frame.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 frame.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 frame.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 frame.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 frame.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 frame.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 frame.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 frame.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 frame.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 frame.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 frame.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 free-hook.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 free-hook.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 free-hook.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 free-hook.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 general.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 general.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 general.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 getloadavg.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 getloadavg.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 getloadavg.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 gif_err.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 gif_err.o: gif_lib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 gifalloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 gifalloc.o: gif_lib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 glyphs-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 glyphs-x.o: ${srcdir}/${etcdir}xemacs.xbm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 glyphs-x.o: bitmaps.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 glyphs-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 glyphs-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 glyphs-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 glyphs-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 glyphs-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 glyphs-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 glyphs-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 glyphs-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 glyphs-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 glyphs-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 glyphs-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 glyphs-x.o: gif_lib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 glyphs-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 glyphs-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 glyphs-x.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 glyphs-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 glyphs-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 glyphs-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 glyphs-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 glyphs-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 glyphs-x.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 glyphs-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 glyphs-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 glyphs-x.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 glyphs.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 glyphs.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 glyphs.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 glyphs.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 glyphs.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 glyphs.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 glyphs.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 glyphs.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 glyphs.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 glyphs.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 glyphs.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 glyphs.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 glyphs.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 glyphs.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 glyphs.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 glyphs.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 glyphs.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 glyphs.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 glyphs.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 gmalloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 gmalloc.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 gui-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 gui-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 gui-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 gui-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 gui-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 gui-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 gui-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 gui-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 gui-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 gui-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 gui-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 gui-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 gui-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 gui-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 gui-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 gui-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 gui-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 gui-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 gui.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 gui.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 gui.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 hash.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 hash.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 hash.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 hash.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 hash.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 hftctl.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 hftctl.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 hftctl.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 hpplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 hpplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 hpplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 indent.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 indent.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 indent.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 indent.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 indent.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 indent.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 indent.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557 indent.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 indent.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 indent.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560 indent.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 indent.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 indent.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 indent.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 indent.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 indent.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 indent.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 indent.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 indent.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 inline.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 inline.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 inline.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 inline.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 inline.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 inline.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 inline.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 inline.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 inline.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 inline.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 inline.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 inline.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 inline.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 inline.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 inline.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 inline.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 inline.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 inline.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 inline.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 inline.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 inline.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 inline.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 inline.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 inline.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 inline.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 inline.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 inline.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 inline.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 inline.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 inline.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 inline.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 inline.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 inline.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 insdel.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 insdel.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 insdel.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 insdel.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 insdel.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 insdel.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 insdel.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 insdel.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 insdel.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 insdel.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 insdel.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 insdel.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 insdel.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 insdel.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 insdel.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 insdel.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 insdel.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 intl.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 intl.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 intl.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 intl.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 intl.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 intl.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 intl.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 keymap.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 keymap.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 keymap.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 keymap.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 keymap.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 keymap.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 keymap.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 keymap.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 keymap.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 keymap.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 keymap.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 keymap.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 keymap.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 keymap.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 keymap.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 keymap.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 keymap.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 keymap.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 keymap.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 keymap.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 keymap.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 keymap.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 libsst.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 libsst.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 libsst.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 libsst.o: libsst.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 linuxplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 linuxplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 linuxplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 lread.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 lread.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 lread.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 lread.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 lread.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660 lread.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 lread.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 lread.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 lread.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 lread.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 lread.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 lread.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 lstream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 lstream.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 lstream.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 lstream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 lstream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 lstream.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 lstream.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 lstream.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 macros.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 macros.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 macros.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 macros.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 macros.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 macros.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 macros.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 macros.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 macros.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 macros.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 macros.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 macros.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 macros.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 macros.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 macros.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 macros.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 macros.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 macros.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 macros.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 macros.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 malloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 malloc.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 marker.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 marker.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 marker.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 marker.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 marker.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 md5.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 md5.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 md5.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 md5.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 md5.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 md5.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 menubar-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 menubar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 menubar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 menubar-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 menubar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 menubar-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 menubar-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 menubar-x.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 menubar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 menubar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 menubar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 menubar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 menubar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 menubar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 menubar-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 menubar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 menubar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 menubar-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 menubar-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 menubar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 menubar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 menubar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 menubar-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 menubar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 menubar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 menubar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 menubar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 menubar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 menubar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 menubar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 menubar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 menubar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 menubar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 menubar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 menubar.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 menubar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 menubar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 menubar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 menubar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 menubar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 minibuf.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 minibuf.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 minibuf.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 minibuf.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 minibuf.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 minibuf.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 minibuf.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 minibuf.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 minibuf.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 minibuf.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 minibuf.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 minibuf.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 minibuf.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 minibuf.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 minibuf.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 minibuf.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 minibuf.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 minibuf.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 minibuf.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 minibuf.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 mocklisp.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 mocklisp.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 mocklisp.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 mocklisp.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 mocklisp.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 msdos.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 nas.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 nas.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 nas.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2777 objects-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 objects-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 objects-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 objects-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781 objects-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 objects-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 objects-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 objects-tty.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785 objects-tty.o: objects-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 objects-tty.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 objects-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 objects-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 objects-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 objects-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791 objects-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 objects-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 objects-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 objects-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 objects-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 objects-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 objects-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 objects-x.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 objects-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 objects-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 objects-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 objects-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 objects.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 objects.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 objects.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 objects.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 objects.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 objects.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 objects.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 objects.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 objects.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 objects.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 objects.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 objects.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 objects.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 objects.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 objects.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 objects.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 objects.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 objects.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 opaque.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 opaque.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 opaque.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 opaque.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 print.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 print.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 print.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 print.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 print.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 print.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 print.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 print.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 print.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 print.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 print.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 print.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 print.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 print.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 print.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 print.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 print.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 print.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 print.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844 print.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 print.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 process.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 process.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 process.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 process.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 process.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 process.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 process.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 process.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 process.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 process.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 process.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 process.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 process.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 process.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 process.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 process.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 process.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 process.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 process.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 process.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 process.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 process.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 process.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 process.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 process.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 process.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 process.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 process.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 profile.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 profile.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 profile.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 profile.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 profile.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 profile.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 profile.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 pure.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 pure.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 pure.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 pure.o: puresize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 ralloc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 ralloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 ralloc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 ralloc.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 rangetab.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 rangetab.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891 rangetab.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892 realpath.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 redisplay-output.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 redisplay-output.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 redisplay-output.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896 redisplay-output.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 redisplay-output.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 redisplay-output.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 redisplay-output.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 redisplay-output.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 redisplay-output.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 redisplay-output.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 redisplay-output.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 redisplay-output.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 redisplay-output.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 redisplay-output.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 redisplay-output.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 redisplay-output.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 redisplay-output.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 redisplay-output.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 redisplay-output.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 redisplay-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 redisplay-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 redisplay-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 redisplay-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 redisplay-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 redisplay-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 redisplay-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 redisplay-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 redisplay-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 redisplay-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 redisplay-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 redisplay-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 redisplay-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 redisplay-tty.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 redisplay-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 redisplay-tty.o: objects-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 redisplay-tty.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929 redisplay-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930 redisplay-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 redisplay-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 redisplay-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 redisplay-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 redisplay-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 redisplay-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 redisplay-tty.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 redisplay-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938 redisplay-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 redisplay-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 redisplay-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941 redisplay-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 redisplay-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 redisplay-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 redisplay-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 redisplay-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 redisplay-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 redisplay-x.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 redisplay-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 redisplay-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 redisplay-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 redisplay-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 redisplay-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 redisplay-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 redisplay-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 redisplay-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956 redisplay-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 redisplay-x.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 redisplay-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 redisplay-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 redisplay-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 redisplay-x.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 redisplay-x.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 redisplay-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 redisplay-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 redisplay-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 redisplay-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 redisplay-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 redisplay-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 redisplay-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 redisplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 redisplay.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 redisplay.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 redisplay.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 redisplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 redisplay.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 redisplay.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 redisplay.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978 redisplay.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 redisplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 redisplay.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 redisplay.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 redisplay.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 redisplay.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 redisplay.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 redisplay.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 redisplay.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 redisplay.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 redisplay.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 redisplay.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 redisplay.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 redisplay.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 redisplay.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 redisplay.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 regex.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 regex.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 regex.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 regex.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998 regex.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999 regex.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000 regex.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 scrollbar-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 scrollbar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 scrollbar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004 scrollbar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005 scrollbar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006 scrollbar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 scrollbar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 scrollbar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009 scrollbar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010 scrollbar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 scrollbar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 scrollbar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013 scrollbar-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014 scrollbar-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015 scrollbar-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016 scrollbar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 scrollbar-x.o: scrollbar-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018 scrollbar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 scrollbar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020 scrollbar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 scrollbar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022 scrollbar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023 scrollbar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 scrollbar.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 scrollbar.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 scrollbar.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 scrollbar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 scrollbar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 scrollbar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 scrollbar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 scrollbar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032 scrollbar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 scrollbar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 scrollbar.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 scrollbar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036 scrollbar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 scrollbar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 scrollbar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 scrollbar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 search.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041 search.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 search.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043 search.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 search.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045 search.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 search.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 search.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 search.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 search.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050 signal.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3051 signal.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052 signal.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053 signal.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3054 signal.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 signal.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 signal.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057 signal.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 signal.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3059 signal.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060 signal.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 signal.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 signal.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 signal.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 sound.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065 sound.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066 sound.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 sound.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 sound.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 sound.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 sound.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 sound.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 sound.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 sound.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 sound.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 sound.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 sound.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 specifier.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078 specifier.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 specifier.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 specifier.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081 specifier.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082 specifier.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 specifier.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 specifier.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 specifier.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 specifier.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 specifier.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 specifier.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 specifier.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 specifier.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 specifier.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 specifier.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 strftime.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094 strftime.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095 strftime.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 sunOS-fix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097 sunplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098 sunplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 sunplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 sunplay.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101 sunpro.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 sunpro.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 sunpro.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104 symbols.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 symbols.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 symbols.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107 symbols.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 symbols.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 symbols.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 symbols.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111 syntax.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112 syntax.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113 syntax.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 syntax.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3115 syntax.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 syntax.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117 syntax.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3118 syntax.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119 sysdep.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 sysdep.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121 sysdep.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122 sysdep.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3123 sysdep.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124 sysdep.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125 sysdep.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126 sysdep.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127 sysdep.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128 sysdep.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 sysdep.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3130 sysdep.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131 sysdep.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 sysdep.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133 sysdep.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134 sysdep.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135 sysdep.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136 sysdep.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3137 sysdep.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3138 sysdep.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3139 sysdep.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3140 sysdep.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3141 sysdep.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142 sysdep.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143 sysdep.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144 termcap.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145 termcap.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3146 termcap.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3147 termcap.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3148 termcap.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149 termcap.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 terminfo.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151 toolbar-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152 toolbar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153 toolbar-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3154 toolbar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 toolbar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156 toolbar-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3157 toolbar-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 toolbar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159 toolbar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3160 toolbar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3161 toolbar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162 toolbar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3163 toolbar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164 toolbar-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165 toolbar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3166 toolbar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3167 toolbar-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3168 toolbar-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3169 toolbar-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170 toolbar-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171 toolbar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172 toolbar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3173 toolbar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174 toolbar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 toolbar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176 toolbar-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177 toolbar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 toolbar-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179 toolbar-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 toolbar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181 toolbar.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182 toolbar.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 toolbar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 toolbar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 toolbar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186 toolbar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 toolbar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188 toolbar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189 toolbar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190 toolbar.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191 toolbar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 toolbar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 toolbar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 toolbar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 toolbar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 tooltalk.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 tooltalk.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198 tooltalk.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 tooltalk.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3200 tooltalk.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3201 tooltalk.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202 tooltalk.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3203 tooltalk.o: tooltalk.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3204 tparam.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205 undo.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 undo.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207 undo.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208 undo.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 undo.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 undo.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 vm-limit.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 vm-limit.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 vm-limit.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214 vm-limit.o: mem-limits.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 vmsproc.o: vmsproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216 window.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217 window.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 window.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219 window.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 window.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 window.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222 window.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 window.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 window.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225 window.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 window.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 window.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 window.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 window.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 window.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3231 window.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 window.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233 window.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234 window.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235 xgccache.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 xgccache.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237 xgccache.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238 xgccache.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3239 xgccache.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240 xmu.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 xselect.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3242 xselect.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 xselect.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3244 xselect.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245 xselect.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246 xselect.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247 xselect.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248 xselect.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 xselect.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3250 xselect.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251 xselect.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3252 xselect.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3253 xselect.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254 xselect.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255 xselect.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256 xselect.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 xselect.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258 xselect.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 xselect.o: xintrinsic.h