Mercurial > emacs
annotate src/Makefile.in @ 7661:96437d76c9db
(LIBXT): Move -lXmu before -lXt.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 23 May 1994 09:25:36 +0000 |
parents | 926bfbeb7846 |
children | 393744d00ab9 |
rev | line source |
---|---|
7328
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
1 # Makefile for GNU Emacs. |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
2 # Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc. |
4796 | 3 |
7328
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
4 # This file is part of GNU Emacs. |
4796 | 5 |
7328
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
6 # GNU Emacs is free software; you can redistribute it and/or modify |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
7 # it under the terms of the GNU General Public License as published by |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
8 # the Free Software Foundation; either version 2, or (at your option) |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
9 # any later version. |
4796 | 10 |
7328
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
11 # GNU Emacs is distributed in the hope that it will be useful, |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
14 # GNU General Public License for more details. |
4796 | 15 |
7328
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
16 # You should have received a copy of the GNU General Public License |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
17 # along with GNU Emacs; see the file COPYING. If not, write to |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
18 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ |
4796 | 19 |
7328
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
20 # Here are the things that we expect ../configure to edit. |
4796 | 21 srcdir=@srcdir@ |
22 VPATH=@srcdir@ | |
23 CC=@CC@ | |
24 CPP=@CPP@ | |
25 CFLAGS=@CFLAGS@ | |
26 LN_S=@LN_S@ | |
7328
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
27 # Substitute an assignment for the MAKE variable, because |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
28 # BSD doesn't have it as a default. |
6927
c9f93ac26d28
(configuration): Use SET_MAKE to get the value of $(MAKE).
Richard M. Stallman <rms@gnu.org>
parents:
6892
diff
changeset
|
29 @SET_MAKE@ |
4796 | 30 |
7328
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
31 # On Xenix and the IBM RS6000, double-dot gets screwed up. |
4796 | 32 dot = . |
33 lispdir = ${srcdir}/$(dot)$(dot)/lisp/ | |
34 libsrc = $(dot)$(dot)/lib-src/ | |
35 etc = $(dot)$(dot)/etc/ | |
36 shortnamesdir = $(dot)$(dot)/shortnames/ | |
37 cppdir = $(dot)$(dot)/cpp/ | |
38 oldXMenudir = $(dot)$(dot)/oldXMenu/ | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
39 lwlibdir = $(dot)$(dot)/lwlib/ |
7045
6ea4737a3db7
(alloca.o): Use config_h.
Richard M. Stallman <rms@gnu.org>
parents:
6999
diff
changeset
|
40 |
7328
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
41 # Configuration files for .o files to depend on. |
7045
6ea4737a3db7
(alloca.o): Use config_h.
Richard M. Stallman <rms@gnu.org>
parents:
6999
diff
changeset
|
42 M_FILE = ${srcdir}/@machfile@ |
6ea4737a3db7
(alloca.o): Use config_h.
Richard M. Stallman <rms@gnu.org>
parents:
6999
diff
changeset
|
43 S_FILE = ${srcdir}/@opsysfile@ |
6ea4737a3db7
(alloca.o): Use config_h.
Richard M. Stallman <rms@gnu.org>
parents:
6999
diff
changeset
|
44 config_h = config.h $(M_FILE) $(S_FILE) |
4796 | 45 |
7328
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
46 # ========================== start of cpp stuff ======================= */ |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
47 /* From here on, comments must be done in C syntax. */ |
29e2aa20e7b8
Put in a separator for where to start cpp procssing.
Richard M. Stallman <rms@gnu.org>
parents:
7145
diff
changeset
|
48 |
5434
c89fd1fbf068
(buffer.o): Don't depend on syntax.h.
Richard M. Stallman <rms@gnu.org>
parents:
5402
diff
changeset
|
49 CPPFLAGS= |
c89fd1fbf068
(buffer.o): Don't depend on syntax.h.
Richard M. Stallman <rms@gnu.org>
parents:
5402
diff
changeset
|
50 LDFLAGS= |
c89fd1fbf068
(buffer.o): Don't depend on syntax.h.
Richard M. Stallman <rms@gnu.org>
parents:
5402
diff
changeset
|
51 C_SWITCH_SYSTEM= |
c89fd1fbf068
(buffer.o): Don't depend on syntax.h.
Richard M. Stallman <rms@gnu.org>
parents:
5402
diff
changeset
|
52 |
4796 | 53 /* just to be sure the sh is used */ |
54 SHELL=/bin/sh | |
55 | |
56 #define NO_SHORTNAMES | |
57 #define THIS_IS_YMAKEFILE | |
58 #define NOT_C_CODE | |
59 #include "config.h" | |
60 | |
61 /* Use HAVE_X11 as an alias for X11 in this file | |
62 to avoid problems with X11 as a subdirectory name | |
63 in -I and other such options which pass through this file. */ | |
64 | |
65 #ifdef X11 | |
66 #define HAVE_X11 | |
67 #undef X11 | |
68 #endif | |
69 | |
70 /* On some machines #define register is done in config; | |
71 don't let it interfere with this file. */ | |
72 #undef register | |
73 | |
74 /* On some systems we may not be able to use the system make command. */ | |
75 #ifdef MAKE_COMMAND | |
76 MAKE = MAKE_COMMAND | |
77 #endif | |
78 | |
79 #ifdef C_COMPILER | |
80 CC = C_COMPILER | |
81 #endif | |
82 | |
7580
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
83 /* GNU libc requires ORDINARY_LINK so that its own crt0 is used. |
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
84 Linux is an exception because it uses a funny variant of GNU libc. */ |
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
85 #ifdef __GNU_LIBRARY__ |
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
86 #ifndef LINUX |
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
87 #define ORDINARY_LINK |
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
88 #endif |
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
89 #endif |
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
90 |
4796 | 91 /* Some machines don't find the standard C libraries in the usual place. */ |
92 #ifndef ORDINARY_LINK | |
93 #ifndef LIB_STANDARD | |
94 #define LIB_STANDARD -lc | |
95 #endif | |
96 #else | |
97 #ifndef LIB_STANDARD | |
98 #define LIB_STANDARD | |
99 #endif | |
100 #endif | |
101 | |
102 /* Unless inhibited or changed, use -lg to link for debugging. */ | |
103 #ifndef LIBS_DEBUG | |
104 #define LIBS_DEBUG -lg | |
105 #endif | |
106 | |
107 /* Some s/*.h files define this to request special libraries. */ | |
108 #ifndef LIBS_SYSTEM | |
109 #define LIBS_SYSTEM | |
110 #endif | |
111 | |
112 /* Some m/*.h files define this to request special libraries. */ | |
113 #ifndef LIBS_MACHINE | |
114 #define LIBS_MACHINE | |
115 #endif | |
116 | |
117 #ifndef LIB_MATH | |
118 # ifdef LISP_FLOAT_TYPE | |
119 # define LIB_MATH -lm | |
120 # else /* ! defined (LISP_FLOAT_TYPE) */ | |
121 # define LIB_MATH | |
122 # endif /* ! defined (LISP_FLOAT_TYPE) */ | |
123 #endif /* LIB_MATH */ | |
124 | |
125 /* Some s/*.h files define this to request special switches in ld. */ | |
126 #ifndef LD_SWITCH_SYSTEM | |
127 #if !defined (__GNUC__) && (defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF))) | |
128 #define LD_SWITCH_SYSTEM -X | |
129 #else /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */ | |
130 #define LD_SWITCH_SYSTEM | |
131 #endif /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */ | |
132 #endif /* LD_SWITCH_SYSTEM */ | |
133 | |
134 /* Some m/*.h files define this to request special switches in ld. */ | |
135 #ifndef LD_SWITCH_MACHINE | |
136 #define LD_SWITCH_MACHINE | |
137 #endif | |
138 | |
139 /* Some m/*.h files define this to request special switches in cc. */ | |
140 #ifndef C_SWITCH_MACHINE | |
141 #define C_SWITCH_MACHINE | |
142 #endif | |
143 | |
144 /* Some s/*.h files define this to request special switches in cc. */ | |
145 #ifndef C_SWITCH_SYSTEM | |
146 #define C_SWITCH_SYSTEM | |
147 #endif | |
148 | |
149 /* These macros are for switches specifically related to X Windows. */ | |
150 #ifndef C_SWITCH_X_MACHINE | |
151 #define C_SWITCH_X_MACHINE | |
152 #endif | |
153 | |
154 #ifndef C_SWITCH_X_SYSTEM | |
155 #define C_SWITCH_X_SYSTEM | |
156 #endif | |
157 | |
158 #ifndef C_SWITCH_X_SITE | |
159 #define C_SWITCH_X_SITE | |
160 #endif | |
161 | |
162 #ifndef LD_SWITCH_X_SITE | |
163 #define LD_SWITCH_X_SITE | |
164 #endif | |
165 | |
166 /* These can be passed in from config.h to define special load and | |
167 compile switches needed by individual sites */ | |
168 #ifndef LD_SWITCH_SITE | |
169 #define LD_SWITCH_SITE | |
170 #endif | |
171 | |
172 #ifndef C_SWITCH_SITE | |
173 #define C_SWITCH_SITE | |
174 #endif | |
175 | |
176 #ifndef ORDINARY_LINK | |
177 | |
178 #ifndef CRT0_COMPILE | |
179 #define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS) C_SWITCH_ASM | |
180 #endif | |
181 | |
182 #ifndef START_FILES | |
183 #ifdef NO_REMAP | |
184 #ifdef COFF_ENCAPSULATE | |
185 #define START_FILES pre-crt0.o /usr/local/lib/gcc-crt0.o | |
186 #else /* ! defined (COFF_ENCAPSULATE) */ | |
187 #define START_FILES pre-crt0.o /lib/crt0.o | |
188 #endif /* ! defined (COFF_ENCAPSULATE) */ | |
189 #else /* ! defined (NO_REMAP) */ | |
190 #define START_FILES crt0.o | |
191 #endif /* ! defined (NO_REMAP) */ | |
192 #endif /* START_FILES */ | |
193 STARTFILES = START_FILES | |
194 | |
195 #else /* ORDINARY_LINK */ | |
196 | |
197 /* config.h might want to force START_FILES anyway */ | |
198 #ifdef START_FILES | |
199 STARTFILES = START_FILES | |
200 #endif /* START_FILES */ | |
201 | |
202 #endif /* not ORDINARY_LINK */ | |
203 | |
204 | |
205 /* cc switches needed to make `asm' keyword work. | |
206 Nothing special needed on most machines. */ | |
207 #ifndef C_SWITCH_ASM | |
208 #define C_SWITCH_ASM | |
209 #endif | |
210 | |
211 /* Figure out whether the system cpp can handle long names. | |
212 Do it by testing it right now. | |
213 If it loses, arrange to use the GNU cpp. */ | |
214 | |
215 #define LONGNAMEBBBFOOX | |
216 #ifdef LONGNAMEBBBARFOOX | |
217 /* Installed cpp fails to distinguish those names! */ | |
218 /* Arrange to compile the GNU cpp later on */ | |
219 #define NEED_CPP | |
220 /* Cause cc to invoke the cpp that comes with Emacs, | |
221 which will be in a file named localcpp. */ | |
222 MYCPPFLAG= -Blocal | |
223 /* LOCALCPP is the local one or nothing. | |
224 CPP is the local one or the standardone. */ | |
225 LOCALCPP= localcpp | |
226 #endif /* ! defined (LONGNAMEBBBARFOOX) */ | |
227 | |
228 #ifdef SHORTNAMES | |
229 SHORT= shortnames | |
230 #endif | |
231 | |
232 /* DO NOT use -R. There is a special hack described in lastfile.c | |
233 which is used instead. Some initialized data areas are modified | |
234 at initial startup, then labeled as part of the text area when | |
235 Emacs is dumped for the first time, and never changed again. */ | |
236 | |
237 /* -Demacs is needed to make some files produce the correct version | |
238 for use in Emacs. | |
239 | |
240 -DHAVE_CONFIG_H is needed for some other files to take advantage of | |
241 the information in `config.h'. */ | |
5030
1c9c9a87f8b6
Delete spurious CFLAGS=-g.
Richard M. Stallman <rms@gnu.org>
parents:
4963
diff
changeset
|
242 |
4796 | 243 /* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM |
244 since it may have -I options that should override those two. */ | |
4803
ce4372eaa443
(ALL_CFLAGS): Make sure `.' is searched before `${srcdir}'.
Brian Fox <bfox@gnu.org>
parents:
4796
diff
changeset
|
245 ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(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} |
4796 | 246 .c.o: |
247 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $< | |
248 | |
249 #ifndef LIBX10_MACHINE | |
250 #define LIBX10_MACHINE | |
251 #endif | |
252 | |
253 #ifndef LIBX11_MACHINE | |
254 #define LIBX11_MACHINE | |
255 #endif | |
256 | |
257 #ifndef LIBX10_SYSTEM | |
258 #define LIBX10_SYSTEM | |
259 #endif | |
260 | |
261 #ifndef LIBX11_SYSTEM | |
262 #define LIBX11_SYSTEM | |
263 #endif | |
264 | |
265 #ifndef LIB_X11_LIB | |
266 #define LIB_X11_LIB -lX11 | |
267 #endif | |
268 | |
269 #ifdef HAVE_X_WINDOWS | |
270 #ifdef HAVE_X_MENU | |
271 | |
272 /* Include xmenu.o in the list of X object files. */ | |
273 XOBJ= xterm.o xfns.o xfaces.o xmenu.o xselect.o xrdb.o | |
274 | |
275 /* The X Menu stuff is present in the X10 distribution, but missing | |
276 from X11. If we have X10, just use the installed library; | |
277 otherwise, use our own copy. */ | |
278 #ifdef HAVE_X11 | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
279 #ifdef USE_X_TOOLKIT |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
280 OLDXMENU=liblw.a |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
281 LIBXMENU= $(OLDXMENU) |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
282 #else /* not USE_X_TOOLKIT */ |
4796 | 283 OLDXMENU= libXMenu11.a |
284 LIBXMENU= $(OLDXMENU) | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
285 #endif /* not USE_X_TOOLKIT */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
286 #else /* not HAVE_X11 */ |
4796 | 287 LIBXMENU= -lXMenu |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
288 #endif /* not HAVE_X11 */ |
4796 | 289 |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
290 #else /* not HAVE_X_MENU */ |
4796 | 291 |
292 /* Otherwise, omit xmenu.o from the list of X object files, and | |
293 don't worry about the menu library at all. */ | |
294 XOBJ= xterm.o xfns.o xfaces.o xselect.o xrdb.o | |
295 LIBXMENU= | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
296 #endif /* not HAVE_X_MENU */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
297 |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
298 #ifdef USE_X_TOOLKIT |
7479
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
299 #define @X_TOOLKIT_TYPE@ |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
300 #if defined (LUCID) || defined (ATHENA) |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
301 LIBW= -lXaw |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
302 #endif |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
303 #ifdef MOTIF |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
304 #ifdef LIB_MOTIF |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
305 LIBW= LIB_MOTIF |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
306 #else |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
307 LIBW= -lXm |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
308 #endif |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
309 #endif |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
310 #ifdef OPEN_LOOK |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
311 LIBW= -lXol |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
312 #endif |
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
313 |
7488
9c2205991ff5
(LIBXTR6): New variable. Test HAVE_X11XTR6.
Richard M. Stallman <rms@gnu.org>
parents:
7484
diff
changeset
|
314 #ifdef HAVE_X11XTR6 |
7484
5a10d0a7c8a1
(LIBXTR6): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7479
diff
changeset
|
315 LIBXTR6 = -lSM -lICE |
5a10d0a7c8a1
(LIBXTR6): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7479
diff
changeset
|
316 #endif |
5a10d0a7c8a1
(LIBXTR6): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7479
diff
changeset
|
317 |
7661
96437d76c9db
(LIBXT): Move -lXmu before -lXt.
Richard M. Stallman <rms@gnu.org>
parents:
7654
diff
changeset
|
318 LIBXT= $(LIBW) -lXmu -lXt $(LIBXTR6) -lXext |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
319 #else |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
320 LIBXT= |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
321 #endif |
4796 | 322 |
323 #ifdef HAVE_X11 | |
6892
d61940f5430c
(LIBX): Put LIBXT after LD_SWITCH_X_SITE.
Richard M. Stallman <rms@gnu.org>
parents:
6810
diff
changeset
|
324 LIBX= $(LIBXMENU) LD_SWITCH_X_SITE $(LIBXT) LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
325 #else /* not HAVE_X11 */ |
4796 | 326 LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
327 #endif /* not HAVE_X11 */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
328 #endif /* not HAVE_X_WINDOWS */ |
4796 | 329 |
330 #ifndef ORDINARY_LINK | |
331 /* Fix linking if compiled with GCC. */ | |
332 #ifdef __GNUC__ | |
333 | |
334 #if __GNUC__ > 1 | |
335 | |
5234
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
336 #ifdef LINKER |
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
337 #define LINKER_WAS_SPECIFIED |
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
338 #endif |
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
339 |
4796 | 340 /* Versions of GCC >= 2.0 put their library, libgcc.a, in obscure |
341 places that are difficult to figure out at make time. Fortunately, | |
342 these same versions allow you to pass arbitrary flags on to the | |
343 linker, so there's no reason not to use it as a linker. | |
344 | |
345 Well, it's not quite perfect. The `-nostdlib' keeps GCC from | |
346 searching for libraries in its internal directories, so we have to | |
347 ask GCC explicitly where to find libgcc.a. */ | |
348 | |
349 #ifndef LINKER | |
350 #define LINKER $(CC) -nostdlib | |
351 #endif | |
352 | |
353 #ifndef LIB_GCC | |
354 /* Ask GCC where to find libgcc.a. */ | |
355 #define LIB_GCC `$(CC) -print-libgcc-file-name` | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
356 #endif /* not LIB_GCC */ |
4796 | 357 |
358 GNULIB_VAR = LIB_GCC | |
359 | |
5234
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
360 #ifndef LINKER_WAS_SPECIFIED |
4796 | 361 /* GCC passes any argument prefixed with -Xlinker directly to the |
362 linker. See prefix-args.c for an explanation of why we don't do | |
363 this with the shell's `for' construct. | |
364 Note that some people don't have '.' in their paths, so we must | |
365 use ./prefix-args. */ | |
366 #define YMF_PASS_LDFLAGS(flags) `./prefix-args -Xlinker flags` | |
5234
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
367 #else |
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
368 #define YMF_PASS_LDFLAGS(flags) flags |
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
369 #endif |
4796 | 370 |
371 #else /* __GNUC__ < 2 */ | |
372 | |
373 #ifndef LIB_GCC | |
374 #define LIB_GCC /usr/local/lib/gcc-gnulib | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
375 #endif /* not LIB_GCC */ |
4796 | 376 GNULIB_VAR = `if [ -f LIB_GCC ] ; then echo LIB_GCC; else echo; fi` |
377 #endif /* __GNUC__ < 2 */ | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
378 #else /* not __GNUC__ */ |
4796 | 379 GNULIB_VAR = |
380 | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
381 #endif /* not __GNUC__ */ |
4796 | 382 #endif /* not ORDINARY_LINK */ |
383 | |
384 /* Specify address for ld to start loading at, | |
385 if requested by configuration. */ | |
386 #ifdef LD_TEXT_START_ADDR | |
387 STARTFLAGS = -T LD_TEXT_START_ADDR -e __start | |
388 #endif | |
389 | |
390 #ifdef ORDINARY_LINK | |
391 LD = $(CC) | |
392 #else | |
393 #ifdef COFF_ENCAPSULATE | |
394 LD=$(CC) -nostdlib | |
395 #else /* not ORDINARY_LINK */ | |
396 #ifdef LINKER | |
397 LD=LINKER | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
398 #else /* not LINKER */ |
4796 | 399 LD=ld |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
400 #endif /* not LINKER */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
401 #endif /* not COFF_ENCAPSULATE */ |
4796 | 402 #endif /* not ORDINARY_LINK */ |
403 | |
7531
ba949f15f8c4
(ALL_LDFLAGS): Add LDFLAGS.
Richard M. Stallman <rms@gnu.org>
parents:
7488
diff
changeset
|
404 ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_MACHINE LD_SWITCH_SITE $(LDFLAGS) |
4796 | 405 |
406 /* A macro which other sections of ymakefile can redefine to munge the | |
407 flags before they're passed to LD. This is helpful if you have | |
408 redefined LD to something odd, like "gcc". */ | |
409 #ifndef YMF_PASS_LDFLAGS | |
410 #define YMF_PASS_LDFLAGS(flags) flags | |
411 #endif | |
412 | |
413 /* Allow config.h to specify a replacement file for unexec.c. */ | |
414 #ifndef UNEXEC | |
415 #define UNEXEC unexec.o | |
416 #endif | |
417 #ifndef UNEXEC_SRC | |
418 #define UNEXEC_SRC unexec.c | |
419 #endif | |
420 | |
421 #ifdef USE_TEXT_PROPERTIES | |
422 #define INTERVAL_SRC intervals.h | |
423 #define INTERVAL_OBJ intervals.o textprop.o | |
424 #else | |
425 #define INTERVAL_SRC | |
426 #define INTERVAL_OBJ | |
427 #endif | |
428 | |
429 #ifdef HAVE_GETLOADAVG | |
430 #define GETLOADAVG_OBJ | |
431 #else | |
432 #define GETLOADAVG_OBJ getloadavg.o | |
433 #endif | |
434 | |
435 /* lastfile must follow all files | |
436 whose initialized data areas should be dumped as pure by dump-emacs. */ | |
437 obj= dispnew.o frame.o scroll.o xdisp.o window.o \ | |
438 term.o cm.o $(XOBJ) \ | |
439 emacs.o keyboard.o macros.o keymap.o sysdep.o \ | |
440 buffer.o filelock.o insdel.o marker.o INTERVAL_OBJ \ | |
441 minibuf.o fileio.o dired.o filemode.o \ | |
442 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \ | |
443 alloc.o data.o doc.o editfns.o callint.o \ | |
444 eval.o floatfns.o fns.o print.o lread.o \ | |
445 abbrev.o syntax.o UNEXEC mocklisp.o bytecode.o \ | |
446 process.o callproc.o \ | |
447 doprnt.o GETLOADAVG_OBJ | |
448 | |
5401
fd65333a301e
(SOME_MACHINE_OBJECTS): New var.
Richard M. Stallman <rms@gnu.org>
parents:
5368
diff
changeset
|
449 /* Object files used on some machine or other. |
fd65333a301e
(SOME_MACHINE_OBJECTS): New var.
Richard M. Stallman <rms@gnu.org>
parents:
5368
diff
changeset
|
450 These go in the DOC file on all machines |
fd65333a301e
(SOME_MACHINE_OBJECTS): New var.
Richard M. Stallman <rms@gnu.org>
parents:
5368
diff
changeset
|
451 in case they are needed there. */ |
fd65333a301e
(SOME_MACHINE_OBJECTS): New var.
Richard M. Stallman <rms@gnu.org>
parents:
5368
diff
changeset
|
452 SOME_MACHINE_OBJECTS = sunfns.o |
fd65333a301e
(SOME_MACHINE_OBJECTS): New var.
Richard M. Stallman <rms@gnu.org>
parents:
5368
diff
changeset
|
453 |
4796 | 454 #ifdef TERMINFO |
455 /* Used to be -ltermcap here. If your machine needs that, | |
456 define LIBS_TERMCAP in the m/*.h file. */ | |
457 #ifndef LIBS_TERMCAP | |
458 #define LIBS_TERMCAP -lcurses | |
459 #endif /* LIBS_TERMCAP */ | |
460 termcapobj = terminfo.o | |
461 #else /* ! defined (TERMINFO) */ | |
462 #ifndef LIBS_TERMCAP | |
463 #define LIBS_TERMCAP | |
464 termcapobj = termcap.o tparam.o | |
465 #else /* LIBS_TERMCAP */ | |
466 termcapobj = tparam.o | |
467 #endif /* LIBS_TERMCAP */ | |
468 #endif /* ! defined (TERMINFO) */ | |
469 | |
470 | |
471 #ifndef SYSTEM_MALLOC | |
472 | |
473 #ifdef GNU_MALLOC /* New GNU malloc */ | |
474 #ifdef REL_ALLOC | |
475 mallocobj = gmalloc.o ralloc.o vm-limit.o | |
476 #else /* ! defined (REL_ALLOC) */ | |
477 mallocobj = gmalloc.o vm-limit.o | |
478 #endif /* ! defined (REL_ALLOC) */ | |
479 #else /* Old GNU malloc */ | |
480 mallocobj = malloc.o | |
481 #endif /* Old GNU malloc */ | |
482 | |
483 #endif /* SYSTEM_MALLOC */ | |
484 | |
485 | |
486 #ifndef HAVE_ALLOCA | |
487 allocaobj = alloca.o | |
488 #else | |
489 allocaobj = | |
490 #endif | |
491 | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
492 #ifdef USE_X_TOOLKIT |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
493 widgetobj= widget.o |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
494 #else /* not USE_X_TOOLKIT */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
495 widgetobj= |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
496 #endif /* not USE_X_TOOLKIT */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
497 |
4796 | 498 |
499 /* define otherobj as list of object files that make-docfile | |
500 should not be told about. */ | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
501 otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) |
4796 | 502 |
503 #ifdef LISP_FLOAT_TYPE | |
504 #define FLOAT_SUPPORT ${lispdir}float-sup.elc | |
505 #else | |
506 #define FLOAT_SUPPORT | |
507 #endif | |
508 | |
509 #ifdef MULTI_FRAME | |
7580
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
510 #define FRAME_SUPPORT ${lispdir}frame.elc ${lispdir}menu-bar.elc \ |
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
511 ${lispdir}mouse.elc ${lispdir}select.elc ${lispdir}scroll-bar.elc |
4796 | 512 #else |
513 #define FRAME_SUPPORT | |
514 #endif | |
515 | |
6398
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
516 #ifdef HAVE_X_WINDOWS |
6405
190ecc6ee636
(X_WINDOWS_SUPPORT): Don't include term/x-win.
Roland McGrath <roland@gnu.org>
parents:
6404
diff
changeset
|
517 #define X_WINDOWS_SUPPORT |
6398
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
518 #else |
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
519 #define X_WINDOWS_SUPPORT |
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
520 #endif |
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
521 |
4796 | 522 #ifdef VMS |
523 #define VMS_SUPPORT ${lispdir}vmsproc.elc ${lispdir}vms-patch | |
524 #else | |
525 #define VMS_SUPPORT | |
526 #endif | |
527 | |
7654
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
528 #ifdef MSDOS |
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
529 #define MSDOS_SUPPORT ${lispdir}ls-lisp.elc ${lispdir}disp-tab.elc ${lispdir}dos-fns.elc ${lispdir}mouse.elc |
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
530 #else |
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
531 #define MSDOS_SUPPORT |
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
532 #endif |
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
533 |
4796 | 534 /* List of Lisp files loaded into the dumped Emacs. It's arranged |
535 like this because it's easier to generate it semi-mechanically from | |
536 loadup.el this way. | |
537 | |
538 Note that this list should not include lisp files which might not | |
539 be present, like site-load.el and site-init.el; this makefile | |
6398
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
540 expects them all to be either present or buildable. */ |
4796 | 541 lisp= \ |
542 ${lispdir}abbrev.elc \ | |
543 ${lispdir}buff-menu.elc \ | |
544 ${lispdir}byte-run.elc \ | |
545 ${lispdir}c-mode.elc \ | |
546 ${lispdir}files.elc \ | |
547 ${lispdir}fill.elc \ | |
548 FLOAT_SUPPORT \ | |
549 FRAME_SUPPORT \ | |
6398
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
550 X_WINDOWS_SUPPORT \ |
4796 | 551 ${lispdir}help.elc \ |
552 ${lispdir}indent.elc \ | |
553 ${lispdir}isearch.elc \ | |
554 ${lispdir}lisp-mode.elc \ | |
555 ${lispdir}lisp.elc \ | |
556 ${lispdir}loaddefs.el \ | |
557 ${lispdir}map-ynp.elc \ | |
558 ${lispdir}page.elc \ | |
559 ${lispdir}paragraphs.elc \ | |
560 ${lispdir}paths.el \ | |
561 ${lispdir}register.elc \ | |
562 ${lispdir}replace.elc \ | |
563 ${lispdir}simple.elc \ | |
564 ${lispdir}startup.elc \ | |
565 ${lispdir}subr.elc \ | |
566 ${lispdir}text-mode.elc \ | |
567 ${lispdir}vc-hooks.elc \ | |
568 VMS_SUPPORT \ | |
7654
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
569 MSDOS_SUPPORT \ |
6398
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
570 ${lispdir}window.elc \ |
6404
639d046c8b28
(lisp): Include version.el, not version.elc.
Roland McGrath <roland@gnu.org>
parents:
6403
diff
changeset
|
571 ${lispdir}version.el |
4796 | 572 |
573 /* Construct full set of libraries to be linked. | |
574 Note that SunOS needs -lm to come before -lc; otherwise, you get | |
4814
9c7b28c16e94
(LIBES): Add $(GNULIB_VAR) again at end.
Roland McGrath <roland@gnu.org>
parents:
4803
diff
changeset
|
575 duplicated symbols. If the standard libraries were compiled |
9c7b28c16e94
(LIBES): Add $(GNULIB_VAR) again at end.
Roland McGrath <roland@gnu.org>
parents:
4803
diff
changeset
|
576 with GCC, we might need gnulib again after them. */ |
4796 | 577 LIBES = $(LIBX) LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \ |
4814
9c7b28c16e94
(LIBES): Add $(GNULIB_VAR) again at end.
Roland McGrath <roland@gnu.org>
parents:
4803
diff
changeset
|
578 LIBS_DEBUG $(GNULIB_VAR) LIB_MATH LIB_STANDARD $(GNULIB_VAR) |
4796 | 579 |
580 /* Enable recompilation of certain other files depending on system type. */ | |
581 | |
582 #ifndef OTHER_FILES | |
583 #define OTHER_FILES | |
584 #endif | |
585 | |
586 /* Enable inclusion of object files in temacs depending on system type. */ | |
587 #ifndef OBJECTS_SYSTEM | |
588 #define OBJECTS_SYSTEM | |
589 #endif | |
590 | |
591 #ifndef OBJECTS_MACHINE | |
592 #define OBJECTS_MACHINE | |
593 #endif | |
594 | |
595 all: emacs OTHER_FILES | |
596 | |
597 emacs: temacs ${etc}DOC ${lisp} | |
598 #ifdef CANNOT_DUMP | |
6430
bfc8a1891b78
(emacs): rm emacs before the ln.
Richard M. Stallman <rms@gnu.org>
parents:
6405
diff
changeset
|
599 rm -f emacs |
4796 | 600 ln temacs emacs |
601 #else | |
602 #ifdef HAVE_SHM | |
603 ./temacs -nl -batch -l loadup dump | |
604 #else /* ! defined (HAVE_SHM) */ | |
605 ./temacs -batch -l loadup dump | |
606 #endif /* ! defined (HAVE_SHM) */ | |
607 #endif /* ! defined (CANNOT_DUMP) */ | |
608 | |
5402
a9b528e5abe6
(${etc}DOC): Don't depend on SOME_MACHINE_OBJECTS.
Richard M. Stallman <rms@gnu.org>
parents:
5401
diff
changeset
|
609 ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp} |
7654
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
610 -rm -f ${etc}DOC |
5434
c89fd1fbf068
(buffer.o): Don't depend on syntax.h.
Richard M. Stallman <rms@gnu.org>
parents:
5402
diff
changeset
|
611 ${libsrc}make-docfile -d ${srcdir} ${obj} ${SOME_MACHINE_OBJECTS} \ |
6967
d74f85e99ab4
(${etc}DOC): Delete redundant version.el from cmd.
Richard M. Stallman <rms@gnu.org>
parents:
6927
diff
changeset
|
612 ${lisp} > ${etc}DOC |
4796 | 613 |
614 ${libsrc}make-docfile: | |
5921
28b3aa222dde
(${libsrc}make-docfile): Don't pass ../arch-lib as target to submake.
Richard M. Stallman <rms@gnu.org>
parents:
5702
diff
changeset
|
615 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile |
4796 | 616 |
617 /* Some systems define this to cause parallel Make-ing. */ | |
618 #ifndef MAKE_PARALLEL | |
619 #define MAKE_PARALLEL | |
620 #endif | |
621 | |
622 temacs: MAKE_PARALLEL $(LOCALCPP) $(SHORT) $(STARTFILES) $(OLDXMENU) ${obj} ${otherobj} OBJECTS_SYSTEM OBJECTS_MACHINE prefix-args | |
6810
6a097e7b87dc
(temacs): Include ${ALL_LDFLAGS} within the call to YMF_PASS_LDFLAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6432
diff
changeset
|
623 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${ALL_LDFLAGS}) \ |
4796 | 624 -o temacs ${STARTFILES} ${obj} ${otherobj} \ |
625 OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES} | |
626 | |
627 prefix-args: prefix-args.c $(config_h) | |
628 $(CC) $(ALL_CFLAGS) ${srcdir}/prefix-args.c -o prefix-args | |
629 | |
630 /* These are needed for C compilation, on the systems that need them */ | |
631 #ifdef NEED_CPP | |
632 CPP = ./localcpp | |
633 localcpp: | |
634 cd ${cppdir}; ${MAKE} ${MFLAGS} EMACS=-DEMACS | |
635 ln ${cppdir}cpp localcpp /* Name where ALL_CFLAGS will refer to it */ | |
636 /* cc appears to be cretinous and require all of these to exist | |
637 if -B is specified -- we can't use one local pass and let the | |
638 others be the standard ones. What a loser. | |
639 We can't even use ln, since they are probably | |
640 on different disks. */ | |
641 cp /lib/ccom localccom | |
642 -cp /lib/optim localoptim | |
643 -cp /lib/c2 localc2 | |
644 cp /bin/as localas | |
645 #else /* ! defined (NEED_CPP) */ | |
646 CPP = $(CC) -E | |
647 #endif /* ! defined (NEED_CPP) */ | |
648 | |
649 #ifdef SHORTNAMES | |
650 shortnames: | |
651 cd ${shortnamesdir}; ${MAKE} ${MFLAGS} | |
652 #endif | |
653 | |
654 /* Don't lose if this was not defined. */ | |
655 #ifndef OLDXMENU_OPTIONS | |
656 #define OLDXMENU_OPTIONS | |
657 #endif | |
658 | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
659 /* Don't lose if this was not defined. */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
660 #ifndef LWLIB_OPTIONS |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
661 #define LWLIB_OPTIONS |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
662 #endif |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
663 |
4796 | 664 #ifdef HAVE_X_WINDOWS |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
665 #ifdef HAVE_X11 |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
666 #ifdef USE_X_TOOLKIT |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
667 $(OLDXMENU): really-lwlib |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
668 -rm -f $(OLDXMENU) /* We might have a link to an old version. */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
669 ${LN_S} ${lwlibdir}liblw.a $(OLDXMENU) |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
670 |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
671 /* Encode the values of these two macros in Make variables, |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
672 so we can use $(...) to substitute their values within "...". */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
673 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
674 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
675 C_SWITCH_SITE_1 = C_SWITCH_SITE |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
676 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
677 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
678 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
679 really-lwlib: |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
680 cd ${lwlibdir}; ${MAKE} ${MFLAGS} LWLIB_OPTIONS \ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
681 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
682 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
683 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
684 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
685 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
686 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
687 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)" |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
688 @true /* make -t should not create really-lwlib. */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
689 #else /* not USE_X_TOOLKIT */ |
4796 | 690 #ifdef HAVE_X_MENU |
691 $(OLDXMENU): really-oldXMenu | |
692 -rm -f $(OLDXMENU) /* We might have a link to an old version. */ | |
693 ${LN_S} ${oldXMenudir}libXMenu11.a $(OLDXMENU) | |
694 | |
695 /* Encode the values of these two macros in Make variables, | |
696 so we can use $(...) to substitute their values within "...". */ | |
697 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE | |
698 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM | |
699 C_SWITCH_SITE_1 = C_SWITCH_SITE | |
700 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE | |
701 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE | |
702 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM | |
703 really-oldXMenu: | |
704 cd ${oldXMenudir}; ${MAKE} ${MFLAGS} OLDXMENU_OPTIONS \ | |
705 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \ | |
706 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \ | |
707 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \ | |
708 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \ | |
709 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \ | |
710 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \ | |
711 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)" | |
712 @true /* make -t should not create really-oldXMenu. */ | |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
713 #endif /* HAVE_X_MENU */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
714 #endif /* not USE_X_TOOLKIT */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
715 #endif /* HAVE_X11 */ |
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
716 #endif /* HAVE_X_WINDOWS */ |
4796 | 717 |
718 paths.h: paths.h.in | |
719 @echo "The file paths.h needs to be set up from paths.h.in." | |
720 @echo "Consult the file \`INSTALL' for instructions for building Emacs." | |
721 exit 1 | |
722 | |
723 config.h: config.h.in | |
724 @echo "The file config.h needs to be set up from config.h.in." | |
725 @echo "Consult the file \`INSTALL' for instructions for building Emacs." | |
726 exit 1 | |
727 | |
728 /* Some machines have alloca built-in. | |
729 They should define HAVE_ALLOCA, or may just let alloca.s | |
730 be used but generate no code. | |
731 Some have it written in assembler in alloca.s. | |
732 Some use the C version in alloca.c (these define C_ALLOCA in config.h). | |
733 */ | |
734 | |
735 #ifdef C_ALLOCA | |
736 /* We could put something in alloca.c to #define free and malloc | |
737 whenever emacs was #defined, but that's not appropriate for all | |
738 users of alloca in Emacs. Check out ../lib-src/getopt.c. */ | |
739 alloca.o : alloca.c | |
740 $(CC) -c $(CPPFLAGS) -Dfree=xfree -Dmalloc=xmalloc \ | |
741 $(ALL_CFLAGS) ${srcdir}/alloca.c | |
742 #else | |
743 #ifndef HAVE_ALLOCA | |
7045
6ea4737a3db7
(alloca.o): Use config_h.
Richard M. Stallman <rms@gnu.org>
parents:
6999
diff
changeset
|
744 alloca.o : alloca.s $(config_h) |
4796 | 745 /* $(CPP) is cc -E, which may get confused by filenames |
746 that do not end in .c. So copy file to a safe name. */ | |
747 cp ${srcdir}/alloca.s allocatem.c | |
748 /* Remove any ^L, blank lines, and preprocessor comments, | |
749 since some assemblers barf on them. Use a different basename for the | |
750 output file, since some stupid compilers (Green Hill's) use that | |
751 name for the intermediate assembler file. */ | |
752 $(CPP) $(CPPFLAGS) $(ALL_CFLAGS) allocatem.c | \ | |
753 sed -e 's///' -e 's/^#.*//' | \ | |
754 sed -n -e '/^..*$$/p' > allocax.s | |
755 -rm -f alloca.o | |
756 /* Xenix, in particular, needs to run assembler via cc. */ | |
757 $(CC) -c allocax.s | |
758 mv allocax.o alloca.o | |
759 rm allocax.s allocatem.c | |
760 #endif /* HAVE_ALLOCA */ | |
761 #endif /* ! defined (C_ALLOCA) */ | |
762 | |
763 /* Nearly all the following files depend on lisp.h, | |
764 but it is not included as a dependency because | |
765 it is so often changed in ways that do not require any recompilation | |
766 and so rarely changed in ways that do require any. */ | |
767 | |
768 abbrev.o : abbrev.c buffer.h commands.h $(config_h) | |
5434
c89fd1fbf068
(buffer.o): Don't depend on syntax.h.
Richard M. Stallman <rms@gnu.org>
parents:
5402
diff
changeset
|
769 buffer.o : buffer.c buffer.h commands.h window.h \ |
4796 | 770 INTERVAL_SRC blockinput.h $(config_h) |
771 callint.o : callint.c window.h commands.h buffer.h mocklisp.h \ | |
772 keyboard.h $(config_h) | |
5349
efcc2af40221
(callproc.o): Depend on systty.h and syssignal.h.
Richard M. Stallman <rms@gnu.org>
parents:
5234
diff
changeset
|
773 callproc.o : callproc.c paths.h buffer.h commands.h $(config_h) \ |
efcc2af40221
(callproc.o): Depend on systty.h and syssignal.h.
Richard M. Stallman <rms@gnu.org>
parents:
5234
diff
changeset
|
774 process.h systty.h syssignal.h |
4796 | 775 casefiddle.o : casefiddle.c syntax.h commands.h buffer.h $(config_h) |
776 casetab.o : casetab.c buffer.h $(config_h) | |
777 cm.o : cm.c cm.h termhooks.h $(config_h) | |
778 cmds.o : cmds.c syntax.h buffer.h commands.h $(config_h) | |
779 pre-crt0.o : pre-crt0.c | |
780 crt0.o : crt0.c $(config_h) | |
781 CRT0_COMPILE ${srcdir}/crt0.c | |
782 dired.o : dired.c commands.h buffer.h $(config_h) regex.h | |
783 dispnew.o : dispnew.c commands.h frame.h window.h buffer.h dispextern.h \ | |
784 termchar.h termopts.h termhooks.h cm.h disptab.h systty.h systime.h $(config_h) | |
785 doc.o : doc.c $(config_h) paths.h buffer.h keyboard.h | |
786 doprnt.o : doprnt.c | |
787 editfns.o : editfns.c window.h buffer.h systime.h INTERVAL_SRC $(config_h) | |
788 emacs.o : emacs.c commands.h systty.h syssignal.h process.h INTERVAL_SRC $(config_h) | |
789 fileio.o : fileio.c window.h buffer.h systime.h INTERVAL_SRC $(config_h) | |
790 filelock.o : filelock.c buffer.h paths.h $(config_h) | |
791 filemode.o : filemode.c $(config_h) | |
792 getloadavg.o : getloadavg.c $(config_h) | |
793 indent.o : indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \ | |
794 termopts.h disptab.h | |
795 insdel.o : insdel.c window.h buffer.h INTERVAL_SRC blockinput.h $(config_h) | |
796 keyboard.o : keyboard.c termchar.h termhooks.h termopts.h buffer.h \ | |
797 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \ | |
798 systty.h systime.h dispextern.h intervals.h blockinput.h $(config_h) | |
799 keymap.o : keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \ | |
800 $(config_h) | |
801 lastfile.o : lastfile.c $(config_h) | |
802 macros.o : macros.c window.h buffer.h commands.h macros.h $(config_h) | |
803 malloc.o : malloc.c $(config_h) | |
804 gmalloc.o : gmalloc.c $(config_h) | |
805 ralloc.o : ralloc.c $(config_h) | |
806 vm-limit.o : vm-limit.c mem-limits.h $(config_h) | |
807 marker.o : marker.c buffer.h $(config_h) | |
808 minibuf.o : minibuf.c syntax.h dispextern.h frame.h window.h \ | |
809 buffer.h commands.h $(config_h) | |
810 mocklisp.o : mocklisp.c buffer.h $(config_h) | |
811 process.o : process.c process.h buffer.h window.h termhooks.h termopts.h \ | |
812 commands.h syssignal.h systime.h systty.h syswait.h frame.h $(config_h) | |
813 regex.o : regex.c syntax.h buffer.h $(config_h) regex.h | |
814 frame.o : frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \ | |
815 buffer.h $(config_h) | |
816 scroll.o : scroll.c termchar.h $(config_h) dispextern.h frame.h | |
817 search.o : search.c regex.h commands.h buffer.h syntax.h blockinput.h $(config_h) | |
818 syntax.o : syntax.c syntax.h buffer.h commands.h $(config_h) | |
819 sysdep.o : sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \ | |
820 frame.h syssignal.h systty.h systime.h syswait.h blockinput.h window.h | |
821 term.o : term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \ | |
822 disptab.h | |
823 termcap.o : termcap.c $(config_h) | |
824 terminfo.o : terminfo.c $(config_h) | |
825 tparam.o : tparam.c $(config_h) | |
826 undo.o : undo.c buffer.h commands.h $(config_h) | |
7586
db8237533825
(UNEXEC_ALIAS): New variable, used to make the unex...o target.
Richard M. Stallman <rms@gnu.org>
parents:
7580
diff
changeset
|
827 /* This hack is to discard any space that cpp might put at the beginning |
db8237533825
(UNEXEC_ALIAS): New variable, used to make the unex...o target.
Richard M. Stallman <rms@gnu.org>
parents:
7580
diff
changeset
|
828 of UNEXEC when substituting it in. */ |
db8237533825
(UNEXEC_ALIAS): New variable, used to make the unex...o target.
Richard M. Stallman <rms@gnu.org>
parents:
7580
diff
changeset
|
829 UNEXEC_ALIAS=UNEXEC |
db8237533825
(UNEXEC_ALIAS): New variable, used to make the unex...o target.
Richard M. Stallman <rms@gnu.org>
parents:
7580
diff
changeset
|
830 $(UNEXEC_ALIAS) : UNEXEC_SRC $(config_h) |
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
831 widget.o : widget.c xterm.h frame.h dispextern.h widgetprv.h $(config_h) |
4796 | 832 window.o : window.c indent.h commands.h frame.h window.h buffer.h termchar.h \ |
833 termhooks.h disptab.h keyboard.h $(config_h) | |
834 xdisp.o : xdisp.c macros.h commands.h indent.h buffer.h dispextern.h \ | |
835 termchar.h frame.h window.h disptab.h termhooks.h $(config_h) | |
836 xfaces.o : xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \ | |
837 window.h $(config_h) | |
838 xfns.o : xfns.c buffer.h frame.h window.h keyboard.h xterm.h \ | |
839 blockinput.h $(config_h) | |
840 xmenu.o : xmenu.c xterm.h window.h frame.h keyboard.h blockinput.h $(config_h) | |
841 xterm.o : xterm.c xterm.h termhooks.h termopts.h termchar.h window.h \ | |
5575
b2d5340c0c2c
(xterm.o): Depends on syssignal.h.
Richard M. Stallman <rms@gnu.org>
parents:
5511
diff
changeset
|
842 dispextern.h frame.h disptab.h blockinput.h systime.h syssignal.h \ |
4796 | 843 gnu.h sink.h sinkmask.h $(config_h) |
844 xselect.o : xselect.c dispextern.h frame.h xterm.h blockinput.h $(config_h) | |
845 xrdb.o : xrdb.c $(config_h) | |
5099 | 846 hftctl.o : hftctl.c $(config_h) |
4796 | 847 |
848 /* The files of Lisp proper */ | |
849 | |
850 alloc.o : alloc.c frame.h window.h buffer.h puresize.h syssignal.h | |
851 alloc.o : blockinput.h $(config_h) INTERVAL_SRC | |
852 bytecode.o : bytecode.c buffer.h $(config_h) | |
853 data.o : data.c buffer.h puresize.h syssignal.h $(config_h) | |
854 eval.o : eval.c commands.h keyboard.h blockinput.h $(config_h) | |
855 floatfns.o : floatfns.c $(config_h) | |
856 fns.o : fns.c commands.h $(config_h) frame.h buffer.h keyboard.h INTERVAL_SRC | |
857 print.o : print.c process.h frame.h window.h buffer.h $(config_h) | |
858 lread.o : lread.c commands.h keyboard.h buffer.h paths.h $(config_h) \ | |
859 termhooks.h | |
860 | |
861 /* Text properties support */ | |
862 textprop.o : textprop.c buffer.h intervals.h $(config_h) | |
4963
6648ce61e9fd
(intervals.o): Depend on puresize.h.
Richard M. Stallman <rms@gnu.org>
parents:
4814
diff
changeset
|
863 intervals.o : intervals.c buffer.h intervals.h puresize.h $(config_h) |
4796 | 864 |
865 /* System-specific programs to be made. | |
866 OTHER_FILES, OBJECTS_SYSTEM and OBJECTS_MACHINE | |
867 select which of these should be compiled. */ | |
868 | |
869 sunfns.o : sunfns.c buffer.h $(config_h) | |
870 | |
871 ${libsrc}emacstool: ${libsrc}emacstool.c | |
872 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool | |
873 mostlyclean: | |
7145
1221250ed953
(mostlyclean): Remove liblw.a.
Richard M. Stallman <rms@gnu.org>
parents:
7137
diff
changeset
|
874 rm -f temacs prefix-args xmakefile* core \#* *.o libXMenu11.a liblw.a |
4796 | 875 rm -f ../etc/DOC |
876 clean: mostlyclean | |
877 rm -f emacs-* emacs | |
878 /**/# This is used in making a distribution. | |
879 /**/# Do not use it on development directories! | |
880 distclean: clean | |
5045
ef406a9b2f44
(distclean): Do delete Makefile and Makefile.in.
Richard M. Stallman <rms@gnu.org>
parents:
5035
diff
changeset
|
881 rm -f paths.h config.h Makefile Makefile.in ../etc/DOC-* |
4796 | 882 realclean: distclean |
883 rm -f TAGS | |
884 versionclean: | |
885 -rm -f emacs emacs-* ../etc/DOC* | |
886 extraclean: distclean | |
5035
2906af83fe85
(extraclean): Prevent wildcard from starting comment.
Richard M. Stallman <rms@gnu.org>
parents:
5030
diff
changeset
|
887 -rm -f *~ \#* m/?*~ s/?*~ |
4796 | 888 |
889 /* The rule for the [sm] files has to be written a little funny to | |
890 avoid looking like a C comment to CPP. */ | |
891 SOURCES = *.[ch] [sm]/?* COPYING ymakefile \ | |
892 config.h.in README COPYING ChangeLog vms.pp-trans | |
893 unlock: | |
894 chmod u+w $(SOURCES) | |
895 | |
896 relock: | |
897 chmod -w $(SOURCES) | |
898 chmod +w paths.h | |
6988
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
899 |
7137 | 900 /* Arrange to make a tags table in ../lisp, and another in this dir |
901 which includes ../lisp/TAGS by reference. */ | |
6988
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
902 ctagsfiles = [a-zA-Z]*.h [a-zA-Z]*.c |
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
903 lisptagsfiles = ../lisp/[a-zA-Z]*.el ../lisp/term/[a-zA-Z]*.el |
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
904 TAGS: $(ctagsfiles) |
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
905 ../lib-src/etags --include=../lisp/TAGS $(ctagsfiles) |
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
906 ../lisp/TAGS: $(lisptagsfiles) |
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
907 cd ../lisp; $(MAKE) TAGS |
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
908 tags: TAGS ../lisp/TAGS |
4796 | 909 .PHONY: tags |