Mercurial > hg > xemacs-beta
annotate nt/xemacs.mak @ 5927:b58b74274fa2 cygwin
changes from long ago, never committed...
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Wed, 15 Dec 2021 19:02:33 +0000 |
parents | 4d7032d36975 |
children |
rev | line source |
---|---|
795 | 1 # Makefile for Microsoft NMAKE -*- Makefile -*- |
2 # | |
428 | 3 # Copyright (C) 1995 Board of Trustees, University of Illinois. |
2951 | 4 # Copyright (C) 1995, 1996, 2000, 2001, 2002, 2003, 2004, 2005 Ben Wing. |
795 | 5 # Copyright (C) 1997, 1998, 2000 Jonathan Harris. |
428 | 6 # Copyright (C) 1995 Sun Microsystems, Inc. |
7 # Copyright (C) 1998 Free Software Foundation, Inc. | |
8 # | |
9 # This file is part of XEmacs. | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5178
diff
changeset
|
10 # |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5178
diff
changeset
|
11 # XEmacs is free software: you can redistribute it and/or modify it |
428 | 12 # under the terms of the GNU General Public License as published by the |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5178
diff
changeset
|
13 # Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5178
diff
changeset
|
14 # option) any later version. |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5178
diff
changeset
|
15 # |
428 | 16 # XEmacs is distributed in the hope that it will be useful, but WITHOUT |
17 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
18 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
19 # for more details. | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5178
diff
changeset
|
20 # |
428 | 21 # You should have received a copy of the GNU General Public License |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5178
diff
changeset
|
22 # along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
428 | 23 # |
24 # Synched up with: Not in FSF. | |
25 # | |
26 | |
442 | 27 default: all |
28 | |
444 | 29 # APA: Since there seems to be no way to determine the directory where |
30 # xemacs.mak is located (from within nmake) we just insist on the user | |
31 # to invoke nmake in the directory where xemacs.mak is. | |
32 !if !exist("$(MAKEDIR)\xemacs.mak") | |
33 !error Please run nmake from the directory of this makefile (xemacs\nt). | |
34 !endif | |
35 | |
1330 | 36 MAKEROOT=$(MAKEDIR:\nt=) |
442 | 37 |
1330 | 38 ########################### Common commands. |
428 | 39 |
1330 | 40 # Put these before including config.inc so they can be overridden there. |
637 | 41 # Note that some versions of some commands are deficient. |
428 | 42 |
2106 | 43 # Define a variable for the 'del' command to use. |
637 | 44 # WinME's DEL command can only handle one argument and only has the /P flag. |
45 # So only delete one glob at a time. Override flags in config.inc. | |
2106 | 46 DEL=-del |
637 | 47 |
1001 | 48 # Tell COPY, MOVE, and XCOPY to suppress confirmation for overwriting |
49 # files. | |
2106 | 50 COPYCMD=/y |
1001 | 51 # Define the 'copy' command to use. |
2106 | 52 COPY=xcopy /q |
53 COPYDIR=xcopy /q /e | |
583 | 54 |
1330 | 55 ########################### Includes, and source and build tree determination. |
442 | 56 |
57 !include "config.inc" | |
428 | 58 |
1330 | 59 !if defined(BUILD_DIR) |
60 SEPARATE_BUILD=1 | |
61 SRCROOT=$(MAKEROOT) | |
62 BLDROOT=$(BUILD_DIR) | |
63 !else | |
64 !if defined(SOURCE_DIR) | |
65 SEPARATE_BUILD=1 | |
66 SRCROOT=$(SOURCE_DIR) | |
67 BLDROOT=$(MAKEROOT) | |
68 !else | |
69 SEPARATE_BUILD=0 | |
70 SRCROOT=$(MAKEROOT) | |
71 BLDROOT=$(MAKEROOT) | |
72 !endif | |
73 !endif | |
74 | |
4419
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
75 !if [copy $(SRCROOT)\version.sh.in $(SRCROOT)\version.sh] |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
76 !endif |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
77 !if exist($(SRCROOT)\.hg) |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
78 !if [hg identify >> $(SRCROOT)\version.sh] |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
79 !endif |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
80 !endif |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
81 |
1330 | 82 # Program name and version |
83 !include "$(SRCROOT)\version.sh" | |
84 | |
85 ########################### Basic vars referring to directories, both in | |
86 ########################### the source and build trees. | |
87 | |
88 LISP=$(SRCROOT)\lisp | |
89 LIB_SRC=$(SRCROOT)\lib-src | |
90 NT=$(SRCROOT)\nt | |
91 SRC=$(SRCROOT)\src | |
92 ETC=$(SRCROOT)\etc | |
1346 | 93 INFO=$(SRCROOT)\info |
1330 | 94 |
95 BLDLIB_SRC=$(BLDROOT)\lib-src | |
96 BLDNT=$(BLDROOT)\nt | |
97 OUTDIR=$(BLDNT)\obj | |
98 BLDSRC=$(BLDROOT)\src | |
99 | |
100 # This appears in the dependency file | |
101 LWLIB_SRCDIR=$(SRCROOT)\lwlib | |
102 | |
2951 | 103 ########################### Figure out current version of VC++. |
104 | |
3054 | 105 !if [if not exist $(OUTDIR) mkdir "$(OUTDIR)"] |
106 !endif | |
2951 | 107 !if [echo MSC_VER=_MSC_VER > $(OUTDIR)\vcversion.c] |
108 !endif | |
109 !if [cl /nologo /EP $(OUTDIR)\vcversion.c > $(OUTDIR)\vcversion.tmp] | |
110 !endif | |
111 !include "$(OUTDIR)\vcversion.tmp" | |
112 | |
1330 | 113 ########################### Process the config.inc options. |
114 | |
428 | 115 !if !defined(INFODOCK) |
116 INFODOCK=0 | |
117 !endif | |
771 | 118 !if !defined(MULE) |
119 MULE=0 | |
428 | 120 !endif |
442 | 121 !if !defined(HAVE_MS_WINDOWS) |
122 HAVE_MS_WINDOWS=1 | |
428 | 123 !endif |
124 !if !defined(HAVE_XPM) | |
125 HAVE_XPM=0 | |
126 !endif | |
127 !if !defined(HAVE_PNG) | |
128 HAVE_PNG=0 | |
129 !endif | |
632 | 130 !if !defined(HAVE_ZLIB) |
131 HAVE_ZLIB=$(HAVE_PNG) | |
132 !endif | |
428 | 133 !if !defined(HAVE_TIFF) |
134 HAVE_TIFF=0 | |
135 !endif | |
136 !if !defined(HAVE_JPEG) | |
137 HAVE_JPEG=0 | |
138 !endif | |
139 !if !defined(HAVE_XFACE) | |
140 HAVE_XFACE=0 | |
141 !endif | |
142 !if !defined(HAVE_GIF) | |
4708
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4603
diff
changeset
|
143 HAVE_GIF=0 |
428 | 144 !endif |
488 | 145 !if !defined(HAVE_GTK) |
146 HAVE_GTK=0 | |
147 !endif | |
827 | 148 !if !defined(HAVE_MENUBARS) |
149 HAVE_MENUBARS=1 | |
150 !endif | |
151 !if !defined(HAVE_SCROLLBARS) | |
152 HAVE_SCROLLBARS=1 | |
153 !endif | |
428 | 154 !if !defined(HAVE_TOOLBARS) |
155 HAVE_TOOLBARS=$(HAVE_XPM) | |
156 !endif | |
157 !if !defined(HAVE_DIALOGS) | |
158 HAVE_DIALOGS=1 | |
159 !endif | |
160 !if !defined(HAVE_NATIVE_SOUND) | |
161 HAVE_NATIVE_SOUND=1 | |
162 !endif | |
163 !if !defined(HAVE_WIDGETS) | |
164 HAVE_WIDGETS=1 | |
165 !endif | |
2951 | 166 !if !defined(HAVE_DATABASE) |
167 HAVE_DATABASE=0 | |
168 !endif | |
169 !if !defined(BUILD_DATABASE_SHARED) | |
170 BUILD_DATABASE_SHARED=0 | |
171 !endif | |
172 !if !defined(HAVE_POSTGRESQL) | |
173 HAVE_POSTGRESQL=0 | |
174 !endif | |
175 !if !defined(HAVE_LDAP) | |
176 HAVE_LDAP=0 | |
177 !endif | |
178 !if !defined(HAVE_BIGNUM) | |
179 HAVE_BIGNUM=0 | |
180 !endif | |
3034 | 181 !if !defined(BUILD_BIGNUM_MINGW_SHARED) |
182 BUILD_BIGNUM_MINGW_SHARED=0 | |
183 !endif | |
184 !if !defined(BUILD_BIGNUM_NATIVE_SHARED) | |
185 BUILD_BIGNUM_NATIVE_SHARED=0 | |
186 !endif | |
872 | 187 !if !defined(OPTIMIZED_BUILD) |
188 OPTIMIZED_BUILD=1 | |
189 !endif | |
190 !if !defined(USE_FASTCALL) | |
191 # #### Change to 1 when I check in the ws with support for fastcall | |
192 USE_FASTCALL=0 | |
193 !endif | |
194 !if !defined(PROFILE_SUPPORT) | |
195 PROFILE_SUPPORT=0 | |
196 !endif | |
428 | 197 !if !defined(DEBUG_XEMACS) |
198 DEBUG_XEMACS=0 | |
199 !endif | |
1333 | 200 !if !defined(SUPPORT_EDIT_AND_CONTINUE) |
201 SUPPORT_EDIT_AND_CONTINUE=0 | |
834 | 202 !endif |
4405
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
203 !if !defined(BUILD_FOR_SETUP_KIT) |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
204 BUILD_FOR_SETUP_KIT=0 |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
205 !endif |
1203 | 206 |
4405
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
207 !if !$(BUILD_FOR_SETUP_KIT) |
3741 | 208 OK_TO_USE_MSVCRTD=1 |
209 !else | |
210 OK_TO_USE_MSVCRTD=0 | |
211 !endif | |
212 | |
800 | 213 !if !defined(ERROR_CHECK_ALL) |
1203 | 214 !if "$(emacs_is_beta)" != "" |
800 | 215 ERROR_CHECK_ALL=1 |
1203 | 216 !else |
217 ERROR_CHECK_ALL=0 | |
218 !endif | |
219 !endif | |
220 | |
221 !if !defined(CPLUSPLUS_COMPILE) | |
222 !if $(ERROR_CHECK_ALL) | |
223 CPLUSPLUS_COMPILE=1 | |
224 !else | |
225 CPLUSPLUS_COMPILE=0 | |
226 !endif | |
227 !endif | |
228 | |
229 !if !defined(USE_KKCC) | |
230 USE_KKCC=0 | |
231 !endif | |
3092 | 232 !if !defined(NEW_GC) |
233 NEW_GC=0 | |
234 !endif | |
1203 | 235 !if !defined(USE_UNION_TYPE) |
236 USE_UNION_TYPE=0 | |
800 | 237 !endif |
442 | 238 !if !defined(QUICK_BUILD) |
239 QUICK_BUILD=0 | |
240 !endif | |
872 | 241 !if !defined(VERBOSECC) |
242 VERBOSECC=0 | |
243 !endif | |
244 !if !defined(DEPEND) | |
245 DEPEND=0 | |
246 !endif | |
247 !if !defined(USE_PORTABLE_DUMPER) | |
248 USE_PORTABLE_DUMPER=1 | |
249 !endif | |
438 | 250 !if !defined(USE_MINITAR) |
632 | 251 USE_MINITAR=$(HAVE_ZLIB) |
438 | 252 !endif |
428 | 253 |
440 | 254 # A little bit of adhockery. Default to use system malloc and |
255 # DLL version of the C runtime library when using portable | |
256 # dumping. These are the optimal settings. | |
2500 | 257 # |
258 # NOTE: The various graphics libraries are generally compiled to use | |
259 # MSVCRT.DLL (the same that we use in USE_CRTDLL, more or less), so using | |
260 # this is a good thing. | |
261 | |
440 | 262 !if !defined(USE_SYSTEM_MALLOC) |
263 USE_SYSTEM_MALLOC=$(USE_PORTABLE_DUMPER) | |
264 !endif | |
265 !if !defined(USE_CRTDLL) | |
266 USE_CRTDLL=$(USE_PORTABLE_DUMPER) | |
267 !endif | |
268 | |
1330 | 269 ########################### Check for incompatible options. |
428 | 270 |
271 CONFIG_ERROR=0 | |
272 !if $(INFODOCK) && !exist("..\..\Infodock.rules") | |
273 !message Cannot build InfoDock without InfoDock sources | |
274 CONFIG_ERROR=1 | |
275 !endif | |
440 | 276 !if !$(USE_PORTABLE_DUMPER) && $(USE_SYSTEM_MALLOC) |
277 !message Cannot use system allocator when dumping old way, use portable dumper. | |
278 CONFIG_ERROR=1 | |
279 !endif | |
280 !if !$(USE_PORTABLE_DUMPER) && $(USE_CRTDLL) | |
281 !message Cannot use C runtime DLL when dumping old way, use portable dumper. | |
282 CONFIG_ERROR=1 | |
283 !endif | |
284 !if !$(USE_SYSTEM_MALLOC) && $(USE_CRTDLL) | |
285 !message GNU malloc currently cannot be used with CRT DLL. | |
286 !message [[[Developer note: If you want to fix it, read Q112297 first]]] #### | |
287 CONFIG_ERROR=1 | |
288 !endif | |
1330 | 289 !if !$(HAVE_MS_WINDOWS) && !$(HAVE_GTK) |
290 !message Please specify at least one HAVE_MS_WINDOWS=1 and/or HAVE_GTK=1 | |
428 | 291 CONFIG_ERROR=1 |
292 !endif | |
488 | 293 !if $(HAVE_MS_WINDOWS) && $(HAVE_GTK) && !defined(GTK_DIR) |
294 !message Please specify root directory for your GTK installation: GTK_DIR=path | |
295 CONFIG_ERROR=1 | |
296 !endif | |
2951 | 297 |
442 | 298 !if $(HAVE_MS_WINDOWS) && $(HAVE_XPM) && !defined(XPM_DIR) |
428 | 299 !message Please specify root directory for your XPM installation: XPM_DIR=path |
300 CONFIG_ERROR=1 | |
301 !endif | |
442 | 302 !if $(HAVE_MS_WINDOWS) && $(HAVE_XPM) && defined(XPM_DIR) && !exist("$(XPM_DIR)\lib\Xpm.lib") |
428 | 303 !message Specified XPM directory does not contain "$(XPM_DIR)\lib\Xpm.lib" |
304 CONFIG_ERROR=1 | |
305 !endif | |
2951 | 306 |
442 | 307 !if $(HAVE_MS_WINDOWS) && $(HAVE_PNG) && !defined(PNG_DIR) |
428 | 308 !message Please specify root directory for your PNG installation: PNG_DIR=path |
309 CONFIG_ERROR=1 | |
310 !endif | |
442 | 311 !if $(HAVE_MS_WINDOWS) && $(HAVE_PNG) && defined(PNG_DIR) && !exist("$(PNG_DIR)\libpng.lib") |
428 | 312 !message Specified PNG directory does not contain "$(PNG_DIR)\libpng.lib" |
313 CONFIG_ERROR=1 | |
314 !endif | |
2951 | 315 |
442 | 316 !if $(HAVE_MS_WINDOWS) && $(HAVE_PNG) && !defined(ZLIB_DIR) |
428 | 317 !message Please specify root directory for your ZLIB installation: ZLIB_DIR=path |
318 CONFIG_ERROR=1 | |
319 !endif | |
442 | 320 !if $(HAVE_MS_WINDOWS) && $(HAVE_PNG) && defined(ZLIB_DIR) && !exist("$(ZLIB_DIR)\zlib.lib") |
428 | 321 !message Specified ZLIB directory does not contain "$(ZLIB_DIR)\zlib.lib" |
322 CONFIG_ERROR=1 | |
323 !endif | |
2951 | 324 |
442 | 325 !if $(HAVE_MS_WINDOWS) && $(HAVE_TIFF) && !defined(TIFF_DIR) |
428 | 326 !message Please specify root directory for your TIFF installation: TIFF_DIR=path |
327 CONFIG_ERROR=1 | |
328 !endif | |
442 | 329 !if $(HAVE_MS_WINDOWS) && $(HAVE_TIFF) && !exist("$(TIFF_DIR)\libtiff\libtiff.lib") |
428 | 330 !message Specified TIFF directory does not contain "$(TIFF_DIR)\libtiff\libtiff.lib" |
331 CONFIG_ERROR=1 | |
332 !endif | |
2951 | 333 |
442 | 334 !if $(HAVE_MS_WINDOWS) && $(HAVE_JPEG) && !defined(JPEG_DIR) |
428 | 335 !message Please specify root directory for your JPEG installation: JPEG_DIR=path |
336 CONFIG_ERROR=1 | |
337 !endif | |
442 | 338 !if $(HAVE_MS_WINDOWS) && $(HAVE_JPEG) && !exist("$(JPEG_DIR)\libjpeg.lib") |
428 | 339 !message Specified JPEG directory does not contain "$(JPEG_DIR)\libjpeg.lib" |
340 CONFIG_ERROR=1 | |
341 !endif | |
2951 | 342 |
442 | 343 !if $(HAVE_MS_WINDOWS) && $(HAVE_XFACE) && !defined(COMPFACE_DIR) |
428 | 344 !message Please specify root directory for your COMPFACE installation: COMPFACE_DIR=path |
345 CONFIG_ERROR=1 | |
346 !endif | |
442 | 347 !if $(HAVE_MS_WINDOWS) && $(HAVE_XFACE) && !exist("$(COMPFACE_DIR)\libcompface.lib") |
428 | 348 !message Specified COMPFACE directory does not contain "$(COMPFACE_DIR)\libcompface.lib" |
349 CONFIG_ERROR=1 | |
350 !endif | |
2951 | 351 |
442 | 352 !if $(HAVE_MS_WINDOWS) && $(HAVE_TOOLBARS) && !$(HAVE_XPM) |
428 | 353 !message Toolbars require XPM support |
354 CONFIG_ERROR=1 | |
355 !endif | |
2951 | 356 |
357 !if $(HAVE_MS_WINDOWS) && $(HAVE_BIGNUM) && !defined(BIGNUM_DIR) | |
358 !message Please specify root directory for your BIGNUM installation: BIGNUM_DIR=path | |
359 CONFIG_ERROR=1 | |
360 !endif | |
361 !if $(HAVE_MS_WINDOWS) && $(HAVE_BIGNUM) && defined(BIGNUM_DIR) | |
362 !if $(BUILD_BIGNUM_MINGW_SHARED) | |
363 !if !exist("$(BIGNUM_DIR)\libgmp-3.lib") | |
364 !message Specified BIGNUM directory does not contain "$(BIGNUM_DIR)\libgmp-3.lib" | |
365 CONFIG_ERROR=1 | |
366 !endif | |
367 !else | |
368 !if $(BUILD_BIGNUM_NATIVE_SHARED) | |
369 !if !exist("$(BIGNUM_DIR)\gmp-dynamic\gmp.lib") | |
370 !message Specified BIGNUM directory does not contain "$(BIGNUM_DIR)\gmp-dynamic\gmp.lib" | |
371 CONFIG_ERROR=1 | |
372 !endif | |
373 !else | |
374 !if !exist("$(BIGNUM_DIR)\gmp-static\gmp.lib") | |
375 !message Specified BIGNUM directory does not contain "$(BIGNUM_DIR)\gmp-static\gmp.lib" | |
376 CONFIG_ERROR=1 | |
377 !endif | |
378 !endif | |
379 !endif | |
380 !endif | |
381 | |
382 !if $(HAVE_MS_WINDOWS) && $(HAVE_DATABASE) && !defined(DATABASE_DIR) | |
383 !message Please specify root directory for your DATABASE installation: DATABASE_DIR=path | |
384 CONFIG_ERROR=1 | |
385 !endif | |
386 !if $(HAVE_MS_WINDOWS) && $(HAVE_DATABASE) && defined(DATABASE_DIR) | |
387 !if $(BUILD_DATABASE_SHARED) | |
388 !if !exist("$(DATABASE_DIR)\build_win32\Release\libdb43.lib") | |
389 !message Specified DATABASE directory does not contain "$(DATABASE_DIR)\build_win32\Release\libdb43.lib" | |
390 CONFIG_ERROR=1 | |
391 !endif | |
392 !else | |
393 !if !exist("$(DATABASE_DIR)\build_win32\Release_static\libdb43s.lib") | |
394 !message Specified DATABASE directory does not contain "$(DATABASE_DIR)\build_win32\Release_static\libdb43s.lib" | |
395 CONFIG_ERROR=1 | |
396 !endif | |
397 !endif | |
398 !endif | |
399 | |
400 !if $(HAVE_MS_WINDOWS) && $(HAVE_POSTGRESQL) && !defined(POSTGRESQL_DIR) | |
401 !message Please specify root directory for your POSTGRESQL installation: POSTGRESQL_DIR=path | |
402 CONFIG_ERROR=1 | |
403 !endif | |
404 !if $(HAVE_MS_WINDOWS) && $(HAVE_POSTGRESQL) && defined(POSTGRESQL_DIR) && !exist("$(POSTGRESQL_DIR)\src\interfaces\libpq\Release\libpq.lib") | |
405 !message Specified POSTGRESQL directory does not contain "$(POSTGRESQL_DIR)\src\interfaces\libpq\Release\libpq.lib" | |
406 CONFIG_ERROR=1 | |
407 !endif | |
408 !if $(HAVE_MS_WINDOWS) && $(HAVE_LDAP) && !defined(LDAP_DIR) | |
409 !message Please specify root directory for your LDAP installation: LDAP_DIR=path | |
410 CONFIG_ERROR=1 | |
411 !endif | |
412 !if $(HAVE_MS_WINDOWS) && $(HAVE_LDAP) && defined(LDAP_DIR) && !exist("$(LDAP_DIR)\openldap.lib") | |
413 !message Specified LDAP directory does not contain "$(LDAP_DIR)\openldap.lib" | |
414 CONFIG_ERROR=1 | |
415 !endif | |
428 | 416 !if $(CONFIG_ERROR) |
417 !error Configuration error(s) found | |
418 !endif | |
419 | |
1330 | 420 ########################### Set version strings. |
421 | |
422 !if $(INFODOCK) | |
423 INFODOCK_VERSION_STRING=$(infodock_major_version).$(infodock_minor_version).$(infodock_build_version) | |
424 PROGRAM_DEFINES=-DINFODOCK \ | |
425 -DPATH_VERSION=\"$(INFODOCK_VERSION_STRING)\" \ | |
426 -DPATH_PROGNAME=\"infodock\" \ | |
427 -DEMACS_PROGNAME=\"infodock\" \ | |
4458
d9b9b5f90386
Provide SHEBANG_PROGNAME on Win32; correct a bug with it and string concat'ing
Aidan Kehoe <kehoea@parhasard.net>
parents:
4419
diff
changeset
|
428 -DSHEBANG_PROGNAME=\"infodock-script\" \ |
1330 | 429 -DEMACS_VERSION=\"$(INFODOCK_VERSION_STRING)\" \ |
430 -DINFODOCK_MAJOR_VERSION=$(infodock_major_version) \ | |
431 -DINFODOCK_MINOR_VERSION=$(infodock_minor_version) \ | |
432 -DINFODOCK_BUILD_VERSION=$(infodock_build_version) | |
433 !else | |
434 XEMACS_VERSION_STRING=$(emacs_major_version).$(emacs_minor_version) | |
435 !if "$(emacs_beta_version)" != "" | |
436 !if "$(emacs_is_beta)" != "" | |
437 XEMACS_VERSION_STRING=$(XEMACS_VERSION_STRING)-b$(emacs_beta_version) | |
438 !else | |
439 XEMACS_VERSION_STRING=$(XEMACS_VERSION_STRING).$(emacs_beta_version) | |
440 !endif | |
441 !endif | |
442 PROGRAM_DEFINES= \ | |
443 -DPATH_VERSION=\"$(XEMACS_VERSION_STRING)\" \ | |
444 -DPATH_PROGNAME=\"xemacs\" \ | |
445 -DEMACS_VERSION=\"$(XEMACS_VERSION_STRING)\" \ | |
4458
d9b9b5f90386
Provide SHEBANG_PROGNAME on Win32; correct a bug with it and string concat'ing
Aidan Kehoe <kehoea@parhasard.net>
parents:
4419
diff
changeset
|
446 -DEMACS_PROGNAME=\"xemacs\" -DSHEBANG_PROGNAME=\"xemacs-script\" |
1330 | 447 !endif |
448 | |
449 ########################### Set up installation and package directories. | |
450 | |
451 !if !defined(INSTALL_DIR) | |
452 ! if $(INFODOCK) | |
453 INSTALL_DIR=c:\Program Files\Infodock\Infodock-$(INFODOCK_VERSION_STRING) | |
454 ! else | |
455 INSTALL_DIR=c:\Program Files\XEmacs\XEmacs-$(XEMACS_VERSION_STRING) | |
442 | 456 ! endif |
1330 | 457 !endif |
3281 | 458 |
459 # If PACKAGE_PREFIX was defined, use it to generate a package path. | |
460 !if defined(PACKAGE_PREFIX) | |
461 PATH_LATE_PACKAGE_DIRECTORIES="$(PACKAGE_PREFIX:\=\\)" | |
442 | 462 !endif |
1330 | 463 |
464 !if $(INFODOCK) | |
465 PATH_PREFIX=../.. | |
466 !else | |
4413
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
467 PATH_PREFIX="$(INSTALL_DIR)" |
1330 | 468 !endif |
469 | |
4413
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
470 PATH_DEFINES=-DPATH_PREFIX=\"$(PATH_PREFIX:\=\\)\" |
1330 | 471 |
472 !if $(SEPARATE_BUILD) | |
1346 | 473 PATH_DEFINES=$(PATH_DEFINES) -DPATH_LOADSEARCH=\"$(LISP:\=\\)\" -DPATH_DATA=\"$(ETC:\=\\)\" -DPATH_INFO=\"$(INFO:\=\\)\" |
1330 | 474 !endif |
475 | |
476 ########################### Determine system configuration. | |
477 | |
478 !if !defined(OS) | |
479 OS=Windows_95/98 | |
480 EMACS_CONFIGURATION=i586-pc-win32 | |
481 !else if "$(PROCESSOR_ARCHITECTURE)" == "x86" | |
482 EMACS_CONFIGURATION=i586-pc-win32 | |
483 !else if "$(PROCESSOR_ARCHITECTURE)" == "MIPS" | |
484 EMACS_CONFIGURATION=mips-pc-win32 | |
485 !else if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA" | |
486 EMACS_CONFIGURATION=alpha-pc-win32 | |
487 !else if "$(PROCESSOR_ARCHITECTURE)" == "PPC" | |
488 EMACS_CONFIGURATION=ppc-pc-win32 | |
489 !else | |
490 ! error Unknown processor architecture type $(PROCESSOR_ARCHITECTURE) | |
491 !endif | |
492 STACK_TRACE_EYE_CATCHER=$(XEMACS_VERSION_STRING:.=_) | |
493 STACK_TRACE_EYE_CATCHER=xemacs_$(STACK_TRACE_EYE_CATCHER:-=_)_$(EMACS_CONFIGURATION:-=_) | |
494 PROGRAM_DEFINES=$(PROGRAM_DEFINES) -DSTACK_TRACE_EYE_CATCHER=$(STACK_TRACE_EYE_CATCHER) | |
495 | |
2951 | 496 ########################### Determine includes/defines/object files/libraries |
497 ########################### for all configuration options given. | |
498 | |
499 OPT_DEFINES= | |
500 OPT_INCLUDES= | |
501 OPT_LIBS= | |
502 OPT_OBJS= | |
503 TEMACS_MODULE_OBJS= | |
504 TEMACS_MODULE_SRCS= | |
1330 | 505 |
506 !if $(HAVE_MS_WINDOWS) | |
2951 | 507 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_MS_WINDOWS |
508 OPT_LIBS=$(OPT_LIBS) comctl32.lib | |
509 OPT_OBJS=$(OPT_OBJS) \ | |
1330 | 510 $(OUTDIR)\console-msw.obj \ |
511 $(OUTDIR)\device-msw.obj \ | |
512 $(OUTDIR)\event-msw.obj \ | |
513 $(OUTDIR)\frame-msw.obj \ | |
514 $(OUTDIR)\glyphs-msw.obj \ | |
515 $(OUTDIR)\gui-msw.obj \ | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5032
diff
changeset
|
516 $(OUTDIR)\fontcolor-msw.obj \ |
1330 | 517 $(OUTDIR)\redisplay-msw.obj \ |
518 $(OUTDIR)\select-msw.obj \ | |
2951 | 519 $(OUTDIR)\dired-msw.obj |
520 !if $(HAVE_MENUBARS) | |
521 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_MENUBARS | |
522 OPT_OBJS=$(OPT_OBJS) $(OUTDIR)\menubar.obj $(OUTDIR)\menubar-msw.obj | |
523 !endif | |
524 !if $(HAVE_SCROLLBARS) | |
525 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_SCROLLBARS | |
526 OPT_OBJS=$(OPT_OBJS) $(OUTDIR)\scrollbar.obj $(OUTDIR)\scrollbar-msw.obj | |
527 !endif | |
528 !if $(HAVE_TOOLBARS) | |
529 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_TOOLBARS | |
530 OPT_OBJS=$(OPT_OBJS) $(OUTDIR)\toolbar.obj $(OUTDIR)\toolbar-msw.obj | |
531 !endif | |
532 !if $(HAVE_WIDGETS) | |
533 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_WIDGETS | |
534 !endif | |
535 !if $(HAVE_DIALOGS) | |
536 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_DIALOGS | |
537 OPT_OBJS=$(OPT_OBJS) $(OUTDIR)\dialog.obj $(OUTDIR)\dialog-msw.obj | |
538 !endif | |
1330 | 539 # end !if $(HAVE_MS_WINDOWS) |
540 !endif | |
541 | |
2951 | 542 !if $(HAVE_XPM) |
543 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_XPM -DFOR_MSW | |
544 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(XPM_DIR)" -I"$(XPM_DIR)\lib" | |
545 OPT_LIBS=$(OPT_LIBS) "$(XPM_DIR)\lib\Xpm.lib" | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
546 OPT_PATH=$(OPT_PATH)$(XPM_DIR)\lib; |
2951 | 547 !endif |
548 !if $(HAVE_GIF) | |
549 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_GIF | |
4711
985886265686
Updates for external GIF support on Windows
Vin Shelton <acs@xemacs.org>
parents:
4708
diff
changeset
|
550 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(GIF_DIR)\include" |
985886265686
Updates for external GIF support on Windows
Vin Shelton <acs@xemacs.org>
parents:
4708
diff
changeset
|
551 OPT_LIBS=$(OPT_LIBS) "$(GIF_DIR)\lib\giflib.lib" |
2951 | 552 !endif |
553 !if $(HAVE_PNG) | |
554 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_PNG | |
555 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(PNG_DIR)" -I"$(ZLIB_DIR)" | |
556 OPT_LIBS=$(OPT_LIBS) "$(PNG_DIR)\libpng.lib" "$(ZLIB_DIR)\zlib.lib" | |
557 !endif | |
558 !if $(HAVE_TIFF) | |
559 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_TIFF | |
560 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(TIFF_DIR)\libtiff" | |
561 OPT_LIBS=$(OPT_LIBS) "$(TIFF_DIR)\libtiff\libtiff.lib" | |
562 !endif | |
563 !if $(HAVE_JPEG) | |
564 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_JPEG | |
565 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(JPEG_DIR)" | |
566 OPT_LIBS=$(OPT_LIBS) "$(JPEG_DIR)\libjpeg.lib" | |
567 !endif | |
568 !if $(HAVE_XFACE) | |
569 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_XFACE | |
570 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(COMPFACE_DIR)" | |
571 OPT_LIBS=$(OPT_LIBS) "$(COMPFACE_DIR)\libcompface.lib" | |
572 !endif | |
573 !if $(HAVE_ZLIB) | |
574 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_ZLIB | |
575 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(ZLIB_DIR)" | |
576 OPT_LIBS=$(OPT_LIBS) "$(ZLIB_DIR)\zlib.lib" | |
577 !endif | |
578 !if $(HAVE_BIGNUM) | |
579 OPT_DEFINES=$(OPT_DEFINES) -DWITH_NUMBER_TYPES -DWITH_GMP | |
580 !if $(BUILD_BIGNUM_MINGW_SHARED) | |
581 OPT_LIBS=$(OPT_LIBS) "$(BIGNUM_DIR)\libgmp-3.lib" | |
582 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(BIGNUM_DIR)" | |
583 !else | |
584 !if $(BUILD_BIGNUM_NATIVE_SHARED) | |
585 OPT_LIBS=$(OPT_LIBS) "$(BIGNUM_DIR)\gmp-dynamic\gmp.lib" | |
3034 | 586 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(BIGNUM_DIR)" |
2951 | 587 !else |
588 OPT_LIBS=$(OPT_LIBS) "$(BIGNUM_DIR)\gmp-static\gmp.lib" | |
3034 | 589 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(BIGNUM_DIR)" |
2951 | 590 !endif |
591 !endif | |
592 OPT_OBJS=$(OPT_OBJS) $(OUTDIR)\number-gmp.obj $(OUTDIR)\number.obj | |
593 !endif | |
594 !if $(HAVE_DATABASE) | |
595 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_DATABASE -DHAVE_BERKELEY_DB -DDB_H_FILE=\"db.h\" | |
596 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(DATABASE_DIR)\build_win32" | |
597 !if $(BUILD_DATABASE_SHARED) | |
598 OPT_LIBS=$(OPT_LIBS) "$(DATABASE_DIR)\build_win32\Release\libdb43.lib" | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
599 OPT_PATH=$(OPT_PATH)$(DATABASE_DIR)\build_win32\Release; |
2951 | 600 !else |
601 OPT_LIBS=$(OPT_LIBS) "$(DATABASE_DIR)\build_win32\Release_static\libdb43s.lib" | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
602 OPT_PATH=$(OPT_PATH)$(DATABASE_DIR)\build_win32\Release_static; |
2951 | 603 !endif |
604 OPT_OBJS=$(OPT_OBJS) $(OUTDIR)\database.obj | |
605 !endif | |
606 !if $(HAVE_POSTGRESQL) | |
607 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_POSTGRESQL -DHAVE_POSTGRESQLV7 -DLIBPQ_FE_H_FILE=\"libpq-fe.h\" | |
608 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(POSTGRESQL_DIR)\src\include" -I"$(POSTGRESQL_DIR)\src\interfaces\libpq" | |
609 OPT_LIBS=$(OPT_LIBS) "$(POSTGRESQL_DIR)\src\interfaces\libpq\Release\libpq.lib" | |
610 TEMACS_MODULE_OBJS=$(TEMACS_MODULE_OBJS) $(OUTDIR)\postgresql.obj | |
611 TEMACS_MODULE_SRCS=$(TEMACS_MODULE_SRCS) $(SRCROOT)\modules\postgresql\postgresql.c | |
612 !endif | |
613 !if $(HAVE_LDAP) | |
614 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_LDAP -DHAVE_LDAP_SET_OPTION -DHAVE_LDAP_RESULT2ERROR -DHAVE_LDAP_PARSE_RESULT | |
615 OPT_INCLUDES=$(OPT_INCLUDES) -I"$(LDAP_DIR)" | |
616 OPT_LIBS=$(OPT_LIBS) "$(LDAP_DIR)\openldap.lib" | |
617 TEMACS_MODULE_OBJS=$(TEMACS_MODULE_OBJS) $(OUTDIR)\eldap.obj | |
618 TEMACS_MODULE_SRCS=$(TEMACS_MODULE_SRCS) $(SRCROOT)\modules\ldap\eldap.c | |
619 !endif | |
620 !if $(HAVE_NATIVE_SOUND) | |
621 OPT_DEFINES=$(OPT_DEFINES) -DHAVE_NATIVE_SOUND | |
622 !endif | |
623 | |
1330 | 624 !if $(MULE) |
2951 | 625 OPT_DEFINES=$(OPT_DEFINES) -DMULE |
626 OPT_OBJS=$(OPT_OBJS) \ | |
1330 | 627 $(OUTDIR)\mule-ccl.obj \ |
628 $(OUTDIR)\mule-charset.obj \ | |
629 $(OUTDIR)\mule-coding.obj | |
630 !endif | |
631 | |
632 !if $(DEBUG_XEMACS) | |
2951 | 633 OPT_OBJS=$(OPT_OBJS) $(OUTDIR)\debug.obj $(OUTDIR)\tests.obj |
1330 | 634 !endif |
635 | |
636 !if $(QUICK_BUILD) | |
2951 | 637 OPT_DEFINES=$(OPT_DEFINES) -DQUICK_BUILD |
1330 | 638 !endif |
639 | |
640 !if $(ERROR_CHECK_ALL) | |
2951 | 641 OPT_DEFINES=$(OPT_DEFINES) -DERROR_CHECK_ALL |
1330 | 642 !endif |
643 | |
644 !if $(USE_UNION_TYPE) | |
2951 | 645 OPT_DEFINES=$(OPT_DEFINES) -DUSE_UNION_TYPE |
1330 | 646 !endif |
647 | |
648 !if $(USE_PORTABLE_DUMPER) | |
2951 | 649 OPT_DEFINES=$(OPT_DEFINES) -DPDUMP |
650 OPT_OBJS=$(OPT_OBJS) $(OUTDIR)\dumper.obj | |
1330 | 651 !else |
2951 | 652 OPT_OBJS=$(OPT_OBJS) $(OUTDIR)\unexnt.obj |
1330 | 653 !endif |
654 | |
3092 | 655 !if $(NEW_GC) |
656 OPT_DEFINES=$(OPT_DEFINES) -DNEW_GC | |
3263 | 657 OPT_OBJS=$(OPT_OBJS) $(OUTDIR)\vdb.obj $(OUTDIR)\vdb-win32.obj \ |
658 $(OUTDIR)\mc-alloc.obj | |
3092 | 659 USE_KKCC=1 |
660 !endif | |
661 | |
1330 | 662 !if $(USE_KKCC) |
2951 | 663 OPT_DEFINES=$(OPT_DEFINES) -DUSE_KKCC |
1330 | 664 !endif |
3092 | 665 |
1330 | 666 !if $(USE_SYSTEM_MALLOC) |
2951 | 667 OPT_DEFINES=$(OPT_DEFINES) -DSYSTEM_MALLOC |
1330 | 668 !else |
2951 | 669 OPT_OBJS=$(OPT_OBJS) $(OUTDIR)\free-hook.obj $(OUTDIR)\gmalloc.obj \ |
1330 | 670 $(OUTDIR)\ntheap.obj $(OUTDIR)\vm-limit.obj |
671 !endif | |
672 | |
4405
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
673 !if $(USE_INTEL_COMPILER) |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
674 CC=icl |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
675 # Use static library if possible |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
676 INTEL_LIBS=libircmt.lib libmmt.lib |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
677 # Debugging requires DLL version of libm |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
678 !if $(DEBUG_XEMACS) |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
679 INTEL_LIBS=libircmt.lib libmmd.lib |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
680 !endif |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
681 !endif |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
682 |
1330 | 683 ########################### Process options related to compilation. |
442 | 684 |
685 # | |
428 | 686 # Compiler command echo control. Define VERBOSECC=1 to get verbose compilation. |
687 # | |
688 !if $(VERBOSECC) | |
689 CCV=$(CC) | |
690 !else | |
691 CCV=@$(CC) | |
692 !endif | |
693 | |
694 !if $(DEBUG_XEMACS) | |
814 | 695 |
872 | 696 # ---- Debugging support ---- |
2951 | 697 ! if $(MSC_VER) >= 1400 |
698 # VC 7 sets opt:noref automatically with -debug. VC 8 apparently doesn't | |
699 # do this, and then complains if you try to use edit-and-continue without | |
700 # giving it. | |
701 DEBUG_FLAG_LINK_DEBUG=-debug -opt:noref | |
702 # This turns on additional run-time checking | |
4413
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
703 # For some reason it causes spawning of make-docfile to crash in VC 7 and VC 8 |
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
704 # DEBUG_FLAG_COMPILE_DEBUG=-RTC1 |
2951 | 705 ! else |
706 DEBUG_FLAG_LINK_DEBUG=-debug:full | |
707 DEBUG_FLAG_COMPILE_DEBUG= | |
708 ! endif | |
709 | |
1333 | 710 ! if $(SUPPORT_EDIT_AND_CONTINUE) |
872 | 711 # support edit-and-continue |
2951 | 712 DEBUG_FLAGS_COMPILE=$(DEBUG_FLAG_COMPILE_DEBUG) -ZI |
1333 | 713 # WARNING: There is a very good reason for -incremental:no, as it can cause |
714 # all sorts of weird crashes in or after a pdump load. We must allow | |
715 # incremental linking for edit-and-continue to work, however. | |
2951 | 716 DEBUG_FLAGS_LINK=$(DEBUG_FLAG_LINK_DEBUG) |
872 | 717 ! else |
2951 | 718 DEBUG_FLAGS_COMPILE=$(DEBUG_FLAG_COMPILE_DEBUG) -Zi |
719 DEBUG_FLAGS_LINK=$(DEBUG_FLAG_LINK_DEBUG) -incremental:no | |
872 | 720 ! endif |
2951 | 721 |
722 OPT_DEFINES=$(OPT_DEFINES) -DDEBUG_XEMACS -D_DEBUG | |
723 | |
724 ! if $(MSC_VER) >= 1300 | |
725 #BROWSERFLAGS=-FR -Fd$(OUTDIR)\temacs.pdb | |
726 BROWSERFLAGS=-FR$*.sbr -Fd$(OUTDIR)\temacs.pdb | |
727 ! else | |
872 | 728 #BROWSERFLAGS=-Fr -Fd$(OUTDIR)\temacs.pdb |
729 BROWSERFLAGS=-Fr$*.sbr -Fd$(OUTDIR)\temacs.pdb | |
2951 | 730 ! endif |
872 | 731 |
814 | 732 !else |
872 | 733 |
734 # ---- No debugging support ---- | |
735 DEBUG_FLAGS_COMPILE= | |
736 DEBUG_FLAGS_LINK=-incremental:no | |
737 BROWSERFLAGS= | |
738 | |
428 | 739 !endif |
740 | |
440 | 741 !if $(USE_CRTDLL) |
3741 | 742 ! if $(DEBUG_XEMACS) && "$(OK_TO_USE_MSVCRTD)" == "1" |
440 | 743 C_LIBFLAG=-MDd |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
744 LIBC_LIB=msvcrtd.lib ucrtd.lib vcruntimed.lib |
3741 | 745 ! else |
440 | 746 C_LIBFLAG=-MD |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
747 LIBC_LIB=msvcrt.lib ucrt.lib vcruntime.lib |
3741 | 748 ! endif |
440 | 749 !else |
750 C_LIBFLAG=-ML | |
751 LIBC_LIB=libc.lib | |
752 !endif | |
753 | |
872 | 754 !if $(OPTIMIZED_BUILD) |
2951 | 755 !if $(SUPPORT_EDIT_AND_CONTINUE) |
756 !error Edit-and-continue is not compatible with optimization. | |
757 !endif | |
872 | 758 # -G5 means optimize for Pentium. (According to the code-optimization |
759 # article, -GB is the same as -G5, and -G6, i.e. optimze for Pentium Pro, | |
760 # gains you little over -G5 for PPro's but causes big slowdowns for | |
761 # Pentiums.) -GF means put strings in read-only memory; -Gr means use | |
762 # fastcall convention. Another possible addition: -Ob2 -- allows inlining | |
763 # of any function, not just those declared inline. Potential code size | |
764 # increase, though. | |
765 # | |
766 # #### Note: fastcall doesn't actually seem to make any difference, at least | |
767 # not using the (admittedly unscientific) test of (hanoi 6). The | |
768 # optimization article claims 1-2% improvement in both speed and size. | |
769 OPTFLAGS_FASTCALL =-O2 -G5 -Gr -Ob2 | |
770 OPTFLAGS_CDECL =-O2 -G5 -Ob2 | |
771 !else | |
772 OPTFLAGS_FASTCALL =-Od | |
773 OPTFLAGS_CDECL =-Od | |
774 !endif | |
775 | |
776 !if $(USE_FASTCALL) | |
777 OPTFLAGS = $(OPTFLAGS_FASTCALL) | |
778 !else | |
779 OPTFLAGS = $(OPTFLAGS_CDECL) | |
780 !endif | |
781 | |
782 !if $(PROFILE_SUPPORT) | |
783 PROFILE_FLAGS=-profile | |
784 !else | |
785 PROFILE_FLAGS= | |
786 !endif | |
787 | |
1203 | 788 !if $(CPLUSPLUS_COMPILE) |
789 CPLUSPLUS_COMPILE_FLAGS=-TP | |
790 !else | |
791 CPLUSPLUS_COMPILE_FLAGS= | |
792 !endif | |
793 | |
1330 | 794 ########################### Determine generic includes/defines/flags. |
795 | |
2951 | 796 INCLUDES=-I$(NT)\inc -I$(SRC) $(OPT_INCLUDES) |
1330 | 797 |
2951 | 798 DEFINES=$(OPT_DEFINES) \ |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
799 -DWIN32_LEAN_AND_MEAN -DWIN32_NATIVE -Demacs -DNTDDI_VERSION=NTDDI_WIN2K -D_WIN32_WINNT=_WIN32_WINNT_WIN2K -D_CRT_NO_POSIX_ERROR_CODES \ |
1330 | 800 -DHAVE_CONFIG_H $(PROGRAM_DEFINES) $(PATH_DEFINES) |
801 | |
872 | 802 CFLAGS_NO_OPT=-nologo -W3 -DSTRICT $(DEBUG_FLAGS_COMPILE) |
803 | |
804 CFLAGS_NO_LIB=$(CFLAGS_NO_OPT) $(OPTFLAGS) | |
826 | 805 CFLAGS=$(CFLAGS_NO_LIB) $(C_LIBFLAG) |
806 | |
872 | 807 CFLAGS_CDECL_NO_LIB=$(CFLAGS_NO_OPT) $(OPTFLAGS_CDECL) |
808 CFLAGS_CDECL=$(CFLAGS_CDECL_NO_LIB) $(C_LIBFLAG) | |
809 | |
1330 | 810 ########################### Determine flags for XEmacs object files. |
428 | 811 |
812 # This may not exist | |
813 !if "$(emacs_beta_version)" != "" | |
496 | 814 !if "$(emacs_is_beta)" != "" |
428 | 815 EMACS_BETA_VERSION=-DEMACS_BETA_VERSION=$(emacs_beta_version) |
496 | 816 !else |
817 EMACS_PATCH_LEVEL=-DEMACS_PATCH_LEVEL=$(emacs_beta_version) | |
818 !endif | |
819 !endif | |
428 | 820 |
1203 | 821 TEMACS_CPP_FLAGS_NO_CFLAGS=-c $(CPLUSPLUS_COMPILE_FLAGS) \ |
1330 | 822 $(INCLUDES) $(DEFINES) \ |
428 | 823 -DEMACS_MAJOR_VERSION=$(emacs_major_version) \ |
824 -DEMACS_MINOR_VERSION=$(emacs_minor_version) \ | |
1330 | 825 $(EMACS_BETA_VERSION) $(EMACS_PATCH_LEVEL) \ |
442 | 826 -DXEMACS_CODENAME=\"$(xemacs_codename:&=and)\" \ |
2106 | 827 !if defined(xemacs_extra_name) |
4419
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
828 -DXEMACS_EXTRA_NAME=\""$(xemacs_extra_name:"=)"\" \ |
2106 | 829 !endif |
3281 | 830 !if defined(PATH_LATE_PACKAGE_DIRECTORIES) |
831 -DPATH_LATE_PACKAGE_DIRECTORIES=\"$(PATH_LATE_PACKAGE_DIRECTORIES)\" \ | |
832 !endif | |
833 -DEMACS_CONFIGURATION=\"$(EMACS_CONFIGURATION)\" | |
872 | 834 TEMACS_CPP_FLAGS=$(CFLAGS) $(TEMACS_CPP_FLAGS_NO_CFLAGS) |
835 TEMACS_CPP_CDECL_FLAGS=$(CFLAGS_CDECL) $(TEMACS_CPP_FLAGS_NO_CFLAGS) | |
428 | 836 |
1330 | 837 ########################### Determine XEmacs object files. |
428 | 838 |
2951 | 839 TEMACS_COMMON_OBJS= \ |
840 $(OPT_OBJS)\ | |
428 | 841 $(OUTDIR)\abbrev.obj \ |
842 $(OUTDIR)\alloc.obj \ | |
851 | 843 $(OUTDIR)\alloca.obj \ |
5174
2ac3b54d3cae
Support Ben's dynarr changes under native Windows
Vin Shelton <acs@xemacs.org>
parents:
5114
diff
changeset
|
844 $(OUTDIR)\array.obj \ |
428 | 845 $(OUTDIR)\blocktype.obj \ |
846 $(OUTDIR)\buffer.obj \ | |
847 $(OUTDIR)\bytecode.obj \ | |
848 $(OUTDIR)\callint.obj \ | |
849 $(OUTDIR)\casefiddle.obj \ | |
850 $(OUTDIR)\casetab.obj \ | |
851 $(OUTDIR)\chartab.obj \ | |
852 $(OUTDIR)\cmdloop.obj \ | |
853 $(OUTDIR)\cmds.obj \ | |
854 $(OUTDIR)\console-stream.obj \ | |
855 $(OUTDIR)\console.obj \ | |
856 $(OUTDIR)\data.obj \ | |
857 $(OUTDIR)\device.obj \ | |
858 $(OUTDIR)\dired.obj \ | |
859 $(OUTDIR)\doc.obj \ | |
860 $(OUTDIR)\doprnt.obj \ | |
861 $(OUTDIR)\dragdrop.obj \ | |
862 $(OUTDIR)\editfns.obj \ | |
863 $(OUTDIR)\elhash.obj \ | |
864 $(OUTDIR)\emacs.obj \ | |
1754 | 865 $(OUTDIR)\emodules.obj \ |
428 | 866 $(OUTDIR)\eval.obj \ |
867 $(OUTDIR)\event-stream.obj \ | |
868 $(OUTDIR)\events.obj \ | |
869 $(OUTDIR)\extents.obj \ | |
870 $(OUTDIR)\faces.obj \ | |
871 $(OUTDIR)\file-coding.obj \ | |
872 $(OUTDIR)\fileio.obj \ | |
873 $(OUTDIR)\filemode.obj \ | |
874 $(OUTDIR)\floatfns.obj \ | |
875 $(OUTDIR)\fns.obj \ | |
876 $(OUTDIR)\font-lock.obj \ | |
877 $(OUTDIR)\frame.obj \ | |
3092 | 878 $(OUTDIR)\gc.obj \ |
428 | 879 $(OUTDIR)\general.obj \ |
442 | 880 $(OUTDIR)\getloadavg.obj \ |
428 | 881 $(OUTDIR)\glyphs.obj \ |
882 $(OUTDIR)\glyphs-eimage.obj \ | |
587 | 883 $(OUTDIR)\glyphs-shared.obj \ |
428 | 884 $(OUTDIR)\glyphs-widget.obj \ |
885 $(OUTDIR)\gui.obj \ | |
886 $(OUTDIR)\gutter.obj \ | |
887 $(OUTDIR)\hash.obj \ | |
888 $(OUTDIR)\indent.obj \ | |
889 $(OUTDIR)\imgproc.obj \ | |
890 $(OUTDIR)\insdel.obj \ | |
891 $(OUTDIR)\intl.obj \ | |
771 | 892 $(OUTDIR)\intl-win32.obj \ |
893 $(OUTDIR)\intl-encap-win32.obj \ | |
894 $(OUTDIR)\intl-auto-encap-win32.obj \ | |
428 | 895 $(OUTDIR)\keymap.obj \ |
872 | 896 $(OUTDIR)\libinterface.obj \ |
428 | 897 $(OUTDIR)\line-number.obj \ |
898 $(OUTDIR)\lread.obj \ | |
899 $(OUTDIR)\lstream.obj \ | |
900 $(OUTDIR)\macros.obj \ | |
901 $(OUTDIR)\marker.obj \ | |
902 $(OUTDIR)\md5.obj \ | |
903 $(OUTDIR)\minibuf.obj \ | |
872 | 904 # #### Leave the next one out when integrating my working ws |
428 | 905 $(OUTDIR)\nt.obj \ |
906 $(OUTDIR)\ntplay.obj \ | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5032
diff
changeset
|
907 $(OUTDIR)\fontcolor.obj \ |
428 | 908 $(OUTDIR)\opaque.obj \ |
909 $(OUTDIR)\print.obj \ | |
910 $(OUTDIR)\process.obj \ | |
911 $(OUTDIR)\process-nt.obj \ | |
912 $(OUTDIR)\profile.obj \ | |
913 $(OUTDIR)\rangetab.obj \ | |
914 $(OUTDIR)\realpath.obj \ | |
915 $(OUTDIR)\redisplay-output.obj \ | |
916 $(OUTDIR)\redisplay.obj \ | |
917 $(OUTDIR)\regex.obj \ | |
918 $(OUTDIR)\search.obj \ | |
919 $(OUTDIR)\select.obj \ | |
5608
4cffcc80b299
Fix Windows build by adding sequence.obj to the build list.
Vin Shelton <acs@xemacs.org>
parents:
5603
diff
changeset
|
920 $(OUTDIR)\sequence.obj \ |
428 | 921 $(OUTDIR)\signal.obj \ |
922 $(OUTDIR)\sound.obj \ | |
923 $(OUTDIR)\specifier.obj \ | |
924 $(OUTDIR)\strftime.obj \ | |
925 $(OUTDIR)\symbols.obj \ | |
926 $(OUTDIR)\syntax.obj \ | |
927 $(OUTDIR)\sysdep.obj \ | |
771 | 928 $(OUTDIR)\text.obj \ |
428 | 929 $(OUTDIR)\tparam.obj \ |
930 $(OUTDIR)\undo.obj \ | |
771 | 931 $(OUTDIR)\unicode.obj \ |
428 | 932 $(OUTDIR)\widget.obj \ |
933 $(OUTDIR)\window.obj \ | |
442 | 934 $(OUTDIR)\win32.obj |
428 | 935 |
2951 | 936 TEMACS_OBJS= \ |
937 $(TEMACS_COMMON_OBJS) \ | |
938 $(TEMACS_MODULE_OBJS) | |
939 | |
940 TEMACS_DOC_SOURCES= \ | |
941 $(TEMACS_COMMON_OBJS) \ | |
942 $(TEMACS_MODULE_SRCS) | |
943 | |
1330 | 944 ######################################################################### |
945 ## Implicit rules ## | |
946 ######################################################################### | |
947 | |
428 | 948 # Rules |
949 | |
950 .SUFFIXES: | |
430 | 951 .SUFFIXES: .c .obj .texi .info |
428 | 952 |
872 | 953 # nmake rule with batching: |
1330 | 954 #{$(SRC)}.c{$(OUTDIR)}.obj: |
872 | 955 # echo $< >> $(OUTDIR)\listfile.tmp |
956 | |
1330 | 957 {$(SRC)}.c{$(OUTDIR)}.obj: |
872 | 958 $(CCV) $(TEMACS_CPP_FLAGS) $< -Fo$@ $(BROWSERFLAGS) |
428 | 959 |
1330 | 960 ######################################################################### |
961 ## Subsidiary dependency rules ## | |
962 ######################################################################### | |
963 | |
964 ###################### Include auto-generated dependencies. | |
965 | |
966 # | |
967 # Whether to use dependency information generated by make-src-depend | |
968 # | |
969 !if $(DEPEND) && exist("$(SRC)\depend") | |
3054 | 970 ! if [if not exist $(OUTDIR) mkdir "$(OUTDIR)"] |
1330 | 971 ! endif |
972 # This perl script used to be inline but that caused too many quoting problems | |
973 ! if [perl $(NT)\make-nt-depend -s=$(SRC) -c=$(NT) -o=$(OUTDIR) < $(SRC)\depend > $(OUTDIR)\depend.tmp] | |
974 ! endif | |
975 ! include "$(OUTDIR)\depend.tmp" | |
976 !else | |
977 ! if [echo WARNING: Compiling without dependency information.] | |
978 ! endif | |
979 !endif | |
980 | |
981 ###################### Build the output directory structure if not same as | |
982 ###################### source. | |
983 | |
984 !if $(SEPARATE_BUILD) | |
985 # #### `if not exist' does not like the quotes around file names. | |
986 # But what if one of them has spaces? Fucking Microsoft! | |
3054 | 987 ! if [if not exist $(BLDROOT) mkdir "$(BLDROOT)"] |
1330 | 988 ! endif |
3054 | 989 ! if [if not exist $(BLDLIB_SRC) mkdir "$(BLDLIB_SRC)"] |
1330 | 990 ! endif |
3054 | 991 ! if [if not exist $(BLDNT) mkdir "$(BLDNT)"] |
1330 | 992 ! endif |
3054 | 993 ! if [if not exist $(OUTDIR) mkdir "$(OUTDIR)"] |
1330 | 994 ! endif |
3054 | 995 ! if [if not exist $(BLDSRC) mkdir "$(BLDSRC)"] |
1330 | 996 ! endif |
997 # No point. | |
3054 | 998 # ! if [if not exist "$(BLDROOT)" mkdir "$(BLDROOT)"] |
1330 | 999 # ! endif |
1000 !endif | |
1001 | |
1002 ###################### Random .obj dependencies | |
1003 | |
872 | 1004 # An explicit rule looks like this ($< works only in implicit rules): |
1330 | 1005 # $(OUTDIR)\foo.obj: $(SRC)\foo.c |
1006 # $(CCV) $(TEMACS_CPP_FLAGS) $(SRC)\$(@B).c -Fo$@ $(BROWSERFLAGS) | |
442 | 1007 |
1330 | 1008 $(OUTDIR)\emacs.obj: $(SRCROOT)\version.sh |
872 | 1009 |
1330 | 1010 $(OUTDIR)\libinterface.obj: $(SRC)\libinterface.c |
1011 $(CCV) $(TEMACS_CPP_CDECL_FLAGS) $(SRC)\$(@B).c -Fo$@ $(BROWSERFLAGS) | |
428 | 1012 |
2951 | 1013 $(OUTDIR)\postgresql.obj: $(SRCROOT)\modules\postgresql\postgresql.c |
1014 $(CCV) -I$(SRC) $(TEMACS_CPP_FLAGS) $(SRCROOT)\modules\postgresql\postgresql.c -Fo$@ $(BROWSERFLAGS) | |
1015 | |
1016 $(OUTDIR)\eldap.obj: $(SRCROOT)\modules\ldap\eldap.c | |
1017 $(CCV) -I$(SRC) $(TEMACS_CPP_FLAGS) $(SRCROOT)\modules\ldap\eldap.c -Fo$@ $(BROWSERFLAGS) | |
1018 | |
1330 | 1019 ###################### Generated source files |
1020 | |
3054 | 1021 $(OUTDIR): |
1330 | 1022 -@mkdir $(OUTDIR) |
872 | 1023 |
1330 | 1024 XEMACS_INCLUDES=\ |
1025 $(SRC)\config.h \ | |
1026 $(SRC)\Emacs.ad.h \ | |
1027 $(SRC)\paths.h | |
428 | 1028 |
1330 | 1029 # #### Copying is cheap, we should just force these |
1030 $(SRC)\config.h: $(SRC)\config.h.in | |
1031 # #### ms must have hired monkeys to design their shell commands. if | |
1032 # #### you use xcopy to copy a file from one name to another, it | |
1033 # #### PROMPTS you to see if you meant the second as a directory! and | |
1034 # #### no switch to mean "no of course, you idiots, it's a file!" | |
2106 | 1035 set COPYCMD=$(COPYCMD) |
1330 | 1036 @copy $(SRC)\config.h.in $(SRC)\config.h |
428 | 1037 |
1330 | 1038 #$(SRC)\paths.h: $(SRC)\paths.h.in |
1039 # !"cd $(SRC); cp paths.h.in paths.h" | |
1040 | |
1041 $(SRC)\Emacs.ad.h: $(NT)\Emacs.ad.h | |
2106 | 1042 set COPYCMD=$(COPYCMD) |
1330 | 1043 @$(COPY) $(NT)\Emacs.ad.h $(SRC) |
872 | 1044 |
1330 | 1045 $(SRC)\paths.h: $(NT)\paths.h |
2106 | 1046 set COPYCMD=$(COPYCMD) |
1330 | 1047 @$(COPY) $(NT)\paths.h $(SRC) |
872 | 1048 |
1330 | 1049 |
1050 ###################### lastfile.lib | |
872 | 1051 |
1330 | 1052 !if !$(USE_SYSTEM_MALLOC) || !$(USE_PORTABLE_DUMPER) |
872 | 1053 |
1330 | 1054 LASTFILE=$(OUTDIR)\lastfile.lib |
1055 LASTFILE_SRC=$(SRC) | |
1056 LASTFILE_FLAGS=$(CFLAGS) $(CPLUSPLUS_COMPILE_FLAGS) $(INCLUDES) -Fo$@ -Fd$* -c | |
1057 LASTFILE_OBJS= \ | |
1058 $(OUTDIR)\lastfile.obj | |
872 | 1059 |
1330 | 1060 $(LASTFILE): $(XEMACS_INCLUDES) $(LASTFILE_OBJS) |
1061 link.exe -lib -nologo -out:$@ $(LASTFILE_OBJS) | |
1062 | |
1063 $(OUTDIR)\lastfile.obj: $(LASTFILE_SRC)\lastfile.c | |
1064 $(CCV) $(LASTFILE_FLAGS) $(LASTFILE_SRC)\$(@B).c | |
1065 | |
872 | 1066 !endif |
1067 | |
1330 | 1068 ###################### lib-src programs |
1069 | |
5030 | 1070 LIB_SRC_DEFINES = -DHAVE_CONFIG_H -DWIN32_NATIVE $(PROGRAM_DEFINES) |
1330 | 1071 |
1072 # | |
1073 # Creating config.values to be used by config.el | |
1074 # | |
1075 CONFIG_VALUES = $(BLDLIB_SRC)\config.values | |
1076 !if [echo Creating $(CONFIG_VALUES) && echo ;;; Do not edit this file!>$(CONFIG_VALUES)] | |
1077 !endif | |
1078 !if [echo blddir>>$(CONFIG_VALUES) && echo "$(BLDROOT:\=\\)">>$(CONFIG_VALUES)] | |
1079 !endif | |
1080 !if [echo srcdir>>$(CONFIG_VALUES) && echo "$(SRCROOT:\=\\)">>$(CONFIG_VALUES)] | |
1081 !endif | |
1082 !if [echo CC>>$(CONFIG_VALUES) && echo "$(CC:\=\\)">>$(CONFIG_VALUES)] | |
1083 !endif | |
1084 !if [echo CFLAGS>>$(CONFIG_VALUES) && echo "$(CFLAGS:\=\\)">>$(CONFIG_VALUES)] | |
1085 !endif | |
1086 !if [echo CPP>>$(CONFIG_VALUES) && echo "$(CPP:\=\\)">>$(CONFIG_VALUES)] | |
1087 !endif | |
1088 !if [echo CPPFLAGS>>$(CONFIG_VALUES) && echo "$(CPPFLAGS:\=\\)">>$(CONFIG_VALUES)] | |
1089 !endif | |
1090 !if [echo LISPDIR>>$(CONFIG_VALUES) && echo "\\$(LISP:\=\\)">>$(CONFIG_VALUES)] | |
1091 !endif | |
3281 | 1092 !if defined(PATH_LATE_PACKAGE_DIRECTORIES) |
1093 # PATH_LATE_PACKAGE_DIRECTORIES is already a quoted string. | |
1094 ! if [echo PATH_LATE_PACKAGE_DIRECTORIES>>$(CONFIG_VALUES) && echo $(PATH_LATE_PACKAGE_DIRECTORIES)>>$(CONFIG_VALUES)] | |
1095 ! endif | |
1330 | 1096 !endif |
1097 | |
1098 LINK_DEPENDENCY_ARGS = -Fe$@ -Fd$* $** -link $(DEBUG_FLAGS_LINK) | |
1099 LINK_STANDARD_LIBRARY_ARGS = setargv.obj user32.lib wsock32.lib | |
1100 | |
1333 | 1101 LIB_SRC_CFLAGS = $(CFLAGS) -I$(LIB_SRC) -I$(SRC) $(LIB_SRC_DEFINES) |
1102 | |
1330 | 1103 # Inferred rule |
1104 {$(LIB_SRC)}.c{$(BLDLIB_SRC)}.exe : | |
1333 | 1105 $(CCV) $(LIB_SRC_CFLAGS) $(LINK_DEPENDENCY_ARGS) $(LINK_STANDARD_LIBRARY_ARGS) |
4603
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1106 # If we're using Visual Studio 2005 or greater, |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1107 # embed the manifest into the executable. |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1108 !if $(MSC_VER) >= 1400 |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1109 @if exist $@.manifest mt -manifest $@.manifest -outputresource:$@;1 |
4603
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1110 !endif |
1330 | 1111 |
1112 # Individual dependencies | |
1113 ETAGS_DEPS = $(LIB_SRC)/getopt.c $(LIB_SRC)/getopt1.c $(SRC)/regex.c | |
1114 $(BLDLIB_SRC)/etags.exe : $(LIB_SRC)/etags.c $(ETAGS_DEPS) | |
1333 | 1115 $(CCV) $(LIB_SRC_CFLAGS) $(LINK_DEPENDENCY_ARGS) -stack:0x800000 $(LINK_STANDARD_LIBRARY_ARGS) |
4603
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1116 # If we're using Visual Studio 2005 or greater, |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1117 # embed the manifest into the executable. |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1118 !if $(MSC_VER) >= 1400 |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1119 @if exist $@.manifest mt -manifest $@.manifest -outputresource:$@;1 |
4603
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1120 !endif |
1330 | 1121 |
1122 $(BLDLIB_SRC)/movemail.exe : $(LIB_SRC)/movemail.c $(LIB_SRC)/pop.c $(ETAGS_DEPS) | |
1123 | |
1124 # Minitar uses zlib so just use cdecl to simplify things | |
1125 $(BLDLIB_SRC)/minitar.exe : $(NT)/minitar.c | |
2951 | 1126 $(CCV) -I$(SRC) -I"$(ZLIB_DIR)" $(LIB_SRC_DEFINES) $(CFLAGS_CDECL_NO_LIB) -MD $(LINK_DEPENDENCY_ARGS) "$(ZLIB_DIR)\zlib.lib" |
4603
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1127 # If we're using Visual Studio 2005 or greater, |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1128 # embed the manifest into the executable. |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1129 !if $(MSC_VER) >= 1400 |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1130 @if exist $@.manifest mt -manifest $@.manifest -outputresource:$@;1 |
4603
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1131 !endif |
1330 | 1132 |
1133 LIB_SRC_TOOLS = \ | |
1134 $(BLDLIB_SRC)/etags.exe \ | |
1135 $(BLDLIB_SRC)/hexl.exe \ | |
1136 $(BLDLIB_SRC)/i.exe \ | |
1137 $(BLDLIB_SRC)/winclient.exe \ | |
1138 $(BLDLIB_SRC)/make-docfile.exe \ | |
1139 $(BLDLIB_SRC)/mmencode.exe \ | |
1140 $(BLDLIB_SRC)/movemail.exe \ | |
4773
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4735
diff
changeset
|
1141 $(BLDLIB_SRC)/sorted-doc.exe |
1330 | 1142 !if $(USE_MINITAR) |
1143 LIB_SRC_TOOLS = \ | |
1144 $(LIB_SRC_TOOLS) \ | |
1145 $(BLDLIB_SRC)/minitar.exe | |
428 | 1146 !endif |
440 | 1147 !if $(USE_PORTABLE_DUMPER) |
1330 | 1148 LIB_SRC_TOOLS = \ |
1149 $(XEMACS_INCLUDES) \ | |
1150 $(BLDLIB_SRC)/make-dump-id.exe \ | |
1151 $(LIB_SRC_TOOLS) | |
442 | 1152 !endif |
428 | 1153 |
1330 | 1154 ########################### Create the Installation file |
428 | 1155 |
1330 | 1156 $(BLDROOT)\Installation:: installation |
440 | 1157 |
442 | 1158 installation:: |
1330 | 1159 @echo OS version:>$(BLDROOT)\Installation |
1160 @ver >> $(BLDROOT)\Installation | |
1161 @type >> $(BLDROOT)\Installation << | |
428 | 1162 !if defined(OS) |
1163 OS: $(OS) | |
1164 !endif | |
1165 | |
1370 | 1166 XEmacs $(XEMACS_VERSION_STRING) $(xemacs_codename) $(xemacs_extra_name:"=) configured for `$(EMACS_CONFIGURATION)'. |
428 | 1167 |
1052 | 1168 Building XEmacs using "$(MAKE:\=\\)". |
1169 Building XEmacs using make flags "$(MAKEFLAGS)". | |
1330 | 1170 Building XEmacs in source tree "$(SRCROOT:\=\\)". |
1171 !if $(SEPARATE_BUILD) | |
1172 Building XEmacs into compiled tree "$(BLDROOT:\=\\)". | |
1173 !endif | |
428 | 1174 !if defined(CCV) |
1333 | 1175 For src, using compiler "$(CC) $(TEMACS_CPP_FLAGS)". |
1176 For lib-src, using compiler "$(CC) $(LIB_SRC_CFLAGS)". | |
428 | 1177 !endif |
1203 | 1178 !if $(CPLUSPLUS_COMPILE) |
1179 Compiling as C++. | |
1180 !endif | |
1052 | 1181 Installing XEmacs in "$(INSTALL_DIR:\=\\)". |
3281 | 1182 !if defined(PATH_LATE_PACKAGE_DIRECTORIES) |
1183 Package path is $(PATH_LATE_PACKAGE_DIRECTORIES). | |
1184 !endif | |
428 | 1185 !if $(INFODOCK) |
1186 Building InfoDock. | |
1187 !endif | |
442 | 1188 !if $(HAVE_MS_WINDOWS) |
428 | 1189 Compiling in support for Microsoft Windows native GUI. |
1190 !endif | |
771 | 1191 !if $(MULE) |
1192 Compiling in international (MULE) support. | |
428 | 1193 !endif |
488 | 1194 !if $(HAVE_GTK) |
1195 -------------------------------------------------------------------- | |
1315 | 1196 NOTE: You specified HAVE_GTK=1, but we are compiling WITHOUT GTK support. |
1197 NOTE: gtk-xemacs is not currently supported on MS Windows (mingw or msvc). | |
1198 NOTE: Yes, we know that gtk has been ported to native MS Windows, but | |
1199 NOTE: XEmacs is not yet ready to use that port. | |
488 | 1200 -------------------------------------------------------------------- |
1201 !endif | |
428 | 1202 !if $(HAVE_XPM) |
1203 Compiling in support for XPM images. | |
1204 !else | |
1205 -------------------------------------------------------------------- | |
1315 | 1206 NOTE: Compiling without XPM support. |
1207 NOTE: You should strongly consider installing XPM. | |
1208 NOTE: Otherwise toolbars and other graphics will look suboptimal. | |
1209 NOTE: (a copy may be found in ftp://ftp.xemacs.org/pub/xemacs/aux) | |
428 | 1210 -------------------------------------------------------------------- |
1211 !endif | |
1212 !if $(HAVE_GIF) | |
1213 Compiling in support for GIF images. | |
1214 !endif | |
1215 !if $(HAVE_PNG) | |
1216 Compiling in support for PNG images. | |
1217 !else | |
1218 -------------------------------------------------------------------- | |
1315 | 1219 NOTE: Compiling without PNG image support. |
1220 NOTE: You should strongly consider installing the PNG libraries. | |
1221 NOTE: Otherwise certain images and glyphs may not display. | |
1222 NOTE: (a copy may be found in ftp://ftp.xemacs.org/pub/xemacs/aux | |
428 | 1223 -------------------------------------------------------------------- |
1224 !endif | |
1225 !if $(HAVE_TIFF) | |
1226 Compiling in support for TIFF images. | |
1227 !endif | |
1228 !if $(HAVE_JPEG) | |
1229 Compiling in support for JPEG images. | |
1230 !endif | |
1231 !if $(HAVE_XFACE) | |
1232 Compiling in support for X-Face message headers. | |
1233 !endif | |
771 | 1234 !if $(HAVE_ZLIB) |
1235 Compiling in support for GZIP compression/decompression. | |
1236 !endif | |
428 | 1237 !if $(HAVE_TOOLBARS) |
1238 Compiling in support for toolbars. | |
1239 !endif | |
1240 !if $(HAVE_DIALOGS) | |
1241 Compiling in support for dialogs. | |
1242 !endif | |
1243 !if $(HAVE_WIDGETS) | |
1244 Compiling in support for widgets. | |
1245 !endif | |
2951 | 1246 !if $(HAVE_BIGNUM) |
1247 Compiling in support for arbitrary-precision numbers. | |
1248 !endif | |
1249 !if $(HAVE_DATABASE) | |
1250 !if $(BUILD_DATABASE_SHARED) | |
1251 Compiling in support for Berkeley Databases (DLL version). | |
1252 !else | |
1253 Compiling in support for Berkeley Databases (static-library version). | |
1254 !endif | |
1255 !endif | |
1256 !if $(HAVE_POSTGRESQL) | |
1257 Compiling in support for PostgreSQL. | |
1258 !endif | |
1259 !if $(HAVE_LDAP) | |
1260 Compiling in support for LDAP. | |
1261 !endif | |
428 | 1262 !if $(HAVE_NATIVE_SOUND) |
1263 Compiling in support for native sounds. | |
1264 !endif | |
1265 !if $(USE_UNION_TYPE) | |
1266 Using union type for Lisp object storage. | |
1315 | 1267 NOTE: --------------------------------------------------------- |
1268 NOTE: This tends to trigger compiler bugs, especially when combined | |
1269 NOTE: with MULE and ERROR_CHECKING. Crashes in pdump have recently | |
1270 NOTE: been observed using Visual C++ in combination with union type, | |
1271 NOTE: MULE, and ERROR_CHECKING. | |
1272 NOTE: --------------------------------------------------------- | |
428 | 1273 !endif |
438 | 1274 !if $(USE_PORTABLE_DUMPER) |
1275 Using portable dumper. | |
1276 !endif | |
440 | 1277 !if $(USE_SYSTEM_MALLOC) |
1278 Using system malloc. | |
1279 !endif | |
1280 !if $(USE_CRTDLL) | |
942 | 1281 Using DLL version of C runtime library. |
440 | 1282 !endif |
814 | 1283 !if $(ERROR_CHECK_ALL) |
1203 | 1284 Compiling in extra internal error-checking. |
1315 | 1285 NOTE: --------------------------------------------------------- |
1286 NOTE: Compiling in support for runtime error-checking. | |
1287 NOTE: XEmacs will run noticeably more slowly as a result. | |
1288 NOTE: Error-checking is on by default for XEmacs beta releases. | |
1289 NOTE: --------------------------------------------------------- | |
814 | 1290 !endif |
428 | 1291 !if $(DEBUG_XEMACS) |
814 | 1292 Compiling in debugging support (no slowdown). |
1293 !endif | |
1294 !if $(OPTIMIZED_BUILD) | |
1295 Compiling with optimization. | |
428 | 1296 !endif |
442 | 1297 !if $(QUICK_BUILD) |
1298 Disabling non-essential build actions. Use with care! | |
1299 !endif | |
942 | 1300 !if $(USE_KKCC) |
3263 | 1301 Using new experimental GC mark algorithms. |
2720 | 1302 !endif |
3092 | 1303 !if $(NEW_GC) |
3263 | 1304 Using new experimental incremental garbage collector and new allocator. |
3092 | 1305 !endif |
428 | 1306 <<NOKEEP |
1307 @echo -------------------------------------------------------------------- | |
1330 | 1308 @type $(BLDROOT)\Installation |
428 | 1309 @echo -------------------------------------------------------------------- |
1310 | |
1330 | 1311 ######################################################################### |
1312 ## Primary rebuilding process ## | |
1313 ######################################################################### | |
1314 | |
1315 ########################### Definitions for linking temacs.exe | |
1316 | |
1317 !if !$(USE_PORTABLE_DUMPER) | |
1318 TEMACS_ENTRYPOINT=-entry:_start | |
1319 !else | |
1320 TEMACS_ENTRYPOINT=-entry:mainCRTStartup | |
1321 !endif | |
1322 | |
1323 TEMACS_BROWSE=$(BLDSRC)\temacs.bsc | |
2951 | 1324 TEMACS_LIBS=$(LASTFILE) $(OPT_LIBS) \ |
1330 | 1325 oldnames.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib \ |
1326 shell32.lib wsock32.lib netapi32.lib winmm.lib winspool.lib ole32.lib \ | |
4403
7080e020d700
Add support for the Intel compiler under Windows
Vin Shelton <acs@xemacs.org>
parents:
4225
diff
changeset
|
1327 mpr.lib uuid.lib imm32.lib $(INTEL_LIBS) $(LIBC_LIB) |
2524 | 1328 TEMACS_COMMON_LFLAGS=-nologo $(LIBRARIES) $(DEBUG_FLAGS_LINK) \ |
1333 | 1329 -base:0x1000000 -stack:0x800000 $(TEMACS_ENTRYPOINT) -subsystem:windows \ |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1330 -heap:0x00100000 -nodefaultlib -dynamicbase:no $(PROFILE_FLAGS) setargv.obj |
2524 | 1331 TEMACS_LFLAGS=$(TEMACS_COMMON_LFLAGS) \ |
1332 -pdb:$(BLDSRC)\temacs.pdb -map:$(BLDSRC)\temacs.map | |
1333 XEMACS_LFLAGS=$(TEMACS_COMMON_LFLAGS) \ | |
1334 -pdb:$(BLDSRC)\xemacs.pdb -map:$(BLDSRC)\xemacs.map | |
1330 | 1335 |
1336 ########################### Definitions for running temacs.exe/xemacs.exe | |
1337 | |
1338 RAW_EXE=$(BLDSRC)\temacs.exe | |
1339 DUMP_TARGET = $(BLDSRC)\xemacs.exe | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1340 #DO_TEMACS = "$(BLDLIB_SRC)\i" "$(RAW_EXE)" removed by HST, i.exe crashes |
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1341 DO_TEMACS = "$(RAW_EXE)" |
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1342 #DO_XEMACS = "$(BLDLIB_SRC)\i" "$(DUMP_TARGET)" ditto |
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1343 DO_XEMACS = "$(DUMP_TARGET)" |
1330 | 1344 |
1345 BATCH = -no-packages -batch | |
1346 BATCH_PACKAGES = -vanilla -batch | |
1347 TEMACS_BATCH = $(DO_TEMACS) -nd $(BATCH) | |
1348 XEMACS_BATCH = $(DO_XEMACS) $(BATCH) | |
1349 XEMACS_BATCH_PACKAGES = $(DO_XEMACS) $(BATCH_PACKAGES) | |
1350 temacs_loadup_args = -l $(LISP)/loadup.el | |
1351 dump_temacs_args = $(temacs_loadup_args) dump | |
1352 run_temacs_args = $(temacs_loadup_args) run-temacs | |
1353 dump_temacs = $(TEMACS_BATCH) $(dump_temacs_args) | |
1354 | |
1355 ########################### Build rules | |
1356 | |
1346 | 1357 ## Use this rule to build the complete system. We need both update-elc |
1358 ## and update-elc-2 due to the sideways dependency of NEEDTODUMP. See | |
1359 ## src/Makefile.in.in for a more detailed discussion of this. | |
1360 | |
3054 | 1361 all: installation $(OUTDIR) $(LIB_SRC_TOOLS) \ |
1346 | 1362 update-elc update-elc-2 \ |
1363 $(LISP)/finder-inf.el load-shadows info | |
1330 | 1364 |
1365 $(TEMACS_BROWSE): $(TEMACS_OBJS) | |
1366 @dir /b/s $(OUTDIR)\*.sbr > $(OUTDIR)\bscmake.tmp | |
1367 bscmake -nologo -o$(TEMACS_BROWSE) @$(OUTDIR)\bscmake.tmp | |
1368 -$(DEL) $(OUTDIR)\bscmake.tmp | |
1369 | |
1346 | 1370 ## (1) Compile all dependencies of the XEmacs executable |
1330 | 1371 |
1372 $(OUTDIR)\dump-id.obj : $(BLDSRC)\dump-id.c | |
1373 $(CCV) $(TEMACS_CPP_FLAGS) $(BLDSRC)\$(@B).c -Fo$@ $(BROWSERFLAGS) | |
1374 | |
1375 $(BLDSRC)\dump-id.c : $(BLDLIB_SRC)/make-dump-id.exe $(TEMACS_OBJS) | |
1376 cd $(BLDSRC) | |
1377 $(BLDLIB_SRC)\make-dump-id.exe | |
1378 | |
1379 $(OUTDIR)\temacs.res: $(NT)\xemacs.rc | |
1380 cd $(NT) | |
1381 rc -Fo$@ xemacs.rc | |
1382 | |
1346 | 1383 ## (2) Link the XEmacs executable |
1384 | |
1330 | 1385 !if $(USE_PORTABLE_DUMPER) |
1386 TEMACS_DUMP_DEP = $(OUTDIR)\dump-id.obj | |
1387 !else | |
1388 TEMACS_DUMP_DEP = $(OUTDIR)\temacs.res | |
1389 !endif | |
1390 | |
1391 $(RAW_EXE): $(TEMACS_OBJS) $(LASTFILE) $(TEMACS_DUMP_DEP) | |
4413
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
1392 # Command line too long for some Windows installation: |
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
1393 # @echo link $(TEMACS_LFLAGS) -out:$@ $(TEMACS_OBJS) $(TEMACS_DUMP_DEP) $(TEMACS_LIBS) |
1330 | 1394 link.exe @<< |
1395 $(TEMACS_LFLAGS) -out:$@ $(TEMACS_OBJS) $(TEMACS_DUMP_DEP) $(TEMACS_LIBS) | |
1396 << | |
1397 | |
1398 !if $(DEBUG_XEMACS) | |
1399 $(RAW_EXE): $(TEMACS_BROWSE) | |
1400 !endif | |
1401 | |
1346 | 1402 ## (3) Update the .elc's needed for dumping |
1403 | |
1404 update-elc: $(RAW_EXE) | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1405 set PATH=$(OPT_PATH)$(PATH) |
1346 | 1406 $(TEMACS_BATCH) -l $(LISP)\update-elc.el |
1407 | |
1408 ## This file is touched by update-elc.el when redumping is necessary. | |
1409 $(BLDSRC)\NEEDTODUMP: | |
1410 @echo >$(BLDSRC)\NEEDTODUMP | |
1411 | |
1412 ## (4) Build the DOC file | |
1330 | 1413 |
1414 DOC=$(BLDLIB_SRC)\DOC | |
1415 | |
1416 docfile :: | |
1417 if exist $(DOC) $(DEL) $(DOC) | |
1418 docfile :: $(DOC) | |
1419 | |
1420 # We need to write the QUICK_BUILD stuff as-is (and not just have no | |
2951 | 1421 # dependencies for DOC) because DOC needs TEMACS_DOC_SOURCES as dependencies to |
1330 | 1422 # get $(**) right. The `touch' is needed because of the way nmake |
1423 # calculates dependencies; see comments in src/Makefile.in.in. | |
2951 | 1424 $(DOC): $(BLDLIB_SRC)\make-docfile.exe $(BLDSRC)\NEEDTODUMP $(TEMACS_DOC_SOURCES) |
1330 | 1425 !if $(QUICK_BUILD) |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1426 if not exist $(DOC) ( |
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1427 set PATH=$(OPT_PATH)$(PATH) |
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1428 $(TEMACS_BATCH) -l $(LISP)\make-docfile.el -- -o $(DOC) -i $(SRCROOT)\site-packages @<< |
1330 | 1429 $(**) |
1430 << | |
1431 -touch $(DOC) | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1432 ) |
1330 | 1433 !else |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1434 set PATH=$(OPT_PATH)$(PATH) |
1330 | 1435 $(TEMACS_BATCH) -l $(LISP)\make-docfile.el -- -o $(DOC) -i $(SRCROOT)\site-packages @<< |
1436 $(**) | |
1437 << | |
1438 !endif | |
1439 | |
1346 | 1440 ## (5) Dump |
1330 | 1441 |
1442 !if $(USE_PORTABLE_DUMPER) | |
1443 $(DUMP_TARGET): $(NT)\xemacs.rc | |
1444 !endif | |
1445 | |
1446 # This rule dumps xemacs and then possibly spawns sub-make if PURESPACE | |
1447 # requirements have changed. | |
1448 | |
1449 $(DUMP_TARGET): $(DOC) $(RAW_EXE) $(BLDSRC)\NEEDTODUMP | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1450 set PATH=$(OPT_PATH)$(PATH) |
1330 | 1451 $(TEMACS_BATCH) -l $(LISP)\loadup.el dump |
1452 !if $(USE_PORTABLE_DUMPER) | |
1453 cd $(BLDSRC) | |
1454 rc -d INCLUDE_DUMP -Fo $(OUTDIR)\xemacs.res $(NT)\xemacs.rc | |
1455 # Make the resource section read/write since almost all of it is the dump | |
1456 # data which needs to be writable. This avoids having to copy it. | |
1457 link.exe @<< | |
2524 | 1458 $(XEMACS_LFLAGS) -section:.rsrc,rw -out:$(BLDSRC)\xemacs.exe $(TEMACS_OBJS) $(OUTDIR)\xemacs.res $(TEMACS_LIBS) $(OUTDIR)\dump-id.obj |
1330 | 1459 << |
1460 -$(DEL) $(BLDSRC)\xemacs.dmp | |
4603
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1461 # If we're using Visual Studio 2005 or greater, |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1462 # embed the manifest into the executable. |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1463 !if $(MSC_VER) >= 1400 |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1464 @if exist $@.manifest mt -manifest $@.manifest -outputresource:$@;1 |
4603
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1465 !endif |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
1466 |
1330 | 1467 !endif |
1468 | |
1346 | 1469 ## (6) Update the remaining .elc's, post-dumping |
1470 | |
1471 update-elc-2: $(DUMP_TARGET) | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1472 set PATH=$(OPT_PATH)$(PATH) |
1330 | 1473 $(XEMACS_BATCH) -no-autoloads -l update-elc-2.el -f batch-update-elc-2 $(LISP) |
1474 | |
1346 | 1475 ## (7) Other random stuff |
1476 | |
1477 $(LISP)/finder-inf.el: update-elc-2 | |
1330 | 1478 !if !$(QUICK_BUILD) |
1479 @echo Building finder database ... | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1480 set PATH=$(OPT_PATH)$(PATH) |
1330 | 1481 $(XEMACS_BATCH) -eval "(setq finder-compile-keywords-quiet t)" \ |
1482 -l finder -f finder-compile-keywords | |
1483 @echo Building finder database ...(done) | |
1484 !endif | |
1485 | |
1346 | 1486 load-shadows: update-elc-2 |
1330 | 1487 !if !$(QUICK_BUILD) |
1488 @echo Testing for Lisp shadows ... | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1489 set PATH=$(OPT_PATH)$(PATH) |
1330 | 1490 @$(XEMACS_BATCH) -f list-load-path-shadows |
1491 !endif | |
1492 | |
2948 | 1493 ###################### Building the info files |
1494 | |
1495 !if !defined(MAKEINFO) | |
1496 MAKEINFO=$(XEMACS_BATCH_PACKAGES) -l texinfmt -f batch-texinfo-format | |
1497 !endif | |
1498 | |
1499 MANDIR = $(SRCROOT)\man | |
1500 INFODIR = $(SRCROOT)\info | |
1501 INFO_FILES= \ | |
4225 | 1502 $(INFODIR)\beta.info \ |
2948 | 1503 $(INFODIR)\cl.info \ |
1504 $(INFODIR)\emodules.info \ | |
1505 $(INFODIR)\external-widget.info \ | |
1506 $(INFODIR)\info.info \ | |
4225 | 1507 $(INFODIR)\internals.info \ |
1508 $(INFODIR)\lispref.info \ | |
1509 $(INFODIR)\new-users-guide.info \ | |
2948 | 1510 $(INFODIR)\standards.info \ |
1511 $(INFODIR)\termcap.info \ | |
1512 $(INFODIR)\widget.info \ | |
1513 $(INFODIR)\xemacs-faq.info \ | |
4225 | 1514 $(INFODIR)\xemacs.info |
2948 | 1515 |
1516 {$(MANDIR)}.texi{$(INFODIR)}.info: | |
1517 cd $(MANDIR) | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1518 set PATH=$(OPT_PATH)$(PATH) |
2948 | 1519 $(MAKEINFO) $(**F) |
1520 | |
1521 XEMACS_SRCS = \ | |
1522 $(MANDIR)\xemacs\abbrevs.texi \ | |
1523 $(MANDIR)\xemacs\basic.texi \ | |
1524 $(MANDIR)\xemacs\buffers.texi \ | |
1525 $(MANDIR)\xemacs\building.texi \ | |
1526 $(MANDIR)\xemacs\calendar.texi \ | |
1527 $(MANDIR)\xemacs\cmdargs.texi \ | |
1528 $(MANDIR)\xemacs\custom.texi \ | |
1529 $(MANDIR)\xemacs\display.texi \ | |
1530 $(MANDIR)\xemacs\entering.texi \ | |
1531 $(MANDIR)\xemacs\files.texi \ | |
1532 $(MANDIR)\xemacs\fixit.texi \ | |
1533 $(MANDIR)\xemacs\frame.texi \ | |
1534 $(MANDIR)\xemacs\glossary.texi \ | |
1535 $(MANDIR)\xemacs\gnu.texi \ | |
1536 $(MANDIR)\xemacs\help.texi \ | |
1537 $(MANDIR)\xemacs\indent.texi \ | |
1538 $(MANDIR)\xemacs\keystrokes.texi \ | |
1539 $(MANDIR)\xemacs\killing.texi \ | |
1540 $(MANDIR)\xemacs\m-x.texi \ | |
1541 $(MANDIR)\xemacs\major.texi \ | |
1542 $(MANDIR)\xemacs\mark.texi \ | |
1543 $(MANDIR)\xemacs\menus.texi \ | |
1544 $(MANDIR)\xemacs\mini.texi \ | |
1545 $(MANDIR)\xemacs\misc.texi \ | |
1546 $(MANDIR)\xemacs\mouse.texi \ | |
1547 $(MANDIR)\xemacs\mule.texi \ | |
1548 $(MANDIR)\xemacs\new.texi \ | |
1549 $(MANDIR)\xemacs\packages.texi \ | |
1550 $(MANDIR)\xemacs\picture.texi \ | |
1551 $(MANDIR)\xemacs\programs.texi \ | |
1552 $(MANDIR)\xemacs\reading.texi \ | |
1553 $(MANDIR)\xemacs\regs.texi \ | |
1554 $(MANDIR)\xemacs\search.texi \ | |
1555 $(MANDIR)\xemacs\sending.texi \ | |
1556 $(MANDIR)\xemacs\startup.texi \ | |
1557 $(MANDIR)\xemacs\text.texi \ | |
1558 $(MANDIR)\xemacs\trouble.texi \ | |
1559 $(MANDIR)\xemacs\undo.texi \ | |
1560 $(MANDIR)\xemacs\windows.texi \ | |
1561 $(MANDIR)\xemacs\xemacs.texi | |
1562 | |
1563 LISPREF_SRCS = \ | |
1564 $(MANDIR)\lispref\abbrevs.texi \ | |
1565 $(MANDIR)\lispref\annotations.texi \ | |
1566 $(MANDIR)\lispref\back.texi \ | |
1567 $(MANDIR)\lispref\backups.texi \ | |
1568 $(MANDIR)\lispref\buffers.texi \ | |
1569 $(MANDIR)\lispref\building.texi \ | |
1570 $(MANDIR)\lispref\commands.texi \ | |
1571 $(MANDIR)\lispref\compile.texi \ | |
1572 $(MANDIR)\lispref\consoles-devices.texi \ | |
1573 $(MANDIR)\lispref\control.texi \ | |
1574 $(MANDIR)\lispref\customize.texi \ | |
1575 $(MANDIR)\lispref\databases.texi \ | |
1576 $(MANDIR)\lispref\debugging.texi \ | |
1577 $(MANDIR)\lispref\dialog.texi \ | |
1578 $(MANDIR)\lispref\display.texi \ | |
1579 $(MANDIR)\lispref\dragndrop.texi \ | |
1580 $(MANDIR)\lispref\edebug-inc.texi \ | |
1581 $(MANDIR)\lispref\edebug.texi \ | |
1582 $(MANDIR)\lispref\errors.texi \ | |
1583 $(MANDIR)\lispref\eval.texi \ | |
1584 $(MANDIR)\lispref\extents.texi \ | |
1585 $(MANDIR)\lispref\faces.texi \ | |
1586 $(MANDIR)\lispref\files.texi \ | |
1587 $(MANDIR)\lispref\frames.texi \ | |
1588 $(MANDIR)\lispref\functions.texi \ | |
1589 $(MANDIR)\lispref\glyphs.texi \ | |
1590 $(MANDIR)\lispref\hash-tables.texi \ | |
1591 $(MANDIR)\lispref\help.texi \ | |
1592 $(MANDIR)\lispref\hooks.texi \ | |
1593 $(MANDIR)\lispref\index.texi \ | |
1594 $(MANDIR)\lispref\internationalization.texi \ | |
1595 $(MANDIR)\lispref\intro.texi \ | |
1596 $(MANDIR)\lispref\keymaps.texi \ | |
1597 $(MANDIR)\lispref\ldap.texi \ | |
1598 $(MANDIR)\lispref\lispref.texi \ | |
1599 $(MANDIR)\lispref\lists.texi \ | |
1600 $(MANDIR)\lispref\loading.texi \ | |
1601 $(MANDIR)\lispref\locals.texi \ | |
1602 $(MANDIR)\lispref\macros.texi \ | |
1603 $(MANDIR)\lispref\maps.texi \ | |
1604 $(MANDIR)\lispref\markers.texi \ | |
1605 $(MANDIR)\lispref\menus.texi \ | |
1606 $(MANDIR)\lispref\minibuf.texi \ | |
1607 $(MANDIR)\lispref\modes.texi \ | |
1608 $(MANDIR)\lispref\mouse.texi \ | |
1609 $(MANDIR)\lispref\mule.texi \ | |
1610 $(MANDIR)\lispref\numbers.texi \ | |
1611 $(MANDIR)\lispref\objects.texi \ | |
1612 $(MANDIR)\lispref\os.texi \ | |
4225 | 1613 $(MANDIR)\lispref\packaging.texi \ |
2948 | 1614 $(MANDIR)\lispref\positions.texi \ |
1615 $(MANDIR)\lispref\processes.texi \ | |
1616 $(MANDIR)\lispref\range-tables.texi \ | |
1617 $(MANDIR)\lispref\scrollbars.texi \ | |
1618 $(MANDIR)\lispref\searching.texi \ | |
1619 $(MANDIR)\lispref\sequences.texi \ | |
1620 $(MANDIR)\lispref\specifiers.texi \ | |
1621 $(MANDIR)\lispref\streams.texi \ | |
1622 $(MANDIR)\lispref\strings.texi \ | |
1623 $(MANDIR)\lispref\symbols.texi \ | |
1624 $(MANDIR)\lispref\syntax.texi \ | |
1625 $(MANDIR)\lispref\text.texi \ | |
1626 $(MANDIR)\lispref\tips.texi \ | |
1627 $(MANDIR)\lispref\toolbar.texi \ | |
1628 $(MANDIR)\lispref\tooltalk.texi \ | |
1629 $(MANDIR)\lispref\variables.texi \ | |
1630 $(MANDIR)\lispref\windows.texi \ | |
1631 $(MANDIR)\lispref\x-windows.texi | |
1632 | |
1633 INTERNALS_SRCS = \ | |
1634 $(MANDIR)\internals\internals.texi | |
1635 | |
1636 NEW_USERS_GUIDE_SRCS = \ | |
1637 $(MANDIR)\new-users-guide\custom1.texi \ | |
1638 $(MANDIR)\new-users-guide\custom2.texi \ | |
1639 $(MANDIR)\new-users-guide\edit.texi \ | |
1640 $(MANDIR)\new-users-guide\enter.texi \ | |
1641 $(MANDIR)\new-users-guide\files.texi \ | |
1642 $(MANDIR)\new-users-guide\help.texi \ | |
1643 $(MANDIR)\new-users-guide\modes.texi \ | |
1644 $(MANDIR)\new-users-guide\new-users-guide.texi \ | |
1645 $(MANDIR)\new-users-guide\region.texi \ | |
1646 $(MANDIR)\new-users-guide\search.texi \ | |
1647 $(MANDIR)\new-users-guide\xmenu.texi | |
1648 | |
1649 $(INFODIR)\xemacs.info: $(XEMACS_SRCS) | |
1650 cd $(MANDIR)\xemacs | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1651 set PATH=$(OPT_PATH)$(PATH) |
2948 | 1652 $(MAKEINFO) xemacs.texi |
1653 | |
1654 $(INFODIR)\lispref.info: $(LISPREF_SRCS) | |
1655 cd $(MANDIR)\lispref | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1656 set PATH=$(OPT_PATH)$(PATH) |
2948 | 1657 $(MAKEINFO) lispref.texi |
1658 | |
1659 $(INFODIR)\internals.info: $(INTERNALS_SRCS) | |
1660 cd $(MANDIR)\internals | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1661 set PATH=$(OPT_PATH)$(PATH) |
2948 | 1662 $(MAKEINFO) internals.texi |
1663 | |
1664 $(INFODIR)\new-users-guide.info: $(NEW_USERS_GUIDE_SRCS) | |
1665 cd $(MANDIR)\new-users-guide | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1666 set PATH=$(OPT_PATH)$(PATH) |
2948 | 1667 $(MAKEINFO) new-users-guide.texi |
1668 | |
1669 info: makeinfo-test $(INFO_FILES) | |
1670 | |
1330 | 1671 ######################################################################### |
2951 | 1672 ## Testing, TAGS, install, clean, etc. ## |
1330 | 1673 ######################################################################### |
1674 | |
1675 ########################### Automated tests | |
428 | 1676 |
1330 | 1677 testdir = ../tests/automated |
5114
85b327aa1b47
Fix "make check" under native windows
Vin Shelton <acs@xemacs.org>
parents:
5087
diff
changeset
|
1678 batch_test_emacs = $(BATCH_PACKAGES) -l test-harness -f batch-test-emacs $(testdir) |
1330 | 1679 |
1680 check: | |
1681 cd $(BLDSRC) | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1682 set PATH=$(OPT_PATH)$(PATH) |
1330 | 1683 $(DO_XEMACS) $(batch_test_emacs) |
1684 | |
1685 check-temacs: | |
1686 cd $(BLDSRC) | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1687 set PATH=$(OPT_PATH)$(PATH) |
1680 | 1688 $(TEMACS_BATCH) $(run_temacs_args) $(batch_test_emacs) |
1330 | 1689 |
1690 check-features: all | |
1691 cd $(BLDSRC) | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1692 set PATH=$(OPT_PATH)$(PATH) |
1330 | 1693 $(XEMACS_BATCH) -l check-features.el |
1694 | |
1695 | |
1696 ########################### Rebuilding TAGS | |
1697 | |
1698 tags: | |
1699 @echo If you do not have a copy of etags around, then do 'make lib-src' first. | |
1700 @echo To make use of the tags file, put the following in your .emacs: | |
1701 @echo (setq tag-table-alist | |
1702 @echo '(("$(SRCROOT:\=\\)\\" . "$(SRCROOT:\=\\)\\"))) | |
1703 cd $(SRCROOT) | |
1704 -$(DEL) TAGS | |
1705 set PATH=lib-src;%PATH% | |
1706 # we need to double ^, but only in one place, because (according to the | |
1707 # nmake manual), a ^ is used to quote certain special characters such as | |
1708 # backslash, but is treated literally within double quotes -- and notice | |
1709 # carefully the occurrences of double quotes in the first line below! | |
1710 etags -a -r "/[ ]*DEF\(VAR\|INE\)_[A-Z_]+[ ]*([ ]*\"\([^^\"]+\)\"/\2/" src\*.c src\*.h lwlib\*.c lwlib\*.h lib-src\*.c lib-src\*.h | |
1711 etags -a -l none -r "/^(def\(var\|un\|alias\|const\|macro\|subst\|struct\|face\|group\|custom\|ine-\(function\|compiler-macro\|[a-z-]+alias\)\)[ ]+'?\([^ ]+\)/\3/" $(LISP)\*.el $(LISP)\mule\*.el | |
1712 | |
1713 ########################### Install the system | |
1714 | |
1715 # use this rule to install the system | |
1716 install: all | |
1717 cd $(NT) | |
2106 | 1718 set COPYCMD=$(COPYCMD) |
1330 | 1719 @echo Installing in $(INSTALL_DIR) ... |
1720 @echo PlaceHolder > PlaceHolder | |
1393 | 1721 @$(COPY) $(SRCROOT)\PROBLEMS "$(INSTALL_DIR)\" |
2537 | 1722 @$(COPY) $(SRCROOT)\README "$(INSTALL_DIR)\" |
1723 @$(COPY) $(SRCROOT)\COPYING "$(INSTALL_DIR)\" | |
1724 @$(COPY) $(SRCROOT)\Installation "$(INSTALL_DIR)\" | |
1330 | 1725 @$(COPY) PlaceHolder "$(INSTALL_DIR)\lock\" |
1726 -$(DEL) "$(INSTALL_DIR)\lock\PlaceHolder" | |
2537 | 1727 # @$(COPY) $(BLDLIB_SRC)\*.exe "$(INSTALL_DIR)\lib-src\" |
1728 # @$(COPY) $(BLDLIB_SRC)\DOC "$(INSTALL_DIR)\lib-src\" | |
1729 # @$(COPY) $(CONFIG_VALUES) "$(INSTALL_DIR)\lib-src\" | |
1730 # @$(COPY) $(BLDSRC)\xemacs.exe "$(INSTALL_DIR)\bin\" | |
1330 | 1731 @$(COPY) $(BLDLIB_SRC)\*.exe "$(INSTALL_DIR)\$(EMACS_CONFIGURATION)\" |
1732 @$(COPY) $(BLDLIB_SRC)\DOC "$(INSTALL_DIR)\$(EMACS_CONFIGURATION)" | |
1733 @$(COPY) $(CONFIG_VALUES) "$(INSTALL_DIR)\$(EMACS_CONFIGURATION)" | |
1734 @$(COPY) $(BLDSRC)\xemacs.exe "$(INSTALL_DIR)\$(EMACS_CONFIGURATION)" | |
1657 | 1735 # APA: This is not good enough! It copies all .#* CVS files |
1736 # and the CVS directory too! | |
1330 | 1737 @$(COPYDIR) $(SRCROOT)\etc "$(INSTALL_DIR)\etc\" |
1738 @$(COPYDIR) $(SRCROOT)\info "$(INSTALL_DIR)\info\" | |
1739 @$(COPYDIR) $(SRCROOT)\lisp "$(INSTALL_DIR)\lisp\" | |
3281 | 1740 !if defined(PACKAGE_PREFIX) |
1330 | 1741 @echo Making skeleton package tree in $(PACKAGE_PREFIX) ... |
1742 @$(COPY) PlaceHolder "$(PACKAGE_PREFIX)\site-packages\" | |
1743 -$(DEL) "$(PACKAGE_PREFIX)\site-packages\PlaceHolder" | |
1744 @$(COPY) PlaceHolder "$(PACKAGE_PREFIX)\mule-packages\" | |
1745 -$(DEL) "$(PACKAGE_PREFIX)\mule-packages\PlaceHolder" | |
1746 @$(COPY) PlaceHolder "$(PACKAGE_PREFIX)\xemacs-packages\" | |
1747 -$(DEL) "$(PACKAGE_PREFIX)\xemacs-packages\PlaceHolder" | |
3281 | 1748 !endif |
1330 | 1749 -$(DEL) PlaceHolder |
1750 | |
1751 ########################### clean | |
1752 | |
1753 mostlyclean: | |
1754 -$(DEL) $(BLDROOT)\Installation | |
1755 -$(DEL) $(OUTDIR)\*.lib | |
1756 -$(DEL) $(OUTDIR)\*.obj | |
1757 -$(DEL) $(OUTDIR)\*.pdb | |
2951 | 1758 -$(DEL) $(OUTDIR)\*.idb |
1759 -$(DEL) $(OUTDIR)\*.ilk | |
1330 | 1760 -$(DEL) $(OUTDIR)\*.res |
1761 -$(DEL) $(OUTDIR)\*.sbr | |
1762 -$(DEL) $(BLDSRC)\*.exe | |
1763 -$(DEL) $(BLDSRC)\*.dmp | |
1764 -$(DEL) $(BLDSRC)\*.map | |
1765 -$(DEL) $(BLDSRC)\*.pdb | |
2951 | 1766 -$(DEL) $(BLDSRC)\*.idb |
1767 -$(DEL) $(BLDSRC)\*.ilk | |
1330 | 1768 -$(DEL) $(BLDSRC)\NEEDTODUMP |
1769 -$(DEL) $(BLDSRC)\dump-id.c | |
1770 -$(DEL) $(SRC)\*.bsc | |
1771 -$(DEL) $(BLDLIB_SRC)\*.exe | |
1772 -$(DEL) $(BLDLIB_SRC)\*.obj | |
1773 -$(DEL) $(BLDLIB_SRC)\*.pdb | |
2951 | 1774 -$(DEL) $(BLDLIB_SRC)\*.idb |
1775 -$(DEL) $(BLDLIB_SRC)\*.ilk | |
1330 | 1776 -$(DEL) $(BLDLIB_SRC)\*.res |
1777 | |
1778 versionclean: | |
1779 -$(DEL) $(BLDSRC)\xemacs.exe | |
1780 -$(DEL) $(BLDLIB_SRC)\DOC | |
1781 | |
1782 clean: mostlyclean versionclean | |
1783 -$(DEL) $(SRCROOT)\TAGS | |
1784 -$(DEL) $(LISP)\auto-autoloads.el* | |
1785 -$(DEL) $(LISP)\mule\auto-autoloads.el* | |
1786 -$(DEL) $(LISP)\custom-load.el* | |
1787 -$(DEL) $(LISP)\mule\custom-load.el* | |
1788 | |
1789 nicenclean: clean | |
1790 -$(DEL) $(NT)\*.bak | |
1791 -$(DEL) $(NT)\*.orig | |
1792 -$(DEL) $(NT)\*.rej | |
1793 -$(DEL) $(NT)\*.tmp | |
1794 -$(DEL) $(LIB_SRC)\*.bak | |
1795 -$(DEL) $(LIB_SRC)\*.orig | |
1796 -$(DEL) $(LIB_SRC)\*.rej | |
1797 -$(DEL) $(LIB_SRC)\*.tmp | |
1798 -$(DEL) $(SRC)\*.bak | |
1799 -$(DEL) $(SRC)\*.orig | |
1800 -$(DEL) $(SRC)\*.rej | |
1801 -$(DEL) $(SRC)\*.tmp | |
1802 -$(DEL) $(LISP)\*.bak | |
1803 -$(DEL) $(LISP)\*.orig | |
1804 -$(DEL) $(LISP)\*.rej | |
1805 -$(DEL) $(LISP)\*.tmp | |
1806 | |
1807 # Convenience target. | |
1808 # Reproducing the configuration is just a matter of copying, and if | |
1809 # we use the same directory for Cygwin builds these must go. We don't | |
1810 # want to use distclean. | |
1811 configclean: | |
1812 -$(DEL) $(SRC)\config.h | |
1813 -$(DEL) $(SRC)\paths.h | |
1814 -$(DEL) $(SRC)\Emacs.ad.h | |
1815 | |
1816 ## This is used in making a distribution. | |
1817 ## Do not use it on development directories! | |
1818 distclean: nicenclean configclean | |
1819 -$(DEL) $(BLDLIB_SRC)\$(CONFIG_VALUES) | |
1820 -$(DEL) $(INFODIR)\*.info* | |
1821 -$(DEL) $(LISP)\*.elc | |
1822 -$(DEL) $(LISP)\mule\*.elc | |
1823 -$(DEL) $(LISP)\term\*.elc | |
1824 | |
1825 realclean: distclean | |
1826 | |
1827 #not sure about those wildcards. DOS wildcards are stupid compared to Unix, | |
1828 #and could end up deleting *everything* instead of just backup files or | |
1829 #whatever. So just leave it at "realclean" | |
1830 extraclean: realclean | |
1831 # -$(DEL) *~ | |
1832 # -$(DEL) *.*~ | |
1833 # -$(DEL) #* | |
1834 # -$(DEL) m\*~ | |
1835 # -$(DEL) m\#* | |
1836 # -$(DEL) s\*~ | |
1837 # -$(DEL) s\#* | |
1838 | |
1839 ########################### Rebuild source dependency file | |
1840 | |
1841 depend: | |
1842 cd $(SRC) | |
1843 perl ./make-src-depend > depend.tmp | |
1844 perl -MFile::Compare -e "compare('depend.tmp', 'depend') && rename('depend.tmp', 'depend') or unlink('depend.tmp')" | |
1845 | |
1846 ########################### Redo Unicode-Encapsulation | |
1847 | |
1848 unicode-encapsulate: | |
1849 cd $(SRC) | |
1850 perl ../lib-src/make-mswin-unicode.pl --c-output intl-auto-encap-win32.c --h-output intl-auto-encap-win32.h intl-encap-win32.c | |
1851 | |
1657 | 1852 makeinfo-test: $(DUMP_TARGET) |
1853 @<<makeinfo_test.bat | |
1854 @echo off | |
1855 @"$(MAKEINFO)" --version | |
1856 @if not errorlevel 1 goto test_done | |
5927
b58b74274fa2
changes from long ago, never committed...
Henry Thompson <ht@markup.co.uk>
parents:
5827
diff
changeset
|
1857 @set PATH=$(OPT_PATH)$(PATH) |
1657 | 1858 @$(XEMACS_BATCH_PACKAGES) -eval "(condition-case nil (require (quote texinfo)) (t (kill-emacs 1)))" |
1859 @if not errorlevel 1 goto suggest_makeinfo | |
1860 @echo XEmacs 'info' cannot be built! | |
1861 @echo Install XEmacs package 'texinfo' (see README.packages). | |
1862 :suggest_makeinfo | |
1863 @echo Consider specifying path to 'makeinfo' in config.inc. | |
1864 @echo as this will build the info docs much faster than XEmacs using 'texinfo'. | |
1865 @if errorlevel 1 exit 1 | |
1866 :test_done | |
1867 <<NOKEEP |