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