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