annotate src/Makefile.in.in @ 102:a145efe76779 r20-1b3

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