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