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