Mercurial > emacs
annotate src/Makefile.in @ 11961:b5efbe330c86
(previous-matching-history-element):
No longer remove empty string from history.
Better error message if history is empty.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Sat, 27 May 1995 00:40:31 +0000 |
| parents | 175192b364b1 |
| children | 7c295f5d7633 |
| 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. |
| 11235 | 2 # Copyright (C) 1985, 87, 88, 93, 94, 95 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 | |
| 8327 | 61 /* We won't really call alloca; |
| 62 don't let the file name alloca.c get messed up. */ | |
| 63 #ifdef alloca | |
| 64 #undef alloca | |
| 65 #endif | |
| 66 | |
| 4796 | 67 /* Use HAVE_X11 as an alias for X11 in this file |
| 68 to avoid problems with X11 as a subdirectory name | |
| 69 in -I and other such options which pass through this file. */ | |
| 70 | |
| 71 #ifdef X11 | |
| 72 #define HAVE_X11 | |
| 73 #undef X11 | |
| 74 #endif | |
| 75 | |
| 76 /* On some machines #define register is done in config; | |
| 77 don't let it interfere with this file. */ | |
| 78 #undef register | |
| 79 | |
| 80 /* On some systems we may not be able to use the system make command. */ | |
| 81 #ifdef MAKE_COMMAND | |
| 82 MAKE = MAKE_COMMAND | |
| 83 #endif | |
| 84 | |
| 85 #ifdef C_COMPILER | |
| 86 CC = C_COMPILER | |
| 87 #endif | |
| 88 | |
|
7580
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
89 /* 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
|
90 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
|
91 #ifdef __GNU_LIBRARY__ |
|
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
92 #ifndef LINUX |
|
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
93 #define ORDINARY_LINK |
|
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
94 #endif |
|
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
95 #endif |
|
68044af924e8
(FRAME_SUPPORT): Add menu-bar.el.
Richard M. Stallman <rms@gnu.org>
parents:
7531
diff
changeset
|
96 |
| 4796 | 97 /* Some machines don't find the standard C libraries in the usual place. */ |
| 98 #ifndef ORDINARY_LINK | |
| 99 #ifndef LIB_STANDARD | |
| 100 #define LIB_STANDARD -lc | |
| 101 #endif | |
| 102 #else | |
| 103 #ifndef LIB_STANDARD | |
| 104 #define LIB_STANDARD | |
| 105 #endif | |
| 106 #endif | |
| 107 | |
| 108 /* Unless inhibited or changed, use -lg to link for debugging. */ | |
| 109 #ifndef LIBS_DEBUG | |
| 110 #define LIBS_DEBUG -lg | |
| 111 #endif | |
| 112 | |
| 113 /* Some s/*.h files define this to request special libraries. */ | |
| 114 #ifndef LIBS_SYSTEM | |
| 115 #define LIBS_SYSTEM | |
| 116 #endif | |
| 117 | |
| 118 /* Some m/*.h files define this to request special libraries. */ | |
| 119 #ifndef LIBS_MACHINE | |
| 120 #define LIBS_MACHINE | |
| 121 #endif | |
| 122 | |
| 123 #ifndef LIB_MATH | |
| 124 # ifdef LISP_FLOAT_TYPE | |
| 125 # define LIB_MATH -lm | |
| 126 # else /* ! defined (LISP_FLOAT_TYPE) */ | |
| 127 # define LIB_MATH | |
| 128 # endif /* ! defined (LISP_FLOAT_TYPE) */ | |
| 129 #endif /* LIB_MATH */ | |
| 130 | |
| 131 /* Some s/*.h files define this to request special switches in ld. */ | |
| 132 #ifndef LD_SWITCH_SYSTEM | |
| 133 #if !defined (__GNUC__) && (defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF))) | |
| 134 #define LD_SWITCH_SYSTEM -X | |
| 135 #else /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */ | |
| 136 #define LD_SWITCH_SYSTEM | |
| 137 #endif /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */ | |
| 138 #endif /* LD_SWITCH_SYSTEM */ | |
| 139 | |
| 140 /* Some m/*.h files define this to request special switches in ld. */ | |
| 141 #ifndef LD_SWITCH_MACHINE | |
| 142 #define LD_SWITCH_MACHINE | |
| 143 #endif | |
| 144 | |
| 145 /* Some m/*.h files define this to request special switches in cc. */ | |
| 146 #ifndef C_SWITCH_MACHINE | |
| 147 #define C_SWITCH_MACHINE | |
| 148 #endif | |
| 149 | |
| 150 /* Some s/*.h files define this to request special switches in cc. */ | |
| 151 #ifndef C_SWITCH_SYSTEM | |
| 152 #define C_SWITCH_SYSTEM | |
| 153 #endif | |
| 154 | |
| 155 /* These macros are for switches specifically related to X Windows. */ | |
| 156 #ifndef C_SWITCH_X_MACHINE | |
| 157 #define C_SWITCH_X_MACHINE | |
| 158 #endif | |
| 159 | |
| 160 #ifndef C_SWITCH_X_SYSTEM | |
| 161 #define C_SWITCH_X_SYSTEM | |
| 162 #endif | |
| 163 | |
| 164 #ifndef C_SWITCH_X_SITE | |
| 165 #define C_SWITCH_X_SITE | |
| 166 #endif | |
| 167 | |
| 168 #ifndef LD_SWITCH_X_SITE | |
| 169 #define LD_SWITCH_X_SITE | |
| 170 #endif | |
| 171 | |
|
7723
9f0f4acb409c
(LD_SWITCH_X_DEFAULT): Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
7719
diff
changeset
|
172 #ifndef LD_SWITCH_X_DEFAULT |
|
9f0f4acb409c
(LD_SWITCH_X_DEFAULT): Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
7719
diff
changeset
|
173 #define LD_SWITCH_X_DEFAULT |
|
9f0f4acb409c
(LD_SWITCH_X_DEFAULT): Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
7719
diff
changeset
|
174 #endif |
|
9f0f4acb409c
(LD_SWITCH_X_DEFAULT): Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
7719
diff
changeset
|
175 |
| 4796 | 176 /* These can be passed in from config.h to define special load and |
| 177 compile switches needed by individual sites */ | |
| 178 #ifndef LD_SWITCH_SITE | |
| 179 #define LD_SWITCH_SITE | |
| 180 #endif | |
| 181 | |
| 182 #ifndef C_SWITCH_SITE | |
| 183 #define C_SWITCH_SITE | |
| 184 #endif | |
| 185 | |
| 186 #ifndef ORDINARY_LINK | |
| 187 | |
| 188 #ifndef CRT0_COMPILE | |
| 189 #define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS) C_SWITCH_ASM | |
| 190 #endif | |
| 191 | |
| 192 #ifndef START_FILES | |
| 193 #ifdef NO_REMAP | |
| 194 #ifdef COFF_ENCAPSULATE | |
| 195 #define START_FILES pre-crt0.o /usr/local/lib/gcc-crt0.o | |
| 196 #else /* ! defined (COFF_ENCAPSULATE) */ | |
| 197 #define START_FILES pre-crt0.o /lib/crt0.o | |
| 198 #endif /* ! defined (COFF_ENCAPSULATE) */ | |
| 199 #else /* ! defined (NO_REMAP) */ | |
|
10585
eb798bab393d
(ecrt0.o): Target renamed from crt0.o.
Richard M. Stallman <rms@gnu.org>
parents:
10508
diff
changeset
|
200 #define START_FILES ecrt0.o |
| 4796 | 201 #endif /* ! defined (NO_REMAP) */ |
| 202 #endif /* START_FILES */ | |
| 203 STARTFILES = START_FILES | |
| 204 | |
| 205 #else /* ORDINARY_LINK */ | |
| 206 | |
| 207 /* config.h might want to force START_FILES anyway */ | |
| 208 #ifdef START_FILES | |
| 209 STARTFILES = START_FILES | |
| 210 #endif /* START_FILES */ | |
| 211 | |
| 212 #endif /* not ORDINARY_LINK */ | |
| 213 | |
| 214 | |
| 215 /* cc switches needed to make `asm' keyword work. | |
| 216 Nothing special needed on most machines. */ | |
| 217 #ifndef C_SWITCH_ASM | |
| 218 #define C_SWITCH_ASM | |
| 219 #endif | |
| 220 | |
| 221 /* Figure out whether the system cpp can handle long names. | |
| 222 Do it by testing it right now. | |
| 223 If it loses, arrange to use the GNU cpp. */ | |
| 224 | |
| 225 #define LONGNAMEBBBFOOX | |
| 226 #ifdef LONGNAMEBBBARFOOX | |
| 227 /* Installed cpp fails to distinguish those names! */ | |
| 228 /* Arrange to compile the GNU cpp later on */ | |
| 229 #define NEED_CPP | |
| 230 /* Cause cc to invoke the cpp that comes with Emacs, | |
| 231 which will be in a file named localcpp. */ | |
| 232 MYCPPFLAG= -Blocal | |
| 233 /* LOCALCPP is the local one or nothing. | |
| 234 CPP is the local one or the standardone. */ | |
| 235 LOCALCPP= localcpp | |
| 236 #endif /* ! defined (LONGNAMEBBBARFOOX) */ | |
| 237 | |
| 238 #ifdef SHORTNAMES | |
| 239 SHORT= shortnames | |
| 240 #endif | |
| 241 | |
| 242 /* DO NOT use -R. There is a special hack described in lastfile.c | |
| 243 which is used instead. Some initialized data areas are modified | |
| 244 at initial startup, then labeled as part of the text area when | |
| 245 Emacs is dumped for the first time, and never changed again. */ | |
| 246 | |
| 247 /* -Demacs is needed to make some files produce the correct version | |
| 248 for use in Emacs. | |
| 249 | |
| 250 -DHAVE_CONFIG_H is needed for some other files to take advantage of | |
| 251 the information in `config.h'. */ | |
|
5030
1c9c9a87f8b6
Delete spurious CFLAGS=-g.
Richard M. Stallman <rms@gnu.org>
parents:
4963
diff
changeset
|
252 |
| 4796 | 253 /* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM |
| 254 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
|
255 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 | 256 .c.o: |
| 257 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $< | |
| 258 | |
| 259 #ifndef LIBX10_MACHINE | |
| 260 #define LIBX10_MACHINE | |
| 261 #endif | |
| 262 | |
| 263 #ifndef LIBX11_MACHINE | |
| 264 #define LIBX11_MACHINE | |
| 265 #endif | |
| 266 | |
| 267 #ifndef LIBX10_SYSTEM | |
| 268 #define LIBX10_SYSTEM | |
| 269 #endif | |
| 270 | |
| 271 #ifndef LIBX11_SYSTEM | |
| 272 #define LIBX11_SYSTEM | |
| 273 #endif | |
| 274 | |
| 275 #ifndef LIB_X11_LIB | |
| 276 #define LIB_X11_LIB -lX11 | |
| 277 #endif | |
| 278 | |
| 279 #ifdef HAVE_X_WINDOWS | |
| 280 #ifdef HAVE_X_MENU | |
| 281 | |
| 282 /* Include xmenu.o in the list of X object files. */ | |
| 283 XOBJ= xterm.o xfns.o xfaces.o xmenu.o xselect.o xrdb.o | |
| 284 | |
| 285 /* The X Menu stuff is present in the X10 distribution, but missing | |
| 286 from X11. If we have X10, just use the installed library; | |
| 287 otherwise, use our own copy. */ | |
| 288 #ifdef HAVE_X11 | |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
289 #ifdef USE_X_TOOLKIT |
|
8787
87b54930a42a
(xmenu.o): Depend on puresize.h.
Richard M. Stallman <rms@gnu.org>
parents:
8637
diff
changeset
|
290 OLDXMENU=${lwlibdir}liblw.a |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
291 LIBXMENU= $(OLDXMENU) |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
292 #else /* not USE_X_TOOLKIT */ |
|
8787
87b54930a42a
(xmenu.o): Depend on puresize.h.
Richard M. Stallman <rms@gnu.org>
parents:
8637
diff
changeset
|
293 OLDXMENU= ${oldXMenudir}libXMenu11.a |
| 4796 | 294 LIBXMENU= $(OLDXMENU) |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
295 #endif /* not USE_X_TOOLKIT */ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
296 #else /* not HAVE_X11 */ |
| 4796 | 297 LIBXMENU= -lXMenu |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
298 #endif /* not HAVE_X11 */ |
| 4796 | 299 |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
300 #else /* not HAVE_X_MENU */ |
| 4796 | 301 |
| 302 /* Otherwise, omit xmenu.o from the list of X object files, and | |
| 303 don't worry about the menu library at all. */ | |
| 304 XOBJ= xterm.o xfns.o xfaces.o xselect.o xrdb.o | |
| 305 LIBXMENU= | |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
306 #endif /* not HAVE_X_MENU */ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
307 |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
308 #ifdef USE_X_TOOLKIT |
|
7479
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
309 #define @X_TOOLKIT_TYPE@ |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
310 #if defined (LUCID) || defined (ATHENA) |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
311 LIBW= -lXaw |
|
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 #ifdef MOTIF |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
314 #ifdef LIB_MOTIF |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
315 LIBW= LIB_MOTIF |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
316 #else |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
317 LIBW= -lXm |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
318 #endif |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
319 #endif |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
320 #ifdef OPEN_LOOK |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
321 LIBW= -lXol |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
322 #endif |
|
80a06d05d7df
Handle Motif and Open-look.
Richard M. Stallman <rms@gnu.org>
parents:
7328
diff
changeset
|
323 |
|
7488
9c2205991ff5
(LIBXTR6): New variable. Test HAVE_X11XTR6.
Richard M. Stallman <rms@gnu.org>
parents:
7484
diff
changeset
|
324 #ifdef HAVE_X11XTR6 |
|
9205
43c062993ed0
(LIBXTR6): If NEED_LIBW, add -lw.
Richard M. Stallman <rms@gnu.org>
parents:
9203
diff
changeset
|
325 #ifdef NEED_LIBW |
|
43c062993ed0
(LIBXTR6): If NEED_LIBW, add -lw.
Richard M. Stallman <rms@gnu.org>
parents:
9203
diff
changeset
|
326 LIBXTR6 = -lSM -lICE -lw |
|
43c062993ed0
(LIBXTR6): If NEED_LIBW, add -lw.
Richard M. Stallman <rms@gnu.org>
parents:
9203
diff
changeset
|
327 #else |
|
7484
5a10d0a7c8a1
(LIBXTR6): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7479
diff
changeset
|
328 LIBXTR6 = -lSM -lICE |
|
5a10d0a7c8a1
(LIBXTR6): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7479
diff
changeset
|
329 #endif |
|
9205
43c062993ed0
(LIBXTR6): If NEED_LIBW, add -lw.
Richard M. Stallman <rms@gnu.org>
parents:
9203
diff
changeset
|
330 #endif |
|
7484
5a10d0a7c8a1
(LIBXTR6): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7479
diff
changeset
|
331 |
|
7661
96437d76c9db
(LIBXT): Move -lXmu before -lXt.
Richard M. Stallman <rms@gnu.org>
parents:
7654
diff
changeset
|
332 LIBXT= $(LIBW) -lXmu -lXt $(LIBXTR6) -lXext |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
333 #else |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
334 LIBXT= |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
335 #endif |
| 4796 | 336 |
| 337 #ifdef HAVE_X11 | |
|
7723
9f0f4acb409c
(LD_SWITCH_X_DEFAULT): Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
7719
diff
changeset
|
338 /* LD_SWITCH_X_DEFAULT comes after everything else that specifies |
|
9f0f4acb409c
(LD_SWITCH_X_DEFAULT): Define if not defined.
Richard M. Stallman <rms@gnu.org>
parents:
7719
diff
changeset
|
339 options for where to find X libraries, but before those libraries. */ |
|
9203
3e723aa945eb
(LDFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9159
diff
changeset
|
340 X11_LDFLAGS = LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT |
|
3e723aa945eb
(LDFLAGS): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9159
diff
changeset
|
341 LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
342 #else /* not HAVE_X11 */ |
| 4796 | 343 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
|
344 #endif /* not HAVE_X11 */ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
345 #endif /* not HAVE_X_WINDOWS */ |
| 4796 | 346 |
| 347 #ifndef ORDINARY_LINK | |
| 348 /* Fix linking if compiled with GCC. */ | |
| 349 #ifdef __GNUC__ | |
| 350 | |
| 351 #if __GNUC__ > 1 | |
| 352 | |
|
5234
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
353 #ifdef LINKER |
|
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
354 #define LINKER_WAS_SPECIFIED |
|
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
355 #endif |
|
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
356 |
| 4796 | 357 /* Versions of GCC >= 2.0 put their library, libgcc.a, in obscure |
| 358 places that are difficult to figure out at make time. Fortunately, | |
| 359 these same versions allow you to pass arbitrary flags on to the | |
| 360 linker, so there's no reason not to use it as a linker. | |
| 361 | |
| 362 Well, it's not quite perfect. The `-nostdlib' keeps GCC from | |
| 363 searching for libraries in its internal directories, so we have to | |
| 364 ask GCC explicitly where to find libgcc.a. */ | |
| 365 | |
| 366 #ifndef LINKER | |
| 367 #define LINKER $(CC) -nostdlib | |
| 368 #endif | |
| 369 | |
| 370 #ifndef LIB_GCC | |
| 371 /* Ask GCC where to find libgcc.a. */ | |
| 372 #define LIB_GCC `$(CC) -print-libgcc-file-name` | |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
373 #endif /* not LIB_GCC */ |
| 4796 | 374 |
| 375 GNULIB_VAR = LIB_GCC | |
| 376 | |
|
5234
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
377 #ifndef LINKER_WAS_SPECIFIED |
| 4796 | 378 /* GCC passes any argument prefixed with -Xlinker directly to the |
| 379 linker. See prefix-args.c for an explanation of why we don't do | |
| 380 this with the shell's `for' construct. | |
| 381 Note that some people don't have '.' in their paths, so we must | |
| 382 use ./prefix-args. */ | |
| 383 #define YMF_PASS_LDFLAGS(flags) `./prefix-args -Xlinker flags` | |
|
5234
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
384 #else |
|
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
385 #define YMF_PASS_LDFLAGS(flags) flags |
|
abc23ae65483
(configuration): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5099
diff
changeset
|
386 #endif |
| 4796 | 387 |
| 388 #else /* __GNUC__ < 2 */ | |
| 389 | |
| 390 #ifndef LIB_GCC | |
| 391 #define LIB_GCC /usr/local/lib/gcc-gnulib | |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
392 #endif /* not LIB_GCC */ |
| 4796 | 393 GNULIB_VAR = `if [ -f LIB_GCC ] ; then echo LIB_GCC; else echo; fi` |
| 394 #endif /* __GNUC__ < 2 */ | |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
395 #else /* not __GNUC__ */ |
| 4796 | 396 GNULIB_VAR = |
| 397 | |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
398 #endif /* not __GNUC__ */ |
| 4796 | 399 #endif /* not ORDINARY_LINK */ |
| 400 | |
| 401 /* Specify address for ld to start loading at, | |
| 402 if requested by configuration. */ | |
| 403 #ifdef LD_TEXT_START_ADDR | |
| 404 STARTFLAGS = -T LD_TEXT_START_ADDR -e __start | |
| 405 #endif | |
| 406 | |
| 407 #ifdef ORDINARY_LINK | |
| 408 LD = $(CC) | |
| 409 #else | |
| 410 #ifdef COFF_ENCAPSULATE | |
| 411 LD=$(CC) -nostdlib | |
| 412 #else /* not ORDINARY_LINK */ | |
| 413 #ifdef LINKER | |
| 414 LD=LINKER | |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
415 #else /* not LINKER */ |
| 4796 | 416 LD=ld |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
417 #endif /* not LINKER */ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
418 #endif /* not COFF_ENCAPSULATE */ |
| 4796 | 419 #endif /* not ORDINARY_LINK */ |
| 420 | |
|
7531
ba949f15f8c4
(ALL_LDFLAGS): Add LDFLAGS.
Richard M. Stallman <rms@gnu.org>
parents:
7488
diff
changeset
|
421 ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_MACHINE LD_SWITCH_SITE $(LDFLAGS) |
| 4796 | 422 |
|
11835
175192b364b1
(SOURCES): Fix reference to ymakefile.
Karl Heuer <kwzh@gnu.org>
parents:
11776
diff
changeset
|
423 /* A macro which other sections of Makefile can redefine to munge the |
| 4796 | 424 flags before they're passed to LD. This is helpful if you have |
|
11835
175192b364b1
(SOURCES): Fix reference to ymakefile.
Karl Heuer <kwzh@gnu.org>
parents:
11776
diff
changeset
|
425 redefined LD to something odd, like "gcc". |
|
175192b364b1
(SOURCES): Fix reference to ymakefile.
Karl Heuer <kwzh@gnu.org>
parents:
11776
diff
changeset
|
426 (The YMF prefix is a holdover from the old name "ymakefile".) |
|
175192b364b1
(SOURCES): Fix reference to ymakefile.
Karl Heuer <kwzh@gnu.org>
parents:
11776
diff
changeset
|
427 */ |
| 4796 | 428 #ifndef YMF_PASS_LDFLAGS |
| 429 #define YMF_PASS_LDFLAGS(flags) flags | |
| 430 #endif | |
| 431 | |
| 432 /* Allow config.h to specify a replacement file for unexec.c. */ | |
| 433 #ifndef UNEXEC | |
| 434 #define UNEXEC unexec.o | |
| 435 #endif | |
| 436 #ifndef UNEXEC_SRC | |
| 437 #define UNEXEC_SRC unexec.c | |
| 438 #endif | |
| 439 | |
| 440 #ifdef USE_TEXT_PROPERTIES | |
| 441 #define INTERVAL_SRC intervals.h | |
| 442 #define INTERVAL_OBJ intervals.o textprop.o | |
| 443 #else | |
| 444 #define INTERVAL_SRC | |
| 445 #define INTERVAL_OBJ | |
| 446 #endif | |
| 447 | |
| 448 #ifdef HAVE_GETLOADAVG | |
| 449 #define GETLOADAVG_OBJ | |
| 450 #else | |
| 451 #define GETLOADAVG_OBJ getloadavg.o | |
| 452 #endif | |
| 453 | |
|
9254
bbacb08f7e0c
(MKTIME_OBJ): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9205
diff
changeset
|
454 #ifdef HAVE_MKTIME |
|
bbacb08f7e0c
(MKTIME_OBJ): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9205
diff
changeset
|
455 #define MKTIME_OBJ |
|
bbacb08f7e0c
(MKTIME_OBJ): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9205
diff
changeset
|
456 #else |
|
bbacb08f7e0c
(MKTIME_OBJ): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9205
diff
changeset
|
457 #define MKTIME_OBJ mktime.o |
|
bbacb08f7e0c
(MKTIME_OBJ): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9205
diff
changeset
|
458 #endif |
|
bbacb08f7e0c
(MKTIME_OBJ): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
9205
diff
changeset
|
459 |
| 9572 | 460 #ifdef MSDOS |
| 461 #ifdef HAVE_X_WINDOWS | |
| 462 #define MSDOS_OBJ dosfns.o msdos.o | |
| 463 #else | |
| 464 #define MSDOS_OBJ dosfns.o msdos.o xfaces.o xmenu.o | |
| 465 #endif | |
| 466 #else | |
| 467 #define MSDOS_OBJ | |
| 468 #endif | |
| 469 | |
| 470 | |
| 4796 | 471 /* lastfile must follow all files |
| 472 whose initialized data areas should be dumped as pure by dump-emacs. */ | |
| 473 obj= dispnew.o frame.o scroll.o xdisp.o window.o \ | |
|
8625
00437255eed7
(obj): Put cm.o before term.o. (Avoids mysterious lossage on Irix.)
Richard M. Stallman <rms@gnu.org>
parents:
8527
diff
changeset
|
474 cm.o term.o $(XOBJ) \ |
| 4796 | 475 emacs.o keyboard.o macros.o keymap.o sysdep.o \ |
| 476 buffer.o filelock.o insdel.o marker.o INTERVAL_OBJ \ | |
| 477 minibuf.o fileio.o dired.o filemode.o \ | |
| 478 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \ | |
| 479 alloc.o data.o doc.o editfns.o callint.o \ | |
| 480 eval.o floatfns.o fns.o print.o lread.o \ | |
| 481 abbrev.o syntax.o UNEXEC mocklisp.o bytecode.o \ | |
| 482 process.o callproc.o \ | |
|
9402
87337d65aa17
* Makefile.in.in (obj) Add region-cache.o to the list of files.
Jim Blandy <jimb@redhat.com>
parents:
9254
diff
changeset
|
483 region-cache.o \ |
| 9572 | 484 doprnt.o strftime.o MKTIME_OBJ GETLOADAVG_OBJ MSDOS_OBJ |
| 4796 | 485 |
|
5401
fd65333a301e
(SOME_MACHINE_OBJECTS): New var.
Richard M. Stallman <rms@gnu.org>
parents:
5368
diff
changeset
|
486 /* Object files used on some machine or other. |
|
fd65333a301e
(SOME_MACHINE_OBJECTS): New var.
Richard M. Stallman <rms@gnu.org>
parents:
5368
diff
changeset
|
487 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
|
488 in case they are needed there. */ |
|
9595
d0a1ccb93c47
(SOME_MACHINE_OBJECTS): Add msdos.o and x*.o files.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
489 SOME_MACHINE_OBJECTS = sunfns.o msdos.o \ |
|
d0a1ccb93c47
(SOME_MACHINE_OBJECTS): Add msdos.o and x*.o files.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
490 xterm.o xfns.o xfaces.o xmenu.o xselect.o xrdb.o |
|
d0a1ccb93c47
(SOME_MACHINE_OBJECTS): Add msdos.o and x*.o files.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
491 |
|
5401
fd65333a301e
(SOME_MACHINE_OBJECTS): New var.
Richard M. Stallman <rms@gnu.org>
parents:
5368
diff
changeset
|
492 |
| 4796 | 493 #ifdef TERMINFO |
| 494 /* Used to be -ltermcap here. If your machine needs that, | |
| 495 define LIBS_TERMCAP in the m/*.h file. */ | |
| 496 #ifndef LIBS_TERMCAP | |
| 497 #define LIBS_TERMCAP -lcurses | |
| 498 #endif /* LIBS_TERMCAP */ | |
| 499 termcapobj = terminfo.o | |
| 500 #else /* ! defined (TERMINFO) */ | |
| 501 #ifndef LIBS_TERMCAP | |
| 502 #define LIBS_TERMCAP | |
| 503 termcapobj = termcap.o tparam.o | |
| 504 #else /* LIBS_TERMCAP */ | |
| 505 termcapobj = tparam.o | |
| 506 #endif /* LIBS_TERMCAP */ | |
| 507 #endif /* ! defined (TERMINFO) */ | |
| 508 | |
| 509 | |
| 510 #ifndef SYSTEM_MALLOC | |
| 511 | |
| 512 #ifdef GNU_MALLOC /* New GNU malloc */ | |
| 513 #ifdef REL_ALLOC | |
| 514 mallocobj = gmalloc.o ralloc.o vm-limit.o | |
| 515 #else /* ! defined (REL_ALLOC) */ | |
| 516 mallocobj = gmalloc.o vm-limit.o | |
| 517 #endif /* ! defined (REL_ALLOC) */ | |
| 518 #else /* Old GNU malloc */ | |
| 519 mallocobj = malloc.o | |
| 520 #endif /* Old GNU malloc */ | |
| 521 | |
| 522 #endif /* SYSTEM_MALLOC */ | |
| 523 | |
| 524 | |
| 525 #ifndef HAVE_ALLOCA | |
| 526 allocaobj = alloca.o | |
| 527 #else | |
| 528 allocaobj = | |
| 529 #endif | |
| 530 | |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
531 #ifdef USE_X_TOOLKIT |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
532 widgetobj= widget.o |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
533 #else /* not USE_X_TOOLKIT */ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
534 widgetobj= |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
535 #endif /* not USE_X_TOOLKIT */ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
536 |
| 4796 | 537 |
| 538 /* define otherobj as list of object files that make-docfile | |
| 539 should not be told about. */ | |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
540 otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) |
| 4796 | 541 |
|
11106
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
542 #ifdef HAVE_FACES |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
543 #define FACE_SUPPORT ${lispdir}faces.elc ${lispdir}facemenu.elc |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
544 #else |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
545 #define FACE_SUPPORT |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
546 #endif |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
547 |
| 4796 | 548 #ifdef LISP_FLOAT_TYPE |
| 549 #define FLOAT_SUPPORT ${lispdir}float-sup.elc | |
| 550 #else | |
| 551 #define FLOAT_SUPPORT | |
| 552 #endif | |
| 553 | |
| 554 #ifdef MULTI_FRAME | |
|
11106
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
555 #define FRAME_SUPPORT ${lispdir}frame.elc |
| 4796 | 556 #else |
| 557 #define FRAME_SUPPORT | |
| 558 #endif | |
| 559 | |
|
11106
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
560 #ifdef HAVE_MOUSE |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
561 #define MOUSE_SUPPORT ${lispdir}menu-bar.elc ${lispdir}mouse.elc \ |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
562 ${lispdir}select.elc ${lispdir}scroll-bar.elc |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
563 #else |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
564 #define MOUSE_SUPPORT |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
565 #endif |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
566 |
|
6398
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
567 #ifdef HAVE_X_WINDOWS |
|
6405
190ecc6ee636
(X_WINDOWS_SUPPORT): Don't include term/x-win.
Roland McGrath <roland@gnu.org>
parents:
6404
diff
changeset
|
568 #define X_WINDOWS_SUPPORT |
|
6398
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
569 #else |
|
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
570 #define X_WINDOWS_SUPPORT |
|
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
571 #endif |
|
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
572 |
| 4796 | 573 #ifdef VMS |
|
11776
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
574 #define VMS_SUPPORT ${lispdir}vmsproc.elc ${lispdir}vms-patch.elc |
| 4796 | 575 #else |
| 576 #define VMS_SUPPORT | |
| 577 #endif | |
| 578 | |
|
7654
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
579 #ifdef MSDOS |
|
11106
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
580 #define MSDOS_SUPPORT ${lispdir}ls-lisp.elc ${lispdir}disp-tab.elc ${lispdir}dos-fns.elc |
|
7654
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
581 #else |
|
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
582 #define MSDOS_SUPPORT |
|
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
583 #endif |
|
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
584 |
|
11106
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
585 #ifdef WINDOWSNT |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
586 #define WINNT_SUPPORT ${lispdir}ls-lisp.elc ${lispdir}winnt.elc |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
587 #else |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
588 #define WINNT_SUPPORT |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
589 #endif |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
590 |
| 4796 | 591 /* List of Lisp files loaded into the dumped Emacs. It's arranged |
| 592 like this because it's easier to generate it semi-mechanically from | |
| 593 loadup.el this way. | |
| 594 | |
| 595 Note that this list should not include lisp files which might not | |
| 596 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
|
597 expects them all to be either present or buildable. */ |
| 4796 | 598 lisp= \ |
| 599 ${lispdir}abbrev.elc \ | |
| 600 ${lispdir}buff-menu.elc \ | |
| 601 ${lispdir}byte-run.elc \ | |
| 602 ${lispdir}c-mode.elc \ | |
| 603 ${lispdir}files.elc \ | |
| 604 ${lispdir}fill.elc \ | |
|
11106
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
605 ${lispdir}format.elc \ |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
606 FACE_SUPPORT \ |
|
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
607 MOUSE_SUPPORT \ |
| 4796 | 608 FLOAT_SUPPORT \ |
| 609 FRAME_SUPPORT \ | |
|
6398
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
610 X_WINDOWS_SUPPORT \ |
| 4796 | 611 ${lispdir}help.elc \ |
| 612 ${lispdir}indent.elc \ | |
| 613 ${lispdir}isearch.elc \ | |
| 614 ${lispdir}lisp-mode.elc \ | |
| 615 ${lispdir}lisp.elc \ | |
| 616 ${lispdir}loaddefs.el \ | |
| 617 ${lispdir}map-ynp.elc \ | |
| 618 ${lispdir}page.elc \ | |
| 619 ${lispdir}paragraphs.elc \ | |
| 620 ${lispdir}paths.el \ | |
| 621 ${lispdir}register.elc \ | |
| 622 ${lispdir}replace.elc \ | |
| 623 ${lispdir}simple.elc \ | |
| 624 ${lispdir}startup.elc \ | |
| 625 ${lispdir}subr.elc \ | |
| 626 ${lispdir}text-mode.elc \ | |
| 627 ${lispdir}vc-hooks.elc \ | |
| 628 VMS_SUPPORT \ | |
|
7654
926bfbeb7846
(${etc}DOC): Ignore error from rm.
Richard M. Stallman <rms@gnu.org>
parents:
7586
diff
changeset
|
629 MSDOS_SUPPORT \ |
|
11106
30ec7c9dcdb9
(FRAME_SUPPORT, MSDOS_SUPPORT): Don't list face and mouse related files here.
Karl Heuer <kwzh@gnu.org>
parents:
10684
diff
changeset
|
630 WINNT_SUPPORT \ |
|
6398
f0575c116207
(X_WINDOWS_SUPPORT): New macro.
Roland McGrath <roland@gnu.org>
parents:
5921
diff
changeset
|
631 ${lispdir}window.elc \ |
|
6404
639d046c8b28
(lisp): Include version.el, not version.elc.
Roland McGrath <roland@gnu.org>
parents:
6403
diff
changeset
|
632 ${lispdir}version.el |
| 4796 | 633 |
|
11776
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
634 /* Lisp files that may or may not be used. |
|
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
635 We must unconditionally put them in the DOC file. */ |
|
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
636 SOME_MACHINE_LISP = ${lispdir}faces.elc ${lispdir}facemenu.elc \ |
|
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
637 ${lispdir}float-sup.elc ${lispdir}frame.elc \ |
|
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
638 ${lispdir}menu-bar.elc ${lispdir}mouse.elc \ |
|
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
639 ${lispdir}select.elc ${lispdir}scroll-bar.elc \ |
|
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
640 ${lispdir}vmsproc.elc ${lispdir}vms-patch.elc \ |
|
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
641 ${lispdir}ls-lisp.elc ${lispdir}dos-fns.elc \ |
|
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
642 ${lispdir}winnt.elc |
|
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
643 |
| 4796 | 644 /* Construct full set of libraries to be linked. |
| 645 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
|
646 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
|
647 with GCC, we might need gnulib again after them. */ |
| 4796 | 648 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
|
649 LIBS_DEBUG $(GNULIB_VAR) LIB_MATH LIB_STANDARD $(GNULIB_VAR) |
| 4796 | 650 |
| 651 /* Enable recompilation of certain other files depending on system type. */ | |
| 652 | |
| 653 #ifndef OTHER_FILES | |
| 654 #define OTHER_FILES | |
| 655 #endif | |
| 656 | |
| 657 /* Enable inclusion of object files in temacs depending on system type. */ | |
| 658 #ifndef OBJECTS_SYSTEM | |
| 659 #define OBJECTS_SYSTEM | |
| 660 #endif | |
| 661 | |
| 662 #ifndef OBJECTS_MACHINE | |
| 663 #define OBJECTS_MACHINE | |
| 664 #endif | |
| 665 | |
| 666 all: emacs OTHER_FILES | |
| 667 | |
| 668 emacs: temacs ${etc}DOC ${lisp} | |
| 669 #ifdef CANNOT_DUMP | |
|
6430
bfc8a1891b78
(emacs): rm emacs before the ln.
Richard M. Stallman <rms@gnu.org>
parents:
6405
diff
changeset
|
670 rm -f emacs |
| 4796 | 671 ln temacs emacs |
| 672 #else | |
| 673 #ifdef HAVE_SHM | |
| 674 ./temacs -nl -batch -l loadup dump | |
| 675 #else /* ! defined (HAVE_SHM) */ | |
| 676 ./temacs -batch -l loadup dump | |
| 677 #endif /* ! defined (HAVE_SHM) */ | |
| 678 #endif /* ! defined (CANNOT_DUMP) */ | |
| 679 | |
|
10078
42b9a0dbdb63
Fix erroneous comment syntax.
Richard M. Stallman <rms@gnu.org>
parents:
9979
diff
changeset
|
680 /* We run make-docfile twice because the command line may get too long |
|
42b9a0dbdb63
Fix erroneous comment syntax.
Richard M. Stallman <rms@gnu.org>
parents:
9979
diff
changeset
|
681 on some systems. */ |
|
11689
fa8b13d1a665
(${etc}DOC): Put SOME_MACHINE_OBJECTS before obj.
Richard M. Stallman <rms@gnu.org>
parents:
11541
diff
changeset
|
682 /* ${SOME_MACHINE_OBJECTS} comes before ${obj} because some files may |
|
fa8b13d1a665
(${etc}DOC): Put SOME_MACHINE_OBJECTS before obj.
Richard M. Stallman <rms@gnu.org>
parents:
11541
diff
changeset
|
683 or may not be included in ${obj}, but they are always included in |
|
fa8b13d1a665
(${etc}DOC): Put SOME_MACHINE_OBJECTS before obj.
Richard M. Stallman <rms@gnu.org>
parents:
11541
diff
changeset
|
684 ${SOME_MACHINE_OBJECTS}. Since a file is processed when it is mentioned |
|
fa8b13d1a665
(${etc}DOC): Put SOME_MACHINE_OBJECTS before obj.
Richard M. Stallman <rms@gnu.org>
parents:
11541
diff
changeset
|
685 for the first time, this prevents any variation between configurations |
|
11776
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
686 in the contents of the DOC file. |
|
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
687 Likewise for ${SOME_MACHINE_LISP}. */ |
|
5402
a9b528e5abe6
(${etc}DOC): Don't depend on SOME_MACHINE_OBJECTS.
Richard M. Stallman <rms@gnu.org>
parents:
5401
diff
changeset
|
688 ${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
|
689 -rm -f ${etc}DOC |
|
11689
fa8b13d1a665
(${etc}DOC): Put SOME_MACHINE_OBJECTS before obj.
Richard M. Stallman <rms@gnu.org>
parents:
11541
diff
changeset
|
690 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC |
|
11776
4327a076f8b3
(VMS_SUPPORT): Add missing `.elc'.
Richard M. Stallman <rms@gnu.org>
parents:
11689
diff
changeset
|
691 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${lisp} |
| 4796 | 692 |
| 693 ${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
|
694 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile |
| 4796 | 695 |
| 696 /* Some systems define this to cause parallel Make-ing. */ | |
| 697 #ifndef MAKE_PARALLEL | |
| 698 #define MAKE_PARALLEL | |
| 699 #endif | |
| 700 | |
| 701 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
|
702 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${ALL_LDFLAGS}) \ |
| 4796 | 703 -o temacs ${STARTFILES} ${obj} ${otherobj} \ |
| 704 OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES} | |
| 705 | |
| 706 prefix-args: prefix-args.c $(config_h) | |
| 707 $(CC) $(ALL_CFLAGS) ${srcdir}/prefix-args.c -o prefix-args | |
| 708 | |
| 709 /* These are needed for C compilation, on the systems that need them */ | |
| 710 #ifdef NEED_CPP | |
| 711 CPP = ./localcpp | |
| 712 localcpp: | |
| 713 cd ${cppdir}; ${MAKE} ${MFLAGS} EMACS=-DEMACS | |
| 714 ln ${cppdir}cpp localcpp /* Name where ALL_CFLAGS will refer to it */ | |
| 715 /* cc appears to be cretinous and require all of these to exist | |
| 716 if -B is specified -- we can't use one local pass and let the | |
| 717 others be the standard ones. What a loser. | |
| 718 We can't even use ln, since they are probably | |
| 719 on different disks. */ | |
| 720 cp /lib/ccom localccom | |
| 721 -cp /lib/optim localoptim | |
| 722 -cp /lib/c2 localc2 | |
| 723 cp /bin/as localas | |
| 724 #else /* ! defined (NEED_CPP) */ | |
| 725 CPP = $(CC) -E | |
| 726 #endif /* ! defined (NEED_CPP) */ | |
| 727 | |
| 728 #ifdef SHORTNAMES | |
| 729 shortnames: | |
| 730 cd ${shortnamesdir}; ${MAKE} ${MFLAGS} | |
| 731 #endif | |
| 732 | |
| 733 /* Don't lose if this was not defined. */ | |
| 734 #ifndef OLDXMENU_OPTIONS | |
| 735 #define OLDXMENU_OPTIONS | |
| 736 #endif | |
| 737 | |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
738 /* Don't lose if this was not defined. */ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
739 #ifndef LWLIB_OPTIONS |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
740 #define LWLIB_OPTIONS |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
741 #endif |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
742 |
| 4796 | 743 #ifdef HAVE_X_WINDOWS |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
744 #ifdef HAVE_X11 |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
745 #ifdef USE_X_TOOLKIT |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
746 $(OLDXMENU): really-lwlib |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
747 |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
748 /* Encode the values of these two macros in Make variables, |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
749 so we can use $(...) to substitute their values within "...". */ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
750 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
751 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
752 C_SWITCH_SITE_1 = C_SWITCH_SITE |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
753 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
754 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
755 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
756 really-lwlib: |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
757 cd ${lwlibdir}; ${MAKE} ${MFLAGS} LWLIB_OPTIONS \ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
758 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
759 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
760 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
761 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
762 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
763 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
764 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)" |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
765 @true /* make -t should not create really-lwlib. */ |
|
11460
bf76e6e6a48c
(really-lwlib, really-oldXMenu): Mark as .PHONY.
Richard M. Stallman <rms@gnu.org>
parents:
11347
diff
changeset
|
766 .PHONY: really-lwlib |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
767 #else /* not USE_X_TOOLKIT */ |
| 4796 | 768 #ifdef HAVE_X_MENU |
| 769 $(OLDXMENU): really-oldXMenu | |
| 770 | |
| 771 /* Encode the values of these two macros in Make variables, | |
| 772 so we can use $(...) to substitute their values within "...". */ | |
| 773 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE | |
| 774 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM | |
| 775 C_SWITCH_SITE_1 = C_SWITCH_SITE | |
| 776 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE | |
| 777 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE | |
| 778 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM | |
| 779 really-oldXMenu: | |
| 780 cd ${oldXMenudir}; ${MAKE} ${MFLAGS} OLDXMENU_OPTIONS \ | |
| 781 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \ | |
| 782 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \ | |
| 783 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \ | |
| 784 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \ | |
| 785 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \ | |
| 786 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \ | |
| 787 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)" | |
| 788 @true /* make -t should not create really-oldXMenu. */ | |
|
11460
bf76e6e6a48c
(really-lwlib, really-oldXMenu): Mark as .PHONY.
Richard M. Stallman <rms@gnu.org>
parents:
11347
diff
changeset
|
789 .PHONY: really-oldXMenu |
|
5670
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
790 #endif /* HAVE_X_MENU */ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
791 #endif /* not USE_X_TOOLKIT */ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
792 #endif /* HAVE_X11 */ |
|
1c506424bb84
(widgetobj): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5575
diff
changeset
|
793 #endif /* HAVE_X_WINDOWS */ |
| 4796 | 794 |
| 795 paths.h: paths.h.in | |
| 796 @echo "The file paths.h needs to be set up from paths.h.in." | |
| 797 @echo "Consult the file \`INSTALL' for instructions for building Emacs." | |
| 798 exit 1 | |
| 799 | |
| 800 config.h: config.h.in | |
| 801 @echo "The file config.h needs to be set up from config.h.in." | |
| 802 @echo "Consult the file \`INSTALL' for instructions for building Emacs." | |
| 803 exit 1 | |
| 804 | |
| 805 /* Some machines have alloca built-in. | |
| 806 They should define HAVE_ALLOCA, or may just let alloca.s | |
| 807 be used but generate no code. | |
| 808 Some have it written in assembler in alloca.s. | |
| 809 Some use the C version in alloca.c (these define C_ALLOCA in config.h). | |
| 810 */ | |
| 811 | |
| 812 #ifdef C_ALLOCA | |
| 813 /* We could put something in alloca.c to #define free and malloc | |
| 814 whenever emacs was #defined, but that's not appropriate for all | |
| 815 users of alloca in Emacs. Check out ../lib-src/getopt.c. */ | |
| 816 alloca.o : alloca.c | |
| 817 $(CC) -c $(CPPFLAGS) -Dfree=xfree -Dmalloc=xmalloc \ | |
| 818 $(ALL_CFLAGS) ${srcdir}/alloca.c | |
| 819 #else | |
| 820 #ifndef HAVE_ALLOCA | |
|
7045
6ea4737a3db7
(alloca.o): Use config_h.
Richard M. Stallman <rms@gnu.org>
parents:
6999
diff
changeset
|
821 alloca.o : alloca.s $(config_h) |
| 4796 | 822 /* $(CPP) is cc -E, which may get confused by filenames |
| 823 that do not end in .c. So copy file to a safe name. */ | |
|
8176
b097a610ac04
(alloca.o): Delete allocatem.c first thing.
Richard M. Stallman <rms@gnu.org>
parents:
7953
diff
changeset
|
824 -rm -f allocatem.c |
| 4796 | 825 cp ${srcdir}/alloca.s allocatem.c |
| 826 /* Remove any ^L, blank lines, and preprocessor comments, | |
| 827 since some assemblers barf on them. Use a different basename for the | |
| 828 output file, since some stupid compilers (Green Hill's) use that | |
| 829 name for the intermediate assembler file. */ | |
| 830 $(CPP) $(CPPFLAGS) $(ALL_CFLAGS) allocatem.c | \ | |
| 831 sed -e 's///' -e 's/^#.*//' | \ | |
| 832 sed -n -e '/^..*$$/p' > allocax.s | |
| 833 -rm -f alloca.o | |
| 834 /* Xenix, in particular, needs to run assembler via cc. */ | |
| 835 $(CC) -c allocax.s | |
| 836 mv allocax.o alloca.o | |
|
8429
f4138f5dc0d3
(alloca.o): Use -f in all rm's.
Richard M. Stallman <rms@gnu.org>
parents:
8327
diff
changeset
|
837 -rm -f allocax.s allocatem.c |
| 4796 | 838 #endif /* HAVE_ALLOCA */ |
| 839 #endif /* ! defined (C_ALLOCA) */ | |
| 840 | |
| 841 /* Nearly all the following files depend on lisp.h, | |
| 842 but it is not included as a dependency because | |
| 843 it is so often changed in ways that do not require any recompilation | |
| 844 and so rarely changed in ways that do require any. */ | |
| 845 | |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
846 abbrev.o: abbrev.c buffer.h commands.h $(config_h) |
|
9402
87337d65aa17
* Makefile.in.in (obj) Add region-cache.o to the list of files.
Jim Blandy <jimb@redhat.com>
parents:
9254
diff
changeset
|
847 buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \ |
| 4796 | 848 INTERVAL_SRC blockinput.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
849 callint.o: callint.c window.h commands.h buffer.h mocklisp.h \ |
| 4796 | 850 keyboard.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
851 callproc.o: callproc.c paths.h buffer.h commands.h $(config_h) \ |
|
5349
efcc2af40221
(callproc.o): Depend on systty.h and syssignal.h.
Richard M. Stallman <rms@gnu.org>
parents:
5234
diff
changeset
|
852 process.h systty.h syssignal.h |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
853 casefiddle.o: casefiddle.c syntax.h commands.h buffer.h $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
854 casetab.o: casetab.c buffer.h $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
855 cm.o: cm.c cm.h termhooks.h $(config_h) |
|
8787
87b54930a42a
(xmenu.o): Depend on puresize.h.
Richard M. Stallman <rms@gnu.org>
parents:
8637
diff
changeset
|
856 cmds.o: cmds.c syntax.h buffer.h commands.h window.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
857 pre-crt0.o: pre-crt0.c |
|
10585
eb798bab393d
(ecrt0.o): Target renamed from crt0.o.
Richard M. Stallman <rms@gnu.org>
parents:
10508
diff
changeset
|
858 ecrt0.o: ecrt0.c $(config_h) |
|
eb798bab393d
(ecrt0.o): Target renamed from crt0.o.
Richard M. Stallman <rms@gnu.org>
parents:
10508
diff
changeset
|
859 CRT0_COMPILE ${srcdir}/ecrt0.c |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
860 dired.o: dired.c commands.h buffer.h $(config_h) regex.h |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
861 dispnew.o: dispnew.c commands.h frame.h window.h buffer.h dispextern.h \ |
|
11534
9cd01f363d4b
Make dispnew.o and keyboard.o depend on xterm.h.
Karl Heuer <kwzh@gnu.org>
parents:
11460
diff
changeset
|
862 termchar.h termopts.h termhooks.h cm.h disptab.h systty.h systime.h \ |
|
9cd01f363d4b
Make dispnew.o and keyboard.o depend on xterm.h.
Karl Heuer <kwzh@gnu.org>
parents:
11460
diff
changeset
|
863 xterm.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
864 doc.o: doc.c $(config_h) paths.h buffer.h keyboard.h |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
865 doprnt.o: doprnt.c $(config_h) |
| 9572 | 866 dosfns.o: buffer.h termchar.h termhooks.h frame.h msdos.h dosfns.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
867 editfns.o: editfns.c window.h buffer.h systime.h INTERVAL_SRC $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
868 emacs.o: emacs.c commands.h systty.h syssignal.h process.h INTERVAL_SRC $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
869 fileio.o: fileio.c window.h buffer.h systime.h INTERVAL_SRC $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
870 filelock.o: filelock.c buffer.h paths.h $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
871 filemode.o: filemode.c $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
872 getloadavg.o: getloadavg.c $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
873 indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \ |
|
9402
87337d65aa17
* Makefile.in.in (obj) Add region-cache.o to the list of files.
Jim Blandy <jimb@redhat.com>
parents:
9254
diff
changeset
|
874 termopts.h disptab.h region-cache.h |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
875 insdel.o: insdel.c window.h buffer.h INTERVAL_SRC blockinput.h $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
876 keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h \ |
| 4796 | 877 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \ |
|
11534
9cd01f363d4b
Make dispnew.o and keyboard.o depend on xterm.h.
Karl Heuer <kwzh@gnu.org>
parents:
11460
diff
changeset
|
878 systty.h systime.h dispextern.h intervals.h blockinput.h xterm.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
879 keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \ |
| 4796 | 880 $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
881 lastfile.o: lastfile.c $(config_h) |
|
11343
34a2e8b9f4ba
(alloc.o, data.o, macros.o, minibuf.o, print.o, xdisp.o): Depend on keyboard.h.
Richard M. Stallman <rms@gnu.org>
parents:
11334
diff
changeset
|
882 macros.o: macros.c window.h buffer.h commands.h macros.h keyboard.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
883 malloc.o: malloc.c $(config_h) |
| 9572 | 884 msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h \ |
| 885 termopts.h frame.h window.h $(config_h) | |
|
9159
b4a9e66f9e7a
(${etc}DOC): Run make-docfile twice--two batches.
Richard M. Stallman <rms@gnu.org>
parents:
9077
diff
changeset
|
886 mktime.o: mktime.c $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
887 gmalloc.o: gmalloc.c $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
888 ralloc.o: ralloc.c $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
889 vm-limit.o: vm-limit.c mem-limits.h $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
890 marker.o: marker.c buffer.h $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
891 minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h \ |
|
11347
5c1f15a662e5
(minibuf.o, xdisp.o): Don't depend on keyboard.h.
Richard M. Stallman <rms@gnu.org>
parents:
11343
diff
changeset
|
892 buffer.h commands.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
893 mocklisp.o: mocklisp.c buffer.h $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
894 process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \ |
| 4796 | 895 commands.h syssignal.h systime.h systty.h syswait.h frame.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
896 regex.o: regex.c syntax.h buffer.h $(config_h) regex.h |
|
9402
87337d65aa17
* Makefile.in.in (obj) Add region-cache.o to the list of files.
Jim Blandy <jimb@redhat.com>
parents:
9254
diff
changeset
|
897 region-cache.o: region-cache.c buffer.h region-cache.h |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
898 frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \ |
| 4796 | 899 buffer.h $(config_h) |
|
9077
d7f2149c5ab8
(strftime.o): New target.
Richard M. Stallman <rms@gnu.org>
parents:
8787
diff
changeset
|
900 scroll.o: scroll.c termchar.h dispextern.h frame.h $(config_h) |
|
9402
87337d65aa17
* Makefile.in.in (obj) Add region-cache.o to the list of files.
Jim Blandy <jimb@redhat.com>
parents:
9254
diff
changeset
|
901 search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \ |
|
87337d65aa17
* Makefile.in.in (obj) Add region-cache.o to the list of files.
Jim Blandy <jimb@redhat.com>
parents:
9254
diff
changeset
|
902 blockinput.h $(config_h) |
|
9077
d7f2149c5ab8
(strftime.o): New target.
Richard M. Stallman <rms@gnu.org>
parents:
8787
diff
changeset
|
903 strftime.o: strftime.c $(config_h) |
|
11334
8c536ef844ee
(strftime.o): Define strftime as emacs_strftime.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
904 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -Dstrftime=emacs_strftime $< |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
905 syntax.o: syntax.c syntax.h buffer.h commands.h $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
906 sysdep.o: sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \ |
| 4796 | 907 frame.h syssignal.h systty.h systime.h syswait.h blockinput.h window.h |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
908 term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \ |
|
11541
d74f79aa17ab
Make intervals.o and term.o depend on keyboard.h.
Karl Heuer <kwzh@gnu.org>
parents:
11534
diff
changeset
|
909 disptab.h keyboard.h |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
910 termcap.o: termcap.c $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
911 terminfo.o: terminfo.c $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
912 tparam.o: tparam.c $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
913 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
|
914 /* 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
|
915 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
|
916 UNEXEC_ALIAS=UNEXEC |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
917 $(UNEXEC_ALIAS): UNEXEC_SRC $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
918 widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
919 window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \ |
| 4796 | 920 termhooks.h disptab.h keyboard.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
921 xdisp.o: xdisp.c macros.h commands.h indent.h buffer.h dispextern.h \ |
|
11347
5c1f15a662e5
(minibuf.o, xdisp.o): Don't depend on keyboard.h.
Richard M. Stallman <rms@gnu.org>
parents:
11343
diff
changeset
|
922 termchar.h frame.h window.h disptab.h termhooks.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
923 xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \ |
| 4796 | 924 window.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
925 xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h \ |
|
9559
f3c3bedd897f
(xfns.o): Depend on paths.h.
Richard M. Stallman <rms@gnu.org>
parents:
9402
diff
changeset
|
926 blockinput.h paths.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
927 xmenu.o: xmenu.c xterm.h window.h dispextern.h frame.h keyboard.h \ |
|
10508
37363b2b9412
(xmenu.o): Add msdos.h as dependency.
Richard M. Stallman <rms@gnu.org>
parents:
10078
diff
changeset
|
928 blockinput.h puresize.h msdos.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
929 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
|
930 dispextern.h frame.h disptab.h blockinput.h systime.h syssignal.h \ |
|
8637
a099de9cf359
(xterm.o): Depend on keyboard.h.
Richard M. Stallman <rms@gnu.org>
parents:
8625
diff
changeset
|
931 keyboard.h gnu.h sink.h sinkmask.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
932 xselect.o: xselect.c dispextern.h frame.h xterm.h blockinput.h $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
933 xrdb.o: xrdb.c $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
934 hftctl.o: hftctl.c $(config_h) |
| 4796 | 935 |
| 936 /* The files of Lisp proper */ | |
| 937 | |
|
11343
34a2e8b9f4ba
(alloc.o, data.o, macros.o, minibuf.o, print.o, xdisp.o): Depend on keyboard.h.
Richard M. Stallman <rms@gnu.org>
parents:
11334
diff
changeset
|
938 alloc.o: alloc.c frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \ |
|
34a2e8b9f4ba
(alloc.o, data.o, macros.o, minibuf.o, print.o, xdisp.o): Depend on keyboard.h.
Richard M. Stallman <rms@gnu.org>
parents:
11334
diff
changeset
|
939 blockinput.h $(config_h) INTERVAL_SRC |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
940 bytecode.o: bytecode.c buffer.h $(config_h) |
|
11343
34a2e8b9f4ba
(alloc.o, data.o, macros.o, minibuf.o, print.o, xdisp.o): Depend on keyboard.h.
Richard M. Stallman <rms@gnu.org>
parents:
11334
diff
changeset
|
941 data.o: data.c buffer.h puresize.h syssignal.h keyboard.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
942 eval.o: eval.c commands.h keyboard.h blockinput.h $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
943 floatfns.o: floatfns.c $(config_h) |
|
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
944 fns.o: fns.c commands.h $(config_h) frame.h buffer.h keyboard.h INTERVAL_SRC |
|
11343
34a2e8b9f4ba
(alloc.o, data.o, macros.o, minibuf.o, print.o, xdisp.o): Depend on keyboard.h.
Richard M. Stallman <rms@gnu.org>
parents:
11334
diff
changeset
|
945 print.o: print.c process.h frame.h window.h buffer.h keyboard.h $(config_h) |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
946 lread.o: lread.c commands.h keyboard.h buffer.h paths.h $(config_h) \ |
| 4796 | 947 termhooks.h |
| 948 | |
| 949 /* Text properties support */ | |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
950 textprop.o: textprop.c buffer.h intervals.h $(config_h) |
|
11541
d74f79aa17ab
Make intervals.o and term.o depend on keyboard.h.
Karl Heuer <kwzh@gnu.org>
parents:
11534
diff
changeset
|
951 intervals.o: intervals.c buffer.h intervals.h keyboard.h puresize.h $(config_h) |
| 4796 | 952 |
| 953 /* System-specific programs to be made. | |
| 954 OTHER_FILES, OBJECTS_SYSTEM and OBJECTS_MACHINE | |
| 955 select which of these should be compiled. */ | |
| 956 | |
|
7953
e5e842ead52c
(doprnt.o): Depend on config_h.
Richard M. Stallman <rms@gnu.org>
parents:
7853
diff
changeset
|
957 sunfns.o: sunfns.c buffer.h $(config_h) |
| 4796 | 958 |
| 959 ${libsrc}emacstool: ${libsrc}emacstool.c | |
| 960 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool | |
| 961 mostlyclean: | |
|
7719
393744d00ab9
(mostlyclean): Don't mention xmakefile*.
Richard M. Stallman <rms@gnu.org>
parents:
7661
diff
changeset
|
962 rm -f temacs prefix-args core \#* *.o libXMenu11.a liblw.a |
| 4796 | 963 rm -f ../etc/DOC |
| 964 clean: mostlyclean | |
| 965 rm -f emacs-* emacs | |
| 966 /**/# This is used in making a distribution. | |
| 967 /**/# Do not use it on development directories! | |
| 968 distclean: clean | |
|
5045
ef406a9b2f44
(distclean): Do delete Makefile and Makefile.in.
Richard M. Stallman <rms@gnu.org>
parents:
5035
diff
changeset
|
969 rm -f paths.h config.h Makefile Makefile.in ../etc/DOC-* |
|
10684
91798dbdac12
(maintainer-clean): Renamed from realclean.
Richard M. Stallman <rms@gnu.org>
parents:
10585
diff
changeset
|
970 maintainer-clean: distclean |
|
91798dbdac12
(maintainer-clean): Renamed from realclean.
Richard M. Stallman <rms@gnu.org>
parents:
10585
diff
changeset
|
971 @echo "This command is intended for maintainers to use;" |
|
91798dbdac12
(maintainer-clean): Renamed from realclean.
Richard M. Stallman <rms@gnu.org>
parents:
10585
diff
changeset
|
972 @echo "it deletes files that may require special tools to rebuild." |
| 4796 | 973 rm -f TAGS |
| 974 versionclean: | |
| 975 -rm -f emacs emacs-* ../etc/DOC* | |
| 976 extraclean: distclean | |
|
5035
2906af83fe85
(extraclean): Prevent wildcard from starting comment.
Richard M. Stallman <rms@gnu.org>
parents:
5030
diff
changeset
|
977 -rm -f *~ \#* m/?*~ s/?*~ |
| 4796 | 978 |
| 979 /* The rule for the [sm] files has to be written a little funny to | |
| 980 avoid looking like a C comment to CPP. */ | |
|
11835
175192b364b1
(SOURCES): Fix reference to ymakefile.
Karl Heuer <kwzh@gnu.org>
parents:
11776
diff
changeset
|
981 SOURCES = *.[ch] [sm]/?* COPYING Makefile \ |
| 4796 | 982 config.h.in README COPYING ChangeLog vms.pp-trans |
| 983 unlock: | |
| 984 chmod u+w $(SOURCES) | |
| 985 | |
| 986 relock: | |
| 987 chmod -w $(SOURCES) | |
| 988 chmod +w paths.h | |
|
6988
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
989 |
| 7137 | 990 /* Arrange to make a tags table in ../lisp, and another in this dir |
| 991 which includes ../lisp/TAGS by reference. */ | |
|
8210
a0fd123ca2a6
(ctagsfiles): Rewrite to avoid compiler bug.
Richard M. Stallman <rms@gnu.org>
parents:
8176
diff
changeset
|
992 ctagsfiles = [a-zA-Z]*.[hc] |
|
6988
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
993 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
|
994 TAGS: $(ctagsfiles) |
|
9979
8c24b6db3fa3
* Makefile.in.in (TAGS): The new etags allows tagging DEFVARs.
Francesco Potort? <pot@gnu.org>
parents:
9595
diff
changeset
|
995 ../lib-src/etags --include=../lisp/TAGS \ |
|
8c24b6db3fa3
* Makefile.in.in (TAGS): The new etags allows tagging DEFVARs.
Francesco Potort? <pot@gnu.org>
parents:
9595
diff
changeset
|
996 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' $(ctagsfiles) |
|
6988
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
997 ../lisp/TAGS: $(lisptagsfiles) |
|
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
998 cd ../lisp; $(MAKE) TAGS |
|
674dceb3bb4f
(TAGS): Split off included tags file lisp/TAGS.
Richard M. Stallman <rms@gnu.org>
parents:
6967
diff
changeset
|
999 tags: TAGS ../lisp/TAGS |
| 4796 | 1000 .PHONY: tags |
