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