aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2001-09-21 07:45:37 +0000
committerEli Zaretskii2001-09-21 07:45:37 +0000
commita0528984d5c1e1da4d48d8433fe382e2e29a5b09 (patch)
tree59991a9ed6a2ad182c558d07785d527e209700cb /src
parent4e9d1a5883e7aa5027bc434c8fec4e4a9b2e8072 (diff)
downloademacs-a0528984d5c1e1da4d48d8433fe382e2e29a5b09.tar.gz
emacs-a0528984d5c1e1da4d48d8433fe382e2e29a5b09.zip
(shortlisp): Add env. From Markus Rost.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/Makefile.in1227
2 files changed, 1231 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 18af4f7ddf5..29375b80679 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12001-09-21 Markus Rost <rost@math.ohio-state.edu>
2
3 * Makefile.in (shortlisp): Add ../lisp/env.elc.
4
12001-09-20 Gerd Moellmann <gerd@gnu.org> 52001-09-20 Gerd Moellmann <gerd@gnu.org>
2 6
3 * process.c (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ 7 * process.c (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
diff --git a/src/Makefile.in b/src/Makefile.in
new file mode 100644
index 00000000000..10716100fb3
--- /dev/null
+++ b/src/Makefile.in
@@ -0,0 +1,1227 @@
1# Makefile for GNU Emacs.
2# Copyright (C) 1985, 87, 88, 93, 94, 95, 99, 2000, 2001
3# Free Software Foundation, Inc.
4
5# This file is part of GNU Emacs.
6
7# GNU Emacs is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2, or (at your option)
10# any later version.
11
12# GNU Emacs is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16
17# You should have received a copy of the GNU General Public License
18# along with GNU Emacs; 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
23# Note that this file is edited by msdos/sed1v2.inp for MSDOS. That
24# script may need modifying in sync with changes made here. Try to
25# avoid shell-ism because the DOS build has to use the DOS shell.
26
27# Don't try to replace the ccp processing using autoconf facilities,
28# says rms.
29
30# Here are the things that we expect ../configure to edit.
31# We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
32srcdir=@srcdir@
33VPATH=@srcdir@
34CC=@CC@
35CPP=@CPP@
36CFLAGS=@CFLAGS@
37CPPFLAGS=@CPPFLAGS@
38LDFLAGS=@LDFLAGS@
39LN_S=@LN_S@
40# Substitute an assignment for the MAKE variable, because
41# BSD doesn't have it as a default.
42@SET_MAKE@
43# Don't use LIBS. configure puts stuff in it that either shouldn't be
44# linked with Emacs or is duplicated by the cpp stuff below.
45# LIBS = @LIBS@
46LIBOBJS = @LIBOBJS@
47
48# On Xenix and the IBM RS6000, double-dot gets screwed up.
49dot = .
50dotdot = ${dot}${dot}
51lispsource = ${srcdir}/$(dot)$(dot)/lisp/
52libsrc = $(dot)$(dot)/lib-src/
53etc = $(dot)$(dot)/etc/
54oldXMenudir = $(dot)$(dot)/oldXMenu/
55lwlibdir = $(dot)$(dot)/lwlib/
56
57# Configuration files for .o files to depend on.
58M_FILE = ${srcdir}/@machfile@
59S_FILE = ${srcdir}/@opsysfile@
60config_h = config.h $(M_FILE) $(S_FILE)
61
62# ========================== start of cpp stuff =======================
63/* From here on, comments must be done in C syntax. */
64
65C_SWITCH_SYSTEM=
66
67/* just to be sure the sh is used */
68SHELL=/bin/sh
69
70#define THIS_IS_MAKEFILE
71#define NO_SHORTNAMES
72#define NOT_C_CODE
73#include "config.h"
74
75/* We won't really call alloca;
76 don't let the file name alloca.c get messed up. */
77#ifdef alloca
78#undef alloca
79#endif
80
81/* Don't let the file name mktime.c get messed up. */
82#ifdef mktime
83#undef mktime
84#endif
85
86/* Use HAVE_X11 as an alias for X11 in this file
87 to avoid problems with X11 as a subdirectory name
88 in -I and other such options which pass through this file. */
89
90#ifdef X11
91#define HAVE_X11
92#undef X11
93#endif
94
95/* On some machines #define register is done in config;
96 don't let it interfere with this file. */
97#undef register
98
99/* On some systems we may not be able to use the system make command. */
100#ifdef MAKE_COMMAND
101MAKE = MAKE_COMMAND
102#endif
103
104#ifdef C_COMPILER
105CC = C_COMPILER
106#endif
107
108/* GNU libc requires ORDINARY_LINK so that its own crt0 is used.
109 Linux is an exception because it uses a funny variant of GNU libc. */
110#ifdef __GNU_LIBRARY__
111#ifndef LINUX
112#define ORDINARY_LINK
113#endif
114#endif
115
116/* Some machines don't find the standard C libraries in the usual place. */
117#ifndef ORDINARY_LINK
118#ifndef LIB_STANDARD
119#define LIB_STANDARD -lc
120#endif
121#else
122#ifndef LIB_STANDARD
123#define LIB_STANDARD
124#endif
125#endif
126
127/* Unless inhibited or changed, use -lg to link for debugging. */
128#ifndef LIBS_DEBUG
129#define LIBS_DEBUG -lg
130#endif
131
132/* Some s/SYSTEM.h files define this to request special libraries. */
133#ifndef LIBS_SYSTEM
134#define LIBS_SYSTEM
135#endif
136
137/* Some m/MACHINE.h files define this to request special libraries. */
138#ifndef LIBS_MACHINE
139#define LIBS_MACHINE
140#endif
141
142#ifndef LIB_MATH
143# define LIB_MATH -lm
144#endif /* LIB_MATH */
145
146/* Some s/SYSTEM.h files define this to request special switches in ld. */
147#ifndef LD_SWITCH_SYSTEM
148#if !defined (__GNUC__) && (defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF)))
149#define LD_SWITCH_SYSTEM -X
150#else /* ! defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF)) */
151#define LD_SWITCH_SYSTEM
152#endif /* ! defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF)) */
153#endif /* LD_SWITCH_SYSTEM */
154
155/* This holds special options for linking temacs
156 that should be used for linking anything else. */
157#ifndef LD_SWITCH_SYSTEM_TEMACS
158#define LD_SWITCH_SYSTEM_TEMACS
159#endif
160
161/* Some m/MACHINE.h files define this to request special switches in ld. */
162#ifndef LD_SWITCH_MACHINE
163#define LD_SWITCH_MACHINE
164#endif
165
166/* This holds special options for linking temacs
167 that should be used for linking anything else. */
168#ifndef LD_SWITCH_MACHINE_TEMACS
169#define LD_SWITCH_MACHINE_TEMACS
170#endif
171
172/* Some m/MACHINE.h files define this to request special switches in cc. */
173#ifndef C_SWITCH_MACHINE
174#define C_SWITCH_MACHINE
175#endif
176
177/* Some s/SYSTEM.h files define this to request special switches in cc. */
178#ifndef C_SWITCH_SYSTEM
179#define C_SWITCH_SYSTEM
180#endif
181
182/* These macros are for switches specifically related to X Windows. */
183#ifndef C_SWITCH_X_MACHINE
184#define C_SWITCH_X_MACHINE
185#endif
186
187#ifndef C_SWITCH_X_SYSTEM
188#define C_SWITCH_X_SYSTEM
189#endif
190
191#ifndef C_SWITCH_X_SITE
192#define C_SWITCH_X_SITE
193#endif
194
195#ifndef LD_SWITCH_X_SITE
196#define LD_SWITCH_X_SITE
197#endif
198
199#ifndef LD_SWITCH_X_DEFAULT
200#define LD_SWITCH_X_DEFAULT
201#endif
202
203/* These can be passed in from config.h to define special load and
204 compile switches needed by individual sites */
205#ifndef LD_SWITCH_SITE
206#define LD_SWITCH_SITE
207#endif
208
209#ifndef C_SWITCH_SITE
210#define C_SWITCH_SITE
211#endif
212
213#ifndef ORDINARY_LINK
214
215#ifndef CRT0_COMPILE
216#define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS) C_SWITCH_ASM
217#endif
218
219#ifndef START_FILES
220#ifdef NO_REMAP
221#ifdef COFF_ENCAPSULATE
222#define START_FILES pre-crt0.o /usr/local/lib/gcc-crt0.o
223#else /* ! defined (COFF_ENCAPSULATE) */
224#define START_FILES pre-crt0.o /lib/crt0.o
225#endif /* ! defined (COFF_ENCAPSULATE) */
226#else /* ! defined (NO_REMAP) */
227#define START_FILES ecrt0.o
228#endif /* ! defined (NO_REMAP) */
229#endif /* START_FILES */
230STARTFILES = START_FILES
231
232#else /* ORDINARY_LINK */
233
234/* config.h might want to force START_FILES anyway */
235#ifdef START_FILES
236STARTFILES = START_FILES
237#endif /* START_FILES */
238
239#endif /* not ORDINARY_LINK */
240
241
242/* cc switches needed to make `asm' keyword work.
243 Nothing special needed on most machines. */
244#ifndef C_SWITCH_ASM
245#define C_SWITCH_ASM
246#endif
247
248#ifdef USE_X_TOOLKIT
249#define USE_@X_TOOLKIT_TYPE@
250TOOLKIT_DEFINES = -DUSE_@X_TOOLKIT_TYPE@
251#else
252TOOLKIT_DEFINES =
253#endif
254
255/* DO NOT use -R. There is a special hack described in lastfile.c
256 which is used instead. Some initialized data areas are modified
257 at initial startup, then labeled as part of the text area when
258 Emacs is dumped for the first time, and never changed again. */
259
260/* -Demacs is needed to make some files produce the correct version
261 for use in Emacs.
262
263 -DHAVE_CONFIG_H is needed for some other files to take advantage of
264 the information in `config.h'. */
265
266/* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM
267 since it may have -I options that should override those two. */
268ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(TOOLKIT_DEFINES) $(MYCPPFLAG) -I. -I${srcdir} C_SWITCH_MACHINE C_SWITCH_SYSTEM C_SWITCH_SITE C_SWITCH_X_SITE C_SWITCH_X_MACHINE C_SWITCH_X_SYSTEM ${CFLAGS}
269.c.o:
270 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
271
272#ifndef LIBX10_MACHINE
273#define LIBX10_MACHINE
274#endif
275
276#ifndef LIBX11_MACHINE
277#define LIBX11_MACHINE
278#endif
279
280#ifndef LIBX10_SYSTEM
281#define LIBX10_SYSTEM
282#endif
283
284#ifndef LIBX11_SYSTEM
285#define LIBX11_SYSTEM
286#endif
287
288#ifndef LIB_X11_LIB
289#define LIB_X11_LIB -lX11
290#endif
291
292#ifdef HAVE_X_WINDOWS
293#ifdef HAVE_MENUS
294
295/* Include xmenu.o in the list of X object files. */
296XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o
297
298/* The X Menu stuff is present in the X10 distribution, but missing
299 from X11. If we have X10, just use the installed library;
300 otherwise, use our own copy. */
301#ifdef HAVE_X11
302#ifdef USE_X_TOOLKIT
303OLDXMENU=${lwlibdir}liblw.a
304LIBXMENU= $(OLDXMENU)
305#else /* not USE_X_TOOLKIT */
306OLDXMENU= ${oldXMenudir}libXMenu11.a
307LIBXMENU= $(OLDXMENU)
308#endif /* not USE_X_TOOLKIT */
309#else /* not HAVE_X11 */
310LIBXMENU= -lXMenu
311#endif /* not HAVE_X11 */
312
313#else /* not HAVE_MENUS */
314
315/* Otherwise, omit xmenu.o from the list of X object files, and
316 don't worry about the menu library at all. */
317XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o
318LIBXMENU=
319#endif /* not HAVE_MENUS */
320
321#ifdef USE_X_TOOLKIT
322#define @X_TOOLKIT_TYPE@
323#if defined (LUCID) || defined (ATHENA)
324#if HAVE_XAW3D
325LIBW= -lXaw3d
326#else
327LIBW= -lXaw
328#endif
329#endif
330#ifdef MOTIF
331#if defined (HAVE_MOTIF_2_1) && defined (HAVE_LIBXP)
332#define LIB_MOTIF_EXTRA -lXp
333#else
334#define LIB_MOTIF_EXTRA
335#endif
336#ifdef LIB_MOTIF
337LIBW= LIB_MOTIF LIB_MOTIF_EXTRA
338#else
339LIBW= -lXm LIB_MOTIF_EXTRA
340#endif
341#endif
342#ifdef OPEN_LOOK
343LIBW= -lXol
344#endif
345
346#ifdef HAVE_X11XTR6
347#ifdef NEED_LIBW
348LIBXTR6 = -lSM -lICE -lw
349#else
350LIBXTR6 = -lSM -lICE
351#endif
352#endif
353
354#ifndef LIBXMU
355#define LIBXMU -lXmu
356#endif
357
358#ifdef LIBXT_STATIC
359/* We assume the config files have defined STATIC_OPTION
360 since that might depend on the operating system.
361 (Don't forget you need different definitions with and without __GNUC__.) */
362LIBXT= STATIC_OPTION $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext DYNAMIC_OPTION
363#else /* not LIBXT_STATIC */
364LIBXT= $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext
365#endif /* not LIBXT_STATIC */
366
367#else /* not USE_X_TOOLKIT */
368LIBXT=
369#endif /* not USE_X_TOOLKIT */
370
371#if HAVE_XPM
372#ifndef LIBXPM
373#define LIBXPM -lXpm
374#endif /* not defined LIBXPM */
375#else /* not HAVE_XPM */
376#define LIBXPM
377#endif /* not HAVE_XPM */
378
379#if HAVE_JPEG
380#ifndef LIBJPEG
381#define LIBJPEG -ljpeg
382#endif /* not defined LIBJPEG */
383#else /* not HAVE_JPEG */
384#define LIBJPEG
385#endif /* not HAVE_JPEG */
386
387#if HAVE_PNG
388#ifndef LIBPNG
389#define LIBPNG -lpng -lz -lm
390#endif /* not defined LIBPNG */
391#else /* not HAVE_PNG */
392#define LIBPNG
393#endif /* not HAVE_PNG */
394
395#if HAVE_TIFF
396#ifndef LIBTIFF
397#define LIBTIFF -ltiff
398#endif /* not defined LIBTIFF */
399#else /* not HAVE_TIFF */
400#define LIBTIFF
401#endif /* not HAVE_TIFF */
402
403#if HAVE_GIF
404#ifndef LIBGIF
405#define LIBGIF -lungif
406#endif /* not defined LIBGIF */
407#else /* not HAVE_GIF */
408#define LIBGIF
409#endif /* not HAVE_GIF */
410
411#ifdef HAVE_X11
412/* LD_SWITCH_X_DEFAULT comes after everything else that specifies
413 options for where to find X libraries, but before those libraries. */
414X11_LDFLAGS = LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT
415LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIBTIFF LIBJPEG LIBPNG LIBGIF LIBXPM LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
416#else /* not HAVE_X11 */
417LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM
418#endif /* not HAVE_X11 */
419#endif /* not HAVE_X_WINDOWS */
420
421LIBSOUND= @LIBSOUND@
422
423#ifndef ORDINARY_LINK
424/* Fix linking if compiled with GCC. */
425#ifdef __GNUC__
426
427#if __GNUC__ > 1
428
429#ifdef LINKER
430#define LINKER_WAS_SPECIFIED
431#endif
432
433/* Versions of GCC >= 2.0 put their library, libgcc.a, in obscure
434 places that are difficult to figure out at make time. Fortunately,
435 these same versions allow you to pass arbitrary flags on to the
436 linker, so there's no reason not to use it as a linker.
437
438 Well, it's not quite perfect. The `-nostdlib' keeps GCC from
439 searching for libraries in its internal directories, so we have to
440 ask GCC explicitly where to find libgcc.a. */
441
442#ifndef LINKER
443#define LINKER $(CC) -nostdlib
444#endif
445
446#ifndef LIB_GCC
447/* Ask GCC where to find libgcc.a. */
448#define LIB_GCC `$(CC) -print-libgcc-file-name`
449#endif /* not LIB_GCC */
450
451GNULIB_VAR = LIB_GCC
452
453#ifndef LINKER_WAS_SPECIFIED
454/* GCC passes any argument prefixed with -Xlinker directly to the
455 linker. See prefix-args.c for an explanation of why we don't do
456 this with the shell's `for' construct.
457 Note that some people don't have '.' in their paths, so we must
458 use ./prefix-args. */
459#define YMF_PASS_LDFLAGS(flags) `./prefix-args -Xlinker flags`
460#else
461#define YMF_PASS_LDFLAGS(flags) flags
462#endif
463
464#else /* __GNUC__ < 2 */
465
466#ifndef LIB_GCC
467#define LIB_GCC /usr/local/lib/gcc-gnulib
468#endif /* not LIB_GCC */
469GNULIB_VAR = `if [ -f LIB_GCC ] ; then echo LIB_GCC; else echo; fi`
470#endif /* __GNUC__ < 2 */
471#else /* not __GNUC__ */
472GNULIB_VAR =
473
474#endif /* not __GNUC__ */
475#endif /* not ORDINARY_LINK */
476
477/* Specify address for ld to start loading at,
478 if requested by configuration. */
479#ifdef LD_TEXT_START_ADDR
480STARTFLAGS = -T LD_TEXT_START_ADDR -e __start
481#endif
482
483#ifdef ORDINARY_LINK
484LD = $(CC)
485#else
486#ifdef COFF_ENCAPSULATE
487LD=$(CC) -nostdlib
488#else /* not ORDINARY_LINK */
489#ifdef LINKER
490LD=LINKER
491#else /* not LINKER */
492LD=ld
493#endif /* not LINKER */
494#endif /* not COFF_ENCAPSULATE */
495#endif /* not ORDINARY_LINK */
496
497ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_TEMACS LD_SWITCH_MACHINE \
498 LD_SWITCH_MACHINE_TEMACS LD_SWITCH_SITE $(LDFLAGS)
499
500/* A macro which other sections of Makefile can redefine to munge the
501 flags before they're passed to LD. This is helpful if you have
502 redefined LD to something odd, like "gcc".
503 (The YMF prefix is a holdover from the old name "ymakefile".)
504 */
505#ifndef YMF_PASS_LDFLAGS
506#define YMF_PASS_LDFLAGS(flags) flags
507#endif
508
509/* Allow config.h to specify a replacement file for unexec.c. */
510#ifndef UNEXEC
511#define UNEXEC unexec.o
512#endif
513#ifndef UNEXEC_SRC
514#define UNEXEC_SRC unexec.c
515#endif
516
517INTERVAL_SRC = intervals.h composite.h
518
519GETLOADAVG_LIBS = @GETLOADAVG_LIBS@
520
521#ifdef MSDOS
522#ifdef HAVE_X_WINDOWS
523MSDOS_OBJ = dosfns.o msdos.o
524#else
525MSDOS_OBJ = dosfns.o msdos.o w16select.o
526#endif
527#endif
528
529
530/* lastfile must follow all files
531 whose initialized data areas should be dumped as pure by dump-emacs. */
532obj= dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o \
533 charset.o coding.o category.o ccl.o\
534 cm.o term.o xfaces.o $(XOBJ) \
535 emacs.o keyboard.o macros.o keymap.o sysdep.o \
536 buffer.o filelock.o insdel.o marker.o \
537 minibuf.o fileio.o dired.o filemode.o \
538 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
539 alloc.o data.o doc.o editfns.o callint.o \
540 eval.o floatfns.o fns.o print.o lread.o \
541 abbrev.o syntax.o UNEXEC mocklisp.o bytecode.o \
542 process.o callproc.o \
543 region-cache.o sound.o atimer.o \
544 doprnt.o strftime.o intervals.o textprop.o composite.o md5.o \
545 $(MSDOS_OBJ)
546
547/* Object files used on some machine or other.
548 These go in the DOC file on all machines
549 in case they are needed there. */
550SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o \
551 xterm.o xfns.o xmenu.o xselect.o xrdb.o
552
553
554#ifdef TERMINFO
555/* Used to be -ltermcap here. If your machine needs that,
556 define LIBS_TERMCAP in the m/MACHINE.h file. */
557#ifndef LIBS_TERMCAP
558#define LIBS_TERMCAP -lcurses
559#endif /* LIBS_TERMCAP */
560termcapobj = terminfo.o
561#else /* ! defined (TERMINFO) */
562#ifndef LIBS_TERMCAP
563#define LIBS_TERMCAP
564termcapobj = termcap.o tparam.o
565#else /* LIBS_TERMCAP */
566termcapobj = tparam.o
567#endif /* LIBS_TERMCAP */
568#endif /* ! defined (TERMINFO) */
569
570
571#ifndef SYSTEM_MALLOC
572
573#ifdef DOUG_LEA_MALLOC
574#ifdef REL_ALLOC
575mallocobj = ralloc.o vm-limit.o
576#else /* ! defined (REL_ALLOC) */
577mallocobj = vm-limit.o
578#endif /* ! defined (REL_ALLOC) */
579#else /* ! defined (DOUG_LEA_MALLOC) */
580#ifdef REL_ALLOC
581mallocobj = gmalloc.o ralloc.o vm-limit.o
582#else /* ! defined (REL_ALLOC) */
583mallocobj = gmalloc.o vm-limit.o
584#endif /* ! defined (REL_ALLOC) */
585#endif /* ! defined (DOUG_LEA_MALLOC) */
586
587#endif /* SYSTEM_MALLOC */
588
589
590#ifndef HAVE_ALLOCA
591allocaobj = alloca.o
592#else
593allocaobj =
594#endif
595
596#ifdef USE_X_TOOLKIT
597widgetobj= widget.o
598#else /* not USE_X_TOOLKIT */
599widgetobj=
600#endif /* not USE_X_TOOLKIT */
601
602
603/* define otherobj as list of object files that make-docfile
604 should not be told about. */
605otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) $(LIBOBJS)
606
607#ifdef HAVE_MOUSE
608#define MOUSE_SUPPORT ${lispsource}mouse.elc \
609 ${lispsource}select.elc ${lispsource}scroll-bar.elc
610#else
611#define MOUSE_SUPPORT
612#endif
613
614#ifdef VMS
615#define VMS_SUPPORT ${lispsource}vmsproc.elc ${lispsource}vms-patch.elc
616#else
617#define VMS_SUPPORT
618#endif
619
620#ifdef MSDOS
621#define MSDOS_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}disp-table.elc \
622 ${lispsource}dos-fns.elc ${lispsource}dos-w32.elc ${lispsource}dos-vars.elc \
623 ${lispsource}international/ccl.elc ${lispsource}international/codepage.elc
624
625#else
626#define MSDOS_SUPPORT
627#endif
628
629#ifdef WINDOWSNT
630#define WINNT_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}w32-fns.elc \
631 ${lispsource}dos-w32.elc
632#else
633#define WINNT_SUPPORT
634#endif
635
636/* List of Lisp files loaded into the dumped Emacs. It's arranged
637 like this because it's easier to generate it semi-mechanically from
638 loadup.el this way.
639
640 Note that this list should not include lisp files which might not
641 be present, like site-load.el and site-init.el; this makefile
642 expects them all to be either present or buildable.
643
644 Files which are loaded unconditionally should be in shortlisp as well.
645 Files included conditionally here should be included (unconditionally)
646 in SOME_MACHINE_LISP. */
647
648lisp= \
649 ${lispsource}abbrev.elc \
650 ${lispsource}buff-menu.elc \
651 ${lispsource}byte-run.elc \
652 ${lispsource}cus-start.el \
653 ${lispsource}custom.elc \
654 ${lispsource}emacs-lisp/lisp-mode.elc \
655 ${lispsource}emacs-lisp/lisp.elc \
656 ${lispsource}env.elc \
657 ${lispsource}faces.elc \
658 ${lispsource}files.elc \
659 ${lispsource}format.elc \
660 ${lispsource}facemenu.elc \
661 MOUSE_SUPPORT \
662 ${lispsource}float-sup.elc \
663 ${lispsource}frame.elc\
664 ${lispsource}help.elc \
665 ${lispsource}indent.elc \
666 ${lispsource}isearch.elc \
667 ${lispsource}loadup.el \
668 ${lispsource}loaddefs.el \
669 ${lispsource}bindings.el \
670 ${lispsource}map-ynp.elc \
671 ${lispsource}menu-bar.elc \
672 ${lispsource}international/mule.elc \
673 ${lispsource}international/mule-conf.el \
674 ${lispsource}international/mule-cmds.elc \
675 ${lispsource}international/characters.elc \
676 ${lispsource}international/utf-8.elc \
677 ${lispsource}case-table.elc \
678 ${lispsource}language/chinese.elc \
679 ${lispsource}language/cyrillic.elc \
680 ${lispsource}language/indian.elc \
681 ${lispsource}language/devanagari.elc \
682 ${lispsource}language/english.elc \
683 ${lispsource}language/ethiopic.elc \
684 ${lispsource}language/european.elc \
685 ${lispsource}language/czech.elc \
686 ${lispsource}language/slovak.elc \
687 ${lispsource}language/romanian.elc \
688 ${lispsource}language/greek.elc \
689 ${lispsource}language/hebrew.elc \
690 ${lispsource}language/japanese.elc \
691 ${lispsource}language/korean.elc \
692 ${lispsource}language/lao.elc \
693 ${lispsource}language/thai.elc \
694 ${lispsource}language/tibetan.elc \
695 ${lispsource}language/vietnamese.elc \
696 ${lispsource}language/misc-lang.elc \
697 ${lispsource}paths.el \
698 ${lispsource}register.elc \
699 ${lispsource}replace.elc \
700 ${lispsource}simple.elc \
701 ${lispsource}startup.elc \
702 ${lispsource}subr.elc \
703 ${lispsource}term/tty-colors.elc \
704 ${lispsource}textmodes/fill.elc \
705 ${lispsource}textmodes/page.elc \
706 ${lispsource}textmodes/paragraphs.elc \
707 ${lispsource}textmodes/text-mode.elc \
708 ${lispsource}vc-hooks.elc \
709 ${lispsource}ediff-hook.elc \
710 VMS_SUPPORT \
711 MSDOS_SUPPORT \
712 WINNT_SUPPORT \
713 ${lispsource}widget.elc \
714 ${lispsource}window.elc \
715 ${lispsource}version.el
716
717/* These are relative file names for the Lisp files
718 that are loaded unconditionally. This is used in make-docfile.
719 It need not contain the files that are loaded conditionally
720 because SOME_MACHINE_LISP has those. */
721shortlisp= \
722 ../lisp/abbrev.elc \
723 ../lisp/buff-menu.elc \
724 ../lisp/byte-run.elc \
725 ../lisp/cus-start.el \
726 ../lisp/custom.elc \
727 ../lisp/emacs-lisp/lisp-mode.elc \
728 ../lisp/emacs-lisp/lisp.elc \
729 ../lisp/facemenu.elc \
730 ../lisp/faces.elc \
731 ../lisp/files.elc \
732 ../lisp/float-sup.elc \
733 ../lisp/format.elc \
734 ../lisp/frame.elc \
735 ../lisp/help.elc \
736 ../lisp/indent.elc \
737 ../lisp/isearch.elc \
738 ../lisp/loadup.el \
739 ../lisp/loaddefs.el \
740 ../lisp/bindings.el \
741 ../lisp/map-ynp.elc \
742 ../lisp/env.elc \
743 ../lisp/international/mule.elc \
744 ../lisp/international/mule-conf.el \
745 ../lisp/international/mule-cmds.elc \
746 ../lisp/international/characters.elc \
747 ../lisp/case-table.elc \
748 ../lisp/language/chinese.elc \
749 ../lisp/language/cyrillic.elc \
750 ../lisp/language/indian.elc \
751 ../lisp/language/devanagari.elc \
752 ../lisp/language/english.elc \
753 ../lisp/language/ethiopic.elc \
754 ../lisp/language/european.elc \
755 ../lisp/language/czech.elc \
756 ../lisp/language/slovak.elc \
757 ../lisp/language/romanian.elc \
758 ../lisp/language/greek.elc \
759 ../lisp/language/hebrew.elc \
760 ../lisp/language/japanese.elc \
761 ../lisp/language/korean.elc \
762 ../lisp/language/lao.elc \
763 ../lisp/language/thai.elc \
764 ../lisp/language/tibetan.elc \
765 ../lisp/language/vietnamese.elc \
766 ../lisp/language/misc-lang.elc \
767 ../lisp/paths.el \
768 ../lisp/register.elc \
769 ../lisp/replace.elc \
770 ../lisp/simple.elc \
771 ../lisp/startup.elc \
772 ../lisp/subr.elc \
773 ../lisp/term/tty-colors.elc \
774 ../lisp/textmodes/fill.elc \
775 ../lisp/textmodes/page.elc \
776 ../lisp/textmodes/paragraphs.elc \
777 ../lisp/textmodes/text-mode.elc \
778 ../lisp/vc-hooks.elc \
779 ../lisp/ediff-hook.elc \
780 ../lisp/widget.elc \
781 ../lisp/window.elc \
782 ../lisp/version.el
783
784/* Lisp files that may or may not be used.
785 We must unconditionally put them in the DOC file.
786 We use ../lisp/ to start the file names
787 to reduce the size of the argument list for make-docfile
788 for the sake of systems which can't handle large ones. */
789SOME_MACHINE_LISP = ${dotdot}/lisp/menu-bar.elc ${dotdot}/lisp/mouse.elc \
790 ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \
791 ${dotdot}/lisp/vmsproc.elc ${dotdot}/lisp/vms-patch.elc \
792 ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \
793 ${dotdot}/lisp/w32-fns.elc ${dotdot}/lisp/dos-w32.elc \
794 ${dotdot}/lisp/disp-table.elc ${dotdot}/lisp/dos-vars.elc \
795 ${dotdot}/lisp/international/ccl.elc \
796 ${dotdot}/lisp/international/codepage.elc
797
798/* Construct full set of libraries to be linked.
799 Note that SunOS needs -lm to come before -lc; otherwise, you get
800 duplicated symbols. If the standard libraries were compiled
801 with GCC, we might need gnulib again after them. */
802LIBES = $(LOADLIBES) $(LIBS) $(LIBX) $(LIBSOUND) \
803 LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \
804 LIBS_DEBUG $(GETLOADAVG_LIBS) $(GNULIB_VAR) LIB_MATH LIB_STANDARD \
805 $(GNULIB_VAR)
806
807/* Enable recompilation of certain other files depending on system type. */
808
809#ifndef OTHER_FILES
810#define OTHER_FILES
811#endif
812
813#ifndef OBJECTS_MACHINE
814#define OBJECTS_MACHINE
815#endif
816
817all: emacs OTHER_FILES
818
819emacs: temacs ${etc}DOC ${lisp}
820#ifdef CANNOT_DUMP
821 rm -f emacs
822 ln temacs emacs
823#else
824#ifdef HAVE_SHM
825 LC_ALL=C ./temacs -nl -batch -l loadup dump
826#else /* ! defined (HAVE_SHM) */
827 LC_ALL=C ./temacs -batch -l loadup dump
828#endif /* ! defined (HAVE_SHM) */
829#endif /* ! defined (CANNOT_DUMP) */
830 -./emacs -q -batch -f list-load-path-shadows
831
832/* We run make-docfile twice because the command line may get too long
833 on some systems. */
834/* ${SOME_MACHINE_OBJECTS} comes before ${obj} because some files may
835 or may not be included in ${obj}, but they are always included in
836 ${SOME_MACHINE_OBJECTS}. Since a file is processed when it is mentioned
837 for the first time, this prevents any variation between configurations
838 in the contents of the DOC file.
839 Likewise for ${SOME_MACHINE_LISP}. */
840${etc}DOC: ${libsrc}make-docfile ${obj} ${shortlisp} ${SOME_MACHINE_LISP}
841 -rm -f ${etc}DOC
842 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
843 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
844
845${libsrc}make-docfile:
846 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile
847
848/* Some systems define this to cause parallel Make-ing. */
849#ifndef MAKE_PARALLEL
850#define MAKE_PARALLEL
851#endif
852
853temacs: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args
854 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${ALL_LDFLAGS}) \
855 -o temacs ${STARTFILES} ${obj} ${otherobj} \
856 OBJECTS_MACHINE ${LIBES}
857
858/* We don't use ALL_LDFLAGS because LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
859 often contain options that have to do with using Emacs's crt0,
860 which are only good with temacs. */
861prefix-args: prefix-args.c $(config_h)
862 $(CC) $(ALL_CFLAGS) $(LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args
863
864/* Don't lose if this was not defined. */
865#ifndef OLDXMENU_OPTIONS
866#define OLDXMENU_OPTIONS
867#endif
868
869/* Don't lose if this was not defined. */
870#ifndef LWLIB_OPTIONS
871#define LWLIB_OPTIONS
872#endif
873
874#if defined (HAVE_X_WINDOWS) && defined (HAVE_X11) && defined (HAVE_MENUS)
875
876/* We use stamp-xmenu with these two deps
877 to both ensure that lwlib gets remade based on its dependencies
878 in its own makefile,
879 and remake temacs if lwlib gets changed by this. */
880stamp-oldxmenu: ${OLDXMENU} ../src/$(OLDXMENU)
881 touch stamp-oldxmenu
882/* Supply an ordering for parallel make. */
883../src/$(OLDXMENU): ${OLDXMENU}
884
885#ifdef USE_X_TOOLKIT
886$(OLDXMENU): really-lwlib
887
888/* Encode the values of these two macros in Make variables,
889 so we can use $(...) to substitute their values within "...". */
890C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
891C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
892C_SWITCH_SITE_1 = C_SWITCH_SITE
893C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
894C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
895C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
896really-lwlib:
897 cd ${lwlibdir}; ${MAKE} ${MFLAGS} LWLIB_OPTIONS \
898 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
899 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
900 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
901 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
902 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
903 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
904 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
905 @true /* make -t should not create really-lwlib. */
906.PHONY: really-lwlib
907#else /* not USE_X_TOOLKIT */
908$(OLDXMENU): really-oldXMenu
909
910/* Encode the values of these two macros in Make variables,
911 so we can use $(...) to substitute their values within "...". */
912C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
913C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
914C_SWITCH_SITE_1 = C_SWITCH_SITE
915C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
916C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
917C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
918really-oldXMenu:
919 cd ${oldXMenudir}; ${MAKE} ${MFLAGS} OLDXMENU_OPTIONS \
920 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
921 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
922 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
923 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
924 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
925 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
926 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
927 @true /* make -t should not create really-oldXMenu. */
928.PHONY: really-oldXMenu
929#endif /* not USE_X_TOOLKIT */
930#else /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS) */
931
932/* We don't really need this, but satisfy the dependency. */
933stamp-oldxmenu:
934 touch stamp-oldxmenu
935#endif /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS) */
936
937../config.status:: epaths.in
938 @echo "The file epaths.h needs to be set up from epaths.in."
939 @echo "Please run the `configure' script again."
940 exit 1
941
942../config.status:: config.in
943 @echo "The file config.h needs to be set up from config.in."
944 @echo "Please run the `configure' script again."
945 exit 1
946
947/* Some machines have alloca built-in.
948 They should define HAVE_ALLOCA, or may just let alloca.s
949 be used but generate no code.
950 Some have it written in assembler in alloca.s.
951 Some use the C version in alloca.c (these define C_ALLOCA in config.h).
952 */
953
954#ifdef C_ALLOCA
955/* We could put something in alloca.c to #define free and malloc
956 whenever emacs was #defined, but that's not appropriate for all
957 users of alloca in Emacs. Check out ../lib-src/getopt.c. */
958alloca.o : alloca.c
959 $(CC) -c $(CPPFLAGS) -DEMACS_FREE=xfree \
960 $(ALL_CFLAGS) ${srcdir}/alloca.c
961#else
962#ifndef HAVE_ALLOCA
963alloca.o : alloca.s $(config_h)
964/* $(CPP) is cc -E, which may get confused by filenames
965 that do not end in .c. So copy file to a safe name. */
966 -rm -f allocatem.c
967 cp ${srcdir}/alloca.s allocatem.c
968/* Remove any ^L, blank lines, and preprocessor comments,
969 since some assemblers barf on them. Use a different basename for the
970 output file, since some stupid compilers (Green Hill's) use that
971 name for the intermediate assembler file. */
972 $(CPP) $(CPPFLAGS) $(ALL_CFLAGS) allocatem.c | \
973 sed -e 's/ //' -e 's/^#.*//' | \
974 sed -n -e '/^..*$$/p' > allocax.s
975 -rm -f alloca.o
976/* Xenix, in particular, needs to run assembler via cc. */
977 $(CC) -c allocax.s
978 mv allocax.o alloca.o
979 -rm -f allocax.s allocatem.c
980#endif /* HAVE_ALLOCA */
981#endif /* ! defined (C_ALLOCA) */
982
983/* Nearly all the following files depend on lisp.h,
984 but it is not included as a dependency because
985 it is so often changed in ways that do not require any recompilation
986 and so rarely changed in ways that do require any. */
987
988abbrev.o: abbrev.c buffer.h window.h dispextern.h commands.h charset.h \
989 $(config_h)
990buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \
991 dispextern.h $(INTERVAL_SRC) blockinput.h atimer.h systime.h charset.h \
992 $(config_h)
993callint.o: callint.c window.h commands.h buffer.h mocklisp.h \
994 keyboard.h dispextern.h $(config_h)
995callproc.o: callproc.c epaths.h buffer.h commands.h $(config_h) \
996 process.h systty.h syssignal.h charset.h coding.h ccl.h msdos.h \
997 composite.h
998casefiddle.o: casefiddle.c syntax.h commands.h buffer.h composite.h $(config_h)
999casetab.o: casetab.c buffer.h $(config_h)
1000category.o: category.c category.h buffer.h charset.h $(config_h)
1001ccl.o: ccl.c ccl.h charset.h coding.h $(config_h)
1002charset.o: charset.c charset.h buffer.h coding.h composite.h disptab.h \
1003 $(config_h)
1004coding.o: coding.c coding.h ccl.h buffer.h charset.h $(config_h)
1005cm.o: cm.c cm.h termhooks.h $(config_h)
1006cmds.o: cmds.c syntax.h buffer.h charset.h commands.h window.h $(config_h) \
1007 msdos.h dispextern.h
1008pre-crt0.o: pre-crt0.c
1009ecrt0.o: ecrt0.c $(config_h)
1010 CRT0_COMPILE ${srcdir}/ecrt0.c
1011dired.o: dired.c commands.h buffer.h $(config_h) charset.h coding.h regex.h \
1012 systime.h
1013dispnew.o: dispnew.c commands.h frame.h window.h buffer.h dispextern.h \
1014 termchar.h termopts.h termhooks.h cm.h disptab.h systty.h systime.h \
1015 xterm.h blockinput.h atimer.h charset.h msdos.h composite.h keyboard.h \
1016 $(config_h)
1017doc.o: doc.c $(config_h) epaths.h buffer.h keyboard.h charset.h
1018doprnt.o: doprnt.c charset.h $(config_h)
1019dosfns.o: buffer.h termchar.h termhooks.h frame.h msdos.h dosfns.h $(config_h)
1020editfns.o: editfns.c window.h buffer.h systime.h $(INTERVAL_SRC) charset.h \
1021 coding.h dispextern.h $(config_h)
1022emacs.o: emacs.c commands.h systty.h syssignal.h blockinput.h process.h \
1023 termhooks.h buffer.h atimer.h systime.h $(INTERVAL_SRC) $(config_h)
1024fileio.o: fileio.c window.h buffer.h systime.h $(INTERVAL_SRC) charset.h \
1025 coding.h ccl.h msdos.h dispextern.h $(config_h)
1026filelock.o: filelock.c buffer.h systime.h epaths.h $(config_h)
1027filemode.o: filemode.c $(config_h)
1028frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
1029 buffer.h charset.h fontset.h msdos.h dosfns.h dispextern.h $(config_h)
1030fontset.o: dispextern.h fontset.h fontset.c ccl.h charset.h frame.h \
1031 keyboard.h $(config_h)
1032getloadavg.o: getloadavg.c $(config_h)
1033indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \
1034 termopts.h disptab.h region-cache.h charset.h composite.h dispextern.h \
1035 keyboard.h
1036insdel.o: insdel.c window.h buffer.h $(INTERVAL_SRC) blockinput.h charset.h\
1037 dispextern.h atimer.h systime.h $(config_h)
1038keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h charset.h \
1039 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
1040 systty.h systime.h dispextern.h syntax.h $(INTERVAL_SRC) blockinput.h \
1041 atimer.h xterm.h puresize.h msdos.h $(config_h)
1042keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
1043 atimer.h systime.h puresize.h charset.h intervals.h $(config_h)
1044lastfile.o: lastfile.c $(config_h)
1045macros.o: macros.c window.h buffer.h commands.h macros.h keyboard.h \
1046 dispextern.h $(config_h)
1047malloc.o: malloc.c $(config_h)
1048gmalloc.o: gmalloc.c $(config_h)
1049ralloc.o: ralloc.c $(config_h)
1050vm-limit.o: vm-limit.c mem-limits.h $(config_h)
1051marker.o: marker.c buffer.h charset.h $(config_h)
1052minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h keyboard.h \
1053 buffer.h commands.h charset.h msdos.h $(config_h)
1054mktime.o: mktime.c $(config_h)
1055mocklisp.o: mocklisp.c buffer.h $(config_h)
1056msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h frame.h \
1057 termopts.h termchar.h charset.h coding.h ccl.h disptab.h window.h \
1058 keyboard.h $(config_h)
1059process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \
1060 commands.h syssignal.h systime.h systty.h syswait.h frame.h dispextern.h \
1061 blockinput.h atimer.h charset.h coding.h ccl.h msdos.h composite.h \
1062 keyboard.h $(config_h)
1063regex.o: regex.c syntax.h buffer.h $(config_h) regex.h category.h charset.h
1064region-cache.o: region-cache.c buffer.h region-cache.h
1065scroll.o: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \
1066 $(config_h)
1067search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \
1068 blockinput.h atimer.h systime.h category.h charset.h composite.h $(config_h)
1069strftime.o: strftime.c $(config_h)
1070syntax.o: syntax.c syntax.h buffer.h commands.h category.h charset.h \
1071 composite.h $(config_h)
1072sysdep.o: sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \
1073 frame.h syssignal.h systty.h systime.h syswait.h blockinput.h atimer.h \
1074 window.h msdos.h dosfns.h keyboard.h
1075term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \
1076 disptab.h dispextern.h keyboard.h charset.h coding.h ccl.h msdos.h
1077termcap.o: termcap.c $(config_h)
1078terminfo.o: terminfo.c $(config_h)
1079tparam.o: tparam.c $(config_h)
1080undo.o: undo.c buffer.h commands.h $(config_h)
1081/* This hack is to discard any space that cpp might put at the beginning
1082 of UNEXEC when substituting it in. */
1083UNEXEC_ALIAS=UNEXEC
1084$(UNEXEC_ALIAS): UNEXEC_SRC $(config_h)
1085w16select.o: w16select.c dispextern.h frame.h blockinput.h atimer.h systime.h \
1086 msdos.h $(config_h)
1087widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h \
1088 $(srcdir)/../lwlib/lwlib.h $(config_h)
1089window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \
1090 termhooks.h disptab.h keyboard.h dispextern.h msdos.h composite.h \
1091 $(config_h)
1092xdisp.o: xdisp.c macros.h commands.h indent.h buffer.h dispextern.h coding.h \
1093 termchar.h frame.h window.h disptab.h termhooks.h charset.h $(config_h) \
1094 msdos.h composite.h fontset.h
1095xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \
1096 window.h charset.h msdos.h dosfns.h composite.h atimer.h systime.h $(config_h)
1097xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h dispextern.h \
1098 $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h epaths.h \
1099 charset.h $(config_h)
1100xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h keyboard.h \
1101 $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h msdos.h \
1102 $(config_h)
1103xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h \
1104 dispextern.h frame.h disptab.h blockinput.h atimer.h systime.h syssignal.h \
1105 keyboard.h gnu.h sink.h sinkmask.h charset.h ccl.h fontset.h composite.h \
1106 coding.h $(config_h)
1107xselect.o: xselect.c dispextern.h frame.h xterm.h blockinput.h charset.h \
1108 coding.h ccl.h buffer.h atimer.h systime.h $(config_h)
1109xrdb.o: xrdb.c $(config_h) epaths.h
1110hftctl.o: hftctl.c $(config_h)
1111sound.o: sound.c dispextern.h $(config_h)
1112atimer.o: atimer.c atimer.h systime.h $(config_h)
1113
1114/* The files of Lisp proper */
1115
1116alloc.o: alloc.c frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \
1117 blockinput.h atimer.h systime.h charset.h dispextern.h $(config_h) $(INTERVAL_SRC)
1118bytecode.o: bytecode.c buffer.h syntax.h charset.h $(config_h)
1119data.o: data.c buffer.h puresize.h charset.h syssignal.h keyboard.h $(config_h)
1120eval.o: eval.c commands.h keyboard.h blockinput.h atimer.h systime.h \
1121 $(config_h)
1122floatfns.o: floatfns.c $(config_h)
1123fns.o: fns.c commands.h $(config_h) frame.h buffer.h charset.h keyboard.h \
1124 frame.h window.h dispextern.h $(INTERVAL_SRC)
1125print.o: print.c process.h frame.h window.h buffer.h keyboard.h charset.h\
1126 $(config_h) dispextern.h msdos.h composite.h
1127lread.o: lread.c commands.h keyboard.h buffer.h epaths.h charset.h $(config_h) \
1128 termhooks.h msdos.h
1129
1130/* Text properties support */
1131textprop.o: textprop.c buffer.h window.h dispextern.h $(INTERVAL_SRC) \
1132 $(config_h)
1133intervals.o: intervals.c buffer.h $(INTERVAL_SRC) keyboard.h puresize.h $(config_h)
1134composite.o: composite.c buffer.h charset.h $(INTERVAL_SRC) $(config_h)
1135
1136/* System-specific programs to be made.
1137 OTHER_FILES and OBJECTS_MACHINE
1138 select which of these should be compiled. */
1139
1140sunfns.o: sunfns.c buffer.h window.h dispextern.h $(config_h)
1141
1142${libsrc}emacstool: ${libsrc}emacstool.c
1143 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool
1144mostlyclean:
1145 rm -f temacs prefix-args core *.core \#* *.o libXMenu11.a liblw.a
1146 rm -f ../etc/DOC
1147clean: mostlyclean
1148 rm -f emacs-* emacs bootstrap-emacs
1149/**/# This is used in making a distribution.
1150/**/# Do not use it on development directories!
1151distclean: clean
1152 rm -f epaths.h config.h Makefile Makefile.c config.stamp stamp-oldxmenu ../etc/DOC-*
1153maintainer-clean: distclean
1154 @echo "This command is intended for maintainers to use;"
1155 @echo "it deletes files that may require special tools to rebuild."
1156 rm -f TAGS
1157versionclean:
1158 -rm -f emacs emacs-* ../etc/DOC*
1159extraclean: distclean
1160 -rm -f *~ \#* m/?*~ s/?*~
1161
1162/* The rule for the [sm] files has to be written a little funny to
1163 avoid looking like a C comment to CPP. */
1164SOURCES = *.[ch] [sm]/?* COPYING Makefile.in \
1165 config.in epaths.in README COPYING ChangeLog vms.pp-trans
1166unlock:
1167 chmod u+w $(SOURCES)
1168
1169relock:
1170 chmod -w $(SOURCES)
1171 chmod +w epaths.h
1172
1173/* Arrange to make a tags table TAGS-LISP for ../lisp,
1174 plus TAGS for the C files, which includes ../lisp/TAGS by reference. */
1175
1176ctagsfiles1 = [xyzXYZ]*.[hc]
1177ctagsfiles2 = [a-wA-W]*.[hc]
1178
1179TAGS: $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2)
1180 ../lib-src/etags --include=TAGS-LISP --include=${lwlibdir}/TAGS \
1181 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \
1182 $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2)
1183frc:
1184TAGS-LISP: frc
1185 $(MAKE) -f ${lispsource}Makefile TAGS-LISP ETAGS=../lib-src/etags
1186
1187$(lwlibdir)TAGS:
1188 (cd $(lwlibdir); $(MAKE) -f $(lwlibdir)Makefile tags ETAGS=../lib-src/etags)
1189
1190tags: TAGS TAGS-LISP $(lwlibdir)TAGS
1191.PHONY: tags
1192
1193
1194/* Bootstrapping. */
1195
1196bootstrap: bootstrap-emacs
1197
1198/* Build a temacs with a sufficiently large PURESIZE to load the
1199 Lisp files from loadup.el in source form. */
1200
1201bootstrap-temacs:
1202 LC_ALL=C $(MAKE) $(MFLAGS) temacs ALL_CFLAGS="$(ALL_CFLAGS) -DPURESIZE=5000000 -I../src"
1203
1204/* Build a DOC file. */
1205
1206bootstrap-doc: ${libsrc}make-docfile
1207 -rm -f ${etc}DOC
1208 els=`echo ${shortlisp} ${SOME_MACHINE_LISP} \
1209 | sed -e "s/\\.elc/.el/g"`; \
1210 ${libsrc}make-docfile -d ${srcdir} $$els ${obj} > ${etc}DOC
1211
1212/* Dump an Emacs executable named bootstrap-emacs containing the
1213 files from loadup.el in source form. */
1214
1215bootstrap-emacs: bootstrap-temacs bootstrap-doc
1216#ifdef CANNOT_DUMP
1217 ln temacs bootstrap-emacs
1218#else
1219#ifdef HAVE_SHM
1220 ./temacs -nl -batch -l loadup bootstrap
1221#else /* ! defined (HAVE_SHM) */
1222 ./temacs --batch --load loadup bootstrap
1223#endif /* ! defined (HAVE_SHM) */
1224#endif /* ! defined (CANNOT_DUMP) */
1225 mv -f emacs bootstrap-emacs
1226 rm -f temacs
1227