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