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