XEmacs 21.4.7 "Economic Science".
[chise/xemacs-chise.git.1] / nt / xemacs.mak
1 #   Makefile for Microsoft NMAKE
2 #   Copyright (C) 1995 Board of Trustees, University of Illinois.
3 #   Copyright (C) 1995, 1996, 2000 Ben Wing.
4 #   Copyright (C) 1995 Sun Microsystems, Inc.
5 #   Copyright (C) 1998 Free Software Foundation, Inc.
6 #
7 # This file is part of XEmacs.
8 #
9 # XEmacs is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by the
11 # Free Software Foundation; either version 2, or (at your option) any
12 # later version.
13 #
14 # XEmacs is distributed in the hope that it will be useful, but WITHOUT
15 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17 # for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with XEmacs; see the file COPYING.  If not, write to
21 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 # Boston, MA 02111-1307, USA.
23 #
24 # Synched up with: Not in FSF.
25 #
26
27 default: all
28
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
36 XEMACS=$(MAKEDIR)\..
37 LISP=$(XEMACS)\lisp
38 LIB_SRC=$(XEMACS)\lib-src
39 MODULES=$(XEMACS)\modules
40 NT=$(XEMACS)\nt
41 OUTDIR=$(NT)\obj
42 SRC=$(XEMACS)\src
43 LWLIB_SRCDIR=$(XEMACS)\lwlib
44 MAKEDIRSTRING=$(MAKEDIR:\=\\)
45 XEMACSDIRSTRING=$(MAKEDIRSTRING:\\nt=)
46
47
48 # Define a variable for the 'del' command to use
49 # N.B. Windows Millenium Edition's ERASE can only handle one target (file or
50 # wildcard) per invocation.  Make sure each use has only one target!
51 DEL=-del
52
53 # Program name and version
54
55 !include "$(XEMACS)\version.sh"
56
57 !include "config.inc"
58
59 !if !defined(INFODOCK)
60 INFODOCK=0
61 !endif
62
63 !if $(INFODOCK)
64 INFODOCK_VERSION_STRING=$(infodock_major_version).$(infodock_minor_version).$(infodock_build_version)
65 PROGRAM_DEFINES=-DINFODOCK                                      \
66         -DPATH_VERSION=\"$(INFODOCK_VERSION_STRING)\"           \
67         -DPATH_PROGNAME=\"infodock\"                            \
68         -DEMACS_PROGNAME=\"infodock\"                           \
69         -DEMACS_VERSION=\"$(INFODOCK_VERSION_STRING)\"          \
70         -DINFODOCK_MAJOR_VERSION=$(infodock_major_version)      \
71         -DINFODOCK_MINOR_VERSION=$(infodock_minor_version)      \
72         -DINFODOCK_BUILD_VERSION=$(infodock_build_version)
73 !else
74 XEMACS_VERSION_STRING=$(emacs_major_version).$(emacs_minor_version)
75 !if "$(emacs_beta_version)" != ""
76 !if "$(emacs_is_beta)" != ""
77 XEMACS_VERSION_STRING=$(XEMACS_VERSION_STRING)-b$(emacs_beta_version)
78 !else
79 XEMACS_VERSION_STRING=$(XEMACS_VERSION_STRING).$(emacs_beta_version)
80 !endif
81 !endif
82 PROGRAM_DEFINES=                                                \
83         -DPATH_VERSION=\"$(XEMACS_VERSION_STRING)\"             \
84         -DPATH_PROGNAME=\"xemacs\"                              \
85         -DEMACS_VERSION=\"$(XEMACS_VERSION_STRING)\"            \
86         -DEMACS_PROGNAME=\"xemacs\"
87 !endif
88
89 #
90 # Command line options defaults
91 #
92 !if !defined(INSTALL_DIR)
93 ! if $(INFODOCK)
94 INSTALL_DIR=c:\Program Files\Infodock\Infodock-$(INFODOCK_VERSION_STRING)
95 ! else
96 INSTALL_DIR=c:\Program Files\XEmacs\XEmacs-$(XEMACS_VERSION_STRING)
97 ! endif
98 !endif
99 !if !defined(HAVE_MULE)
100 HAVE_MULE=0
101 !endif
102 !if !defined(PACKAGE_PATH)
103 ! if !defined(PACKAGE_PREFIX)
104 PACKAGE_PREFIX=c:\Program Files\XEmacs
105 ! endif
106 ! if $(HAVE_MULE)
107 PACKAGE_PATH=~\.xemacs;;$(PACKAGE_PREFIX)\site-packages;$(PACKAGE_PREFIX)\mule-packages;$(PACKAGE_PREFIX)\xemacs-packages
108 ! else
109 PACKAGE_PATH=~\.xemacs;;$(PACKAGE_PREFIX)\site-packages;$(PACKAGE_PREFIX)\xemacs-packages
110 ! endif
111 !endif
112 PATH_PACKAGEPATH="$(PACKAGE_PATH:\=\\)"
113 !if !defined(HAVE_MS_WINDOWS)
114 HAVE_MS_WINDOWS=1
115 !endif
116 !if !defined(HAVE_X_WINDOWS)
117 HAVE_X_WINDOWS=0
118 !endif
119 !if !defined(HAVE_XPM)
120 HAVE_XPM=0
121 !endif
122 !if !defined(HAVE_PNG)
123 HAVE_PNG=0
124 !endif
125 !if !defined(HAVE_ZLIB)
126 HAVE_ZLIB=$(HAVE_PNG)
127 !endif
128 !if !defined(HAVE_TIFF)
129 HAVE_TIFF=0
130 !endif
131 !if !defined(HAVE_JPEG)
132 HAVE_JPEG=0
133 !endif
134 !if !defined(HAVE_XFACE)
135 HAVE_XFACE=0
136 !endif
137 !if !defined(HAVE_GIF)
138 HAVE_GIF=1
139 !endif
140 !if !defined(HAVE_GTK)
141 HAVE_GTK=0
142 !endif
143 !if !defined(HAVE_TOOLBARS)
144 HAVE_TOOLBARS=$(HAVE_XPM)
145 !endif
146 !if !defined(HAVE_DIALOGS)
147 HAVE_DIALOGS=1
148 !endif
149 !if !defined(HAVE_MSW_C_DIRED)
150 HAVE_MSW_C_DIRED=1
151 !endif
152 !if !defined(HAVE_NATIVE_SOUND)
153 HAVE_NATIVE_SOUND=1
154 !endif
155 !if !defined(HAVE_WIDGETS)
156 HAVE_WIDGETS=1
157 !endif
158 !if !defined(DEBUG_XEMACS)
159 DEBUG_XEMACS=0
160 !endif
161 !if !defined(QUICK_BUILD)
162 QUICK_BUILD=0
163 !endif
164 !if !defined(USE_UNION_TYPE)
165 USE_UNION_TYPE=0
166 !endif
167 !if !defined(USE_MINITAR)
168 USE_MINITAR=$(HAVE_ZLIB)
169 !endif
170 !if !defined(USE_MINIMAL_TAGBITS)
171 USE_MINIMAL_TAGBITS=0
172 !endif
173 !if !defined(USE_INDEXED_LRECORD_IMPLEMENTATION)
174 USE_INDEXED_LRECORD_IMPLEMENTATION=0
175 !endif
176 !if !defined(USE_PORTABLE_DUMPER)
177 USE_PORTABLE_DUMPER=0
178 !endif
179 !if !defined(GUNG_HO)
180 GUNG_HO=0
181 !endif
182
183 # A little bit of adhockery. Default to use system malloc and
184 # DLL version of the C runtime library when using portable
185 # dumping. These are the optimal settings.
186 !if !defined(USE_SYSTEM_MALLOC)
187 USE_SYSTEM_MALLOC=$(USE_PORTABLE_DUMPER)
188 !endif
189 !if !defined(USE_CRTDLL)
190 USE_CRTDLL=$(USE_PORTABLE_DUMPER)
191 !endif
192
193 #
194 # System configuration
195 #
196 !if !defined(OS)
197 OS=Windows_95/98
198 EMACS_CONFIGURATION=i586-pc-win32
199 !else if "$(PROCESSOR_ARCHITECTURE)" == "x86"
200 EMACS_CONFIGURATION=i586-pc-win32
201 !else if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
202 EMACS_CONFIGURATION=mips-pc-win32
203 !else if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
204 EMACS_CONFIGURATION=alpha-pc-win32
205 !else if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
206 EMACS_CONFIGURATION=ppc-pc-win32
207 !else
208 ! error Unknown processor architecture type $(PROCESSOR_ARCHITECTURE)
209 !endif
210 STACK_TRACE_EYE_CATCHER=$(XEMACS_VERSION_STRING:.=_)
211 STACK_TRACE_EYE_CATCHER=xemacs_$(STACK_TRACE_EYE_CATCHER:-=_)_$(EMACS_CONFIGURATION:-=_)
212 PROGRAM_DEFINES=$(PROGRAM_DEFINES) -DSTACK_TRACE_EYE_CATCHER=$(STACK_TRACE_EYE_CATCHER)
213
214 #
215 # Conf error checks
216 #
217 CONFIG_ERROR=0
218 !if $(INFODOCK) && !exist("..\..\Infodock.rules")
219 !message Cannot build InfoDock without InfoDock sources
220 CONFIG_ERROR=1
221 !endif
222 !if !$(USE_PORTABLE_DUMPER) && $(USE_SYSTEM_MALLOC)
223 !message Cannot use system allocator when dumping old way, use portable dumper.
224 CONFIG_ERROR=1
225 !endif
226 !if !$(USE_PORTABLE_DUMPER) && $(USE_CRTDLL)
227 !message Cannot use C runtime DLL when dumping old way, use portable dumper.
228 CONFIG_ERROR=1
229 !endif
230 !if !$(USE_SYSTEM_MALLOC) && $(USE_CRTDLL)
231 !message GNU malloc currently cannot be used with CRT DLL.
232 !message [[[Developer note: If you want to fix it, read Q112297 first]]]  ####
233 CONFIG_ERROR=1
234 !endif
235 !if !$(HAVE_MS_WINDOWS) && !$(HAVE_X_WINDOWS)
236 !message Please specify at least one HAVE_MS_WINDOWS=1 and/or HAVE_X_WINDOWS=1
237 CONFIG_ERROR=1
238 !endif
239 !if $(HAVE_X_WINDOWS) && !defined(X11_DIR)
240 !message Please specify root directory for your X11 installation: X11_DIR=path
241 CONFIG_ERROR=1
242 !endif
243 !if $(HAVE_X_WINDOWS) && defined(X11_DIR) && !exist("$(X11_DIR)\LIB\X11.LIB")
244 !message Specified X11 directory does not contain "$(X11_DIR)\LIB\X11.LIB"
245 CONFIG_ERROR=1
246 !endif
247 !if $(HAVE_MS_WINDOWS) && $(HAVE_GTK) && !defined(GTK_DIR)
248 !message Please specify root directory for your GTK installation: GTK_DIR=path
249 CONFIG_ERROR=1
250 !endif
251 !if $(HAVE_MS_WINDOWS) && $(HAVE_XPM) && !defined(XPM_DIR)
252 !message Please specify root directory for your XPM installation: XPM_DIR=path
253 CONFIG_ERROR=1
254 !endif
255 !if $(HAVE_MS_WINDOWS) && $(HAVE_XPM) && defined(XPM_DIR) && !exist("$(XPM_DIR)\lib\Xpm.lib")
256 !message Specified XPM directory does not contain "$(XPM_DIR)\lib\Xpm.lib"
257 CONFIG_ERROR=1
258 !endif
259 !if $(HAVE_MS_WINDOWS) && $(HAVE_PNG) && !defined(PNG_DIR)
260 !message Please specify root directory for your PNG installation: PNG_DIR=path
261 CONFIG_ERROR=1
262 !endif
263 !if $(HAVE_MS_WINDOWS) && $(HAVE_PNG) && defined(PNG_DIR) && !exist("$(PNG_DIR)\libpng.lib")
264 !message Specified PNG directory does not contain "$(PNG_DIR)\libpng.lib"
265 CONFIG_ERROR=1
266 !endif
267 !if $(HAVE_MS_WINDOWS) && $(HAVE_PNG) && !defined(ZLIB_DIR)
268 !message Please specify root directory for your ZLIB installation: ZLIB_DIR=path
269 CONFIG_ERROR=1
270 !endif
271 !if $(HAVE_MS_WINDOWS) && $(HAVE_PNG) && defined(ZLIB_DIR) && !exist("$(ZLIB_DIR)\zlib.lib")
272 !message Specified ZLIB directory does not contain "$(ZLIB_DIR)\zlib.lib"
273 CONFIG_ERROR=1
274 !endif
275 !if $(HAVE_MS_WINDOWS) && $(HAVE_TIFF) && !defined(TIFF_DIR)
276 !message Please specify root directory for your TIFF installation: TIFF_DIR=path
277 CONFIG_ERROR=1
278 !endif
279 !if $(HAVE_MS_WINDOWS) && $(HAVE_TIFF) && !exist("$(TIFF_DIR)\libtiff\libtiff.lib")
280 !message Specified TIFF directory does not contain "$(TIFF_DIR)\libtiff\libtiff.lib"
281 CONFIG_ERROR=1
282 !endif
283 !if $(HAVE_MS_WINDOWS) && $(HAVE_JPEG) && !defined(JPEG_DIR)
284 !message Please specify root directory for your JPEG installation: JPEG_DIR=path
285 CONFIG_ERROR=1
286 !endif
287 !if $(HAVE_MS_WINDOWS) && $(HAVE_JPEG) && !exist("$(JPEG_DIR)\libjpeg.lib")
288 !message Specified JPEG directory does not contain "$(JPEG_DIR)\libjpeg.lib"
289 CONFIG_ERROR=1
290 !endif
291 !if $(HAVE_MS_WINDOWS) && $(HAVE_XFACE) && !defined(COMPFACE_DIR)
292 !message Please specify root directory for your COMPFACE installation: COMPFACE_DIR=path
293 CONFIG_ERROR=1
294 !endif
295 !if $(HAVE_MS_WINDOWS) && $(HAVE_XFACE) && !exist("$(COMPFACE_DIR)\libcompface.lib")
296 !message Specified COMPFACE directory does not contain "$(COMPFACE_DIR)\libcompface.lib"
297 CONFIG_ERROR=1
298 !endif
299 !if $(HAVE_MS_WINDOWS) && $(HAVE_TOOLBARS) && !$(HAVE_XPM)
300 !message Toolbars require XPM support
301 CONFIG_ERROR=1
302 !endif
303 !if $(CONFIG_ERROR)
304 !error Configuration error(s) found
305 !endif
306
307 #
308 # Handle GUNG_HO
309 #
310 !if defined(GUNG_HO)
311 USE_MINIMAL_TAGBITS=$(GUNG_HO)
312 USE_INDEXED_LRECORD_IMPLEMENTATION=$(GUNG_HO)
313 !endif
314
315 #
316 # Whether to use dependency information generated by make-src-depend
317 #
318 !if !defined(DEPEND)
319 DEPEND=0
320 !endif
321 !if $(DEPEND)
322 ! if [if not exist $(OUTDIR)\nul mkdir "$(OUTDIR)"]
323 ! endif
324 # generate an nmake-readable version of depend
325 # #### here, it doesn't seem to matter if we double ^'s!
326 # results are the same with all single ^ and all double ^^!
327 # see comment below.
328 # #### Yuuuuuuuuuuck!!!  Cygwin is too smart for its own good.  If we are
329 # being run from within Cygwin, a Cygwin Perl seems to require twice as
330 # much backslash quoting.  This does not happen, of course, with a non-
331 # Cygwin Perl, so in that circumstance, you'd be screwed and would have
332 # to fix this Makefile to not have a special Cygwin case.
333 ! if defined(_) || [perl -e "exit 1 if $$^O == 'cygwin';"]==1
334 !  if [perl -p -e "s/^\\x23if defined(.+)/!if defined$$1/; s/^\\x23e/!e/;" \
335         -e "s/([\\s=^])([\\w\\d\\.\\-^]+\\.[ch^])/$$1$(SRC:\=\\\\)\\\\$$2/g;" \
336         -e "s/^(.+)\\.o:(.+)/$(OUTDIR:\=\\\\)\\\\$$1.obj:$$2/;" \
337         < $(SRC)\depend > $(OUTDIR)\depend.tmp]
338 !  endif
339 ! else
340 !  if [perl -p -e "s/^\x23if defined(.+)/!if defined$$1/; s/^\x23e/!e/;" \
341         -e "s/([\s=^])([\w\d\.\-^]+\.[ch^])/$$1$(SRC:\=\\)\\$$2/g;" \
342         -e "s/^(.+)\.o:(.+)/$(OUTDIR:\=\\)\\$$1.obj:$$2/;" \
343         < $(SRC)\depend > $(OUTDIR)\depend.tmp]
344 !  endif
345 ! endif
346 ! include "$(OUTDIR)\depend.tmp"
347 !else
348 ! if [echo   WARNING: Compiling without dependency information.]
349 ! endif
350 !endif
351
352 #
353 # Compiler command echo control. Define VERBOSECC=1 to get verbose compilation.
354 #
355 !if !defined(VERBOSECC)
356 VERBOSECC=0
357 !endif
358 !if $(VERBOSECC)
359 CCV=$(CC)
360 !else
361 CCV=@$(CC)
362 !endif
363
364 !if $(DEBUG_XEMACS)
365 OPT=-Od -Zi
366 !else
367 OPT=-O2 -G5
368 !endif
369
370 !if $(USE_CRTDLL)
371 !if $(DEBUG_XEMACS)
372 C_LIBFLAG=-MDd
373 LIBC_LIB=msvcrtd.lib
374 !else
375 C_LIBFLAG=-MD
376 LIBC_LIB=msvcrt.lib
377 !endif
378 !else
379 C_LIBFLAG=-ML
380 LIBC_LIB=libc.lib
381 !endif
382
383 CFLAGS=-nologo -W3 $(OPT) $(C_LIBFLAG)
384
385 !if $(HAVE_X_WINDOWS)
386 X_DEFINES=-DHAVE_X_WINDOWS
387 X_INCLUDES=-I$(X11_DIR)\include
388 X_LIBS=-libpath:$(X11_DIR)\lib Xaw.lib Xmu.lib Xt.lib SM.lib ICE.lib Xext.lib X11.lib
389 !endif
390
391 !if $(HAVE_MS_WINDOWS)
392 MSW_DEFINES=-DHAVE_MS_WINDOWS -DHAVE_SCROLLBARS -DHAVE_MENUBARS
393 MSW_INCLUDES=
394 MSW_LIBS=
395 !if $(HAVE_MSW_C_DIRED)
396 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_MSW_C_DIRED
397 MSW_C_DIRED_SRC=$(SRC)\dired-msw.c
398 MSW_C_DIRED_OBJ=$(OUTDIR)\dired-msw.obj
399 !endif
400 !if $(HAVE_XPM)
401 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_XPM -DFOR_MSW
402 MSW_INCLUDES=$(MSW_INCLUDES) -I"$(XPM_DIR)" -I"$(XPM_DIR)\lib"
403 MSW_LIBS=$(MSW_LIBS) "$(XPM_DIR)\lib\Xpm.lib"
404 !endif
405 !if $(HAVE_GIF)
406 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_GIF
407 MSW_GIF_SRC=$(SRC)\dgif_lib.c $(SRC)\gif_io.c
408 MSW_GIF_OBJ=$(OUTDIR)\dgif_lib.obj $(OUTDIR)\gif_io.obj
409 !endif
410 !if $(HAVE_PNG)
411 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_PNG
412 MSW_INCLUDES=$(MSW_INCLUDES) -I"$(PNG_DIR)" -I"$(ZLIB_DIR)"
413 MSW_LIBS=$(MSW_LIBS) "$(PNG_DIR)\libpng.lib" "$(ZLIB_DIR)\zlib.lib"
414 !endif
415 !if $(HAVE_TIFF)
416 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_TIFF
417 MSW_INCLUDES=$(MSW_INCLUDES) -I"$(TIFF_DIR)\libtiff"
418 MSW_LIBS=$(MSW_LIBS) "$(TIFF_DIR)\libtiff\libtiff.lib"
419 !endif
420 !if $(HAVE_JPEG)
421 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_JPEG
422 MSW_INCLUDES=$(MSW_INCLUDES) -I"$(JPEG_DIR)"
423 MSW_LIBS=$(MSW_LIBS) "$(JPEG_DIR)\libjpeg.lib"
424 !endif
425 !if $(HAVE_XFACE)
426 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_XFACE
427 MSW_INCLUDES=$(MSW_INCLUDES) -I"$(COMPFACE_DIR)"
428 MSW_LIBS=$(MSW_LIBS) "$(COMPFACE_DIR)\libcompface.lib"
429 !endif
430 !if $(HAVE_TOOLBARS)
431 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_TOOLBARS
432 MSW_TOOLBAR_SRC=$(SRC)\toolbar.c $(SRC)\toolbar-msw.c
433 MSW_TOOLBAR_OBJ=$(OUTDIR)\toolbar.obj $(OUTDIR)\toolbar-msw.obj
434 !endif
435 !if $(HAVE_DIALOGS)
436 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_DIALOGS
437 MSW_DIALOG_SRC=$(SRC)\dialog.c $(SRC)\dialog-msw.c
438 MSW_DIALOG_OBJ=$(OUTDIR)\dialog.obj $(OUTDIR)\dialog-msw.obj
439 !endif
440 !if $(HAVE_WIDGETS)
441 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_WIDGETS
442 !endif
443 !if $(HAVE_TOOLBARS) || $(HAVE_WIDGETS)
444 MSW_LIBS=$(MSW_LIBS) comctl32.lib
445 !endif
446 !if $(HAVE_NATIVE_SOUND)
447 MSW_DEFINES=$(MSW_DEFINES) -DHAVE_NATIVE_SOUND
448 !endif
449 !endif
450
451 !if $(HAVE_MULE)
452 MULE_DEFINES=-DMULE
453 !endif
454
455 !if $(DEBUG_XEMACS)
456 DEBUG_DEFINES=-DDEBUG_XEMACS -D_DEBUG 
457 DEBUG_FLAGS=-debug:full
458 !endif
459
460 !if $(QUICK_BUILD)
461 QUICK_DEFINES=-DQUICK_BUILD
462 !endif
463
464 !if $(USE_MINIMAL_TAGBITS)
465 TAGBITS_DEFINES=-DUSE_MINIMAL_TAGBITS
466 !endif
467 !if $(USE_INDEXED_LRECORD_IMPLEMENTATION)
468 LRECORD_DEFINES=-DUSE_INDEXED_LRECORD_IMPLEMENTATION
469 !endif
470 !if $(USE_UNION_TYPE)
471 UNION_DEFINES=-DUSE_UNION_TYPE
472 !endif
473
474 !if $(USE_PORTABLE_DUMPER)
475 DUMPER_DEFINES=-DPDUMP
476 !endif
477
478 !if $(USE_SYSTEM_MALLOC)
479 MALLOC_DEFINES=-DSYSTEM_MALLOC
480 !else
481 MALLOC_DEFINES=-DGNU_MALLOC
482 !endif
483
484 # Hard-coded paths
485
486 !if $(INFODOCK)
487 PATH_PREFIX=../..
488 !else
489 PATH_PREFIX=..
490 !endif
491
492 PATH_DEFINES=-DPATH_PREFIX=\"$(PATH_PREFIX)\"
493
494 # Generic variables
495
496 INCLUDES=$(X_INCLUDES) $(MSW_INCLUDES) -I$(NT)\inc -I$(SRC) -I$(LWLIB_SRCDIR)
497
498 DEFINES=$(X_DEFINES) $(MSW_DEFINES) $(MULE_DEFINES) \
499         $(TAGBITS_DEFINES) $(LRECORD_DEFINES) $(UNION_DEFINES) \
500         $(DUMPER_DEFINES) $(MALLOC_DEFINES) $(QUICK_DEFINES) \
501         -DWIN32_LEAN_AND_MEAN -DWIN32_NATIVE -Demacs \
502         -DHAVE_CONFIG_H $(PROGRAM_DEFINES) $(PATH_DEFINES)
503
504 #------------------------------------------------------------------------------
505
506 $(OUTDIR)\nul:
507         -@mkdir $(OUTDIR)
508
509 XEMACS_INCLUDES=\
510  $(SRC)\config.h \
511  $(SRC)\Emacs.ad.h \
512  $(SRC)\paths.h
513
514 # #### Copying is cheap, we should just force these
515 $(SRC)\config.h:        config.h
516         copy config.h $(SRC)
517
518 $(SRC)\Emacs.ad.h:      Emacs.ad.h
519         copy Emacs.ad.h $(SRC)
520
521 $(SRC)\paths.h: paths.h
522         copy paths.h $(SRC)
523
524 #------------------------------------------------------------------------------
525
526 # lib-src programs
527
528 LIB_SRC_DEFINES = -DHAVE_CONFIG_H -DWIN32_NATIVE
529
530 #
531 # Creating config.values to be used by config.el
532 #
533 CONFIG_VALUES = $(LIB_SRC)\config.values
534 !if [echo Creating $(CONFIG_VALUES) && echo ;;; Do not edit this file!>$(CONFIG_VALUES)]
535 !endif
536 # MAKEDIR has to be made into a string.
537 #!if [echo blddir>>$(CONFIG_VALUES) && echo $(ESC)"$(MAKEDIR:\=\\)\\..$(ESC)">>$(CONFIG_VALUES)]
538 !if [echo blddir>>$(CONFIG_VALUES) && echo "$(MAKEDIR:\=\\)\\..">>$(CONFIG_VALUES)]
539 !endif
540 !if [echo CC>>$(CONFIG_VALUES) && echo "$(CC:\=\\)">>$(CONFIG_VALUES)]
541 !endif
542 !if [echo CFLAGS>>$(CONFIG_VALUES) && echo "$(CFLAGS:\=\\)">>$(CONFIG_VALUES)]
543 !endif
544 !if [echo CPP>>$(CONFIG_VALUES) && echo "$(CPP:\=\\)">>$(CONFIG_VALUES)]
545 !endif
546 !if [echo CPPFLAGS>>$(CONFIG_VALUES) && echo "$(CPPFLAGS:\=\\)">>$(CONFIG_VALUES)]
547 !endif
548 !if [echo LISPDIR>>$(CONFIG_VALUES) && echo "$(MAKEDIR:\=\\)\\$(LISP:\=\\)">>$(CONFIG_VALUES)]
549 !endif
550 # PATH_PACKAGEPATH is already a quoted string.
551 !if [echo PACKAGE_PATH>>$(CONFIG_VALUES) && echo $(PATH_PACKAGEPATH)>>$(CONFIG_VALUES)]
552 !endif
553
554 # Inferred rule
555 {$(LIB_SRC)}.c{$(LIB_SRC)}.exe :
556         cd $(LIB_SRC)
557         $(CCV) -I. -I$(XEMACS)/src -I$(XEMACS)/nt/inc $(LIB_SRC_DEFINES) $(CFLAGS) -Fe$@ $** -link -incremental:no setargv.obj
558         cd $(NT)
559
560 # Individual dependencies
561 ETAGS_DEPS = $(LIB_SRC)/getopt.c $(LIB_SRC)/getopt1.c $(LIB_SRC)/../src/regex.c
562 $(LIB_SRC)/etags.exe : $(LIB_SRC)/etags.c $(ETAGS_DEPS)
563 $(LIB_SRC)/movemail.exe: $(LIB_SRC)/movemail.c $(LIB_SRC)/pop.c $(ETAGS_DEPS)
564         cd $(LIB_SRC)
565         $(CCV) -I. -I$(XEMACS)/src -I$(XEMACS)/nt/inc $(LIB_SRC_DEFINES) $(CFLAGS) -Fe$@ $** wsock32.lib -link -incremental:no
566         cd $(NT)
567
568 $(LIB_SRC)/minitar.exe : $(NT)/minitar.c
569         $(CCV) $(CFLAGS) -I$(ZLIB_DIR) -Fe$@ $** $(ZLIB_DIR)\zlib.lib -link -incremental:no
570
571 LIB_SRC_TOOLS = \
572         $(LIB_SRC)/etags.exe            \
573         $(LIB_SRC)/hexl.exe             \
574         $(LIB_SRC)/i.exe                \
575         $(LIB_SRC)/make-docfile.exe     \
576         $(LIB_SRC)/mmencode.exe         \
577         $(LIB_SRC)/movemail.exe         \
578         $(LIB_SRC)/sorted-doc.exe       \
579         $(LIB_SRC)/wakeup.exe
580 !if $(USE_MINITAR)
581 LIB_SRC_TOOLS = \
582         $(LIB_SRC_TOOLS) \
583         $(LIB_SRC)/minitar.exe
584 !endif
585 !if $(USE_PORTABLE_DUMPER)
586 LIB_SRC_TOOLS = \
587         $(XEMACS_INCLUDES) \
588         $(LIB_SRC)/make-dump-id.exe \
589         $(LIB_SRC_TOOLS)
590 !endif
591
592 # Shorthand target
593 minitar: $(LIB_SRC)/minitar.exe
594
595 #------------------------------------------------------------------------------
596
597 # dump-id.c file that contains the dump id
598
599 $(SRC)\dump-id.c : $(LIB_SRC)/make-dump-id.exe 
600         cd $(SRC)
601         $(LIB_SRC)\make-dump-id.exe 
602         cd $(NT)
603
604 #------------------------------------------------------------------------------
605
606 # LASTFILE Library
607
608 !if !$(USE_SYSTEM_MALLOC) || !$(USE_PORTABLE_DUMPER)
609
610 LASTFILE=$(OUTDIR)\lastfile.lib
611 LASTFILE_SRC=$(SRC)
612 LASTFILE_FLAGS=$(CFLAGS) $(INCLUDES) -Fo$@ -Fd$* -c
613 LASTFILE_OBJS= \
614         $(OUTDIR)\lastfile.obj
615
616 $(LASTFILE): $(XEMACS_INCLUDES) $(LASTFILE_OBJS)
617         link.exe -lib -nologo -out:$@ $(LASTFILE_OBJS)
618
619 $(OUTDIR)\lastfile.obj: $(LASTFILE_SRC)\lastfile.c
620          $(CCV) $(LASTFILE_FLAGS) $**
621
622 !endif
623
624 #------------------------------------------------------------------------------
625
626 !if $(HAVE_X_WINDOWS)
627
628 # LWLIB Library
629
630 LWLIB=$(OUTDIR)\lwlib.lib
631 LWLIB_FLAGS=$(CFLAGS) $(INCLUDES) $(DEFINES) \
632  -DNEED_ATHENA -DNEED_LUCID \
633  -D_WINDOWS -DMENUBARS_LUCID -DSCROLLBARS_LUCID -DDIALOGS_ATHENA \
634  -Fo$@ -c
635 LWLIB_OBJS= \
636         $(OUTDIR)\lwlib-config.obj \
637         $(OUTDIR)\lwlib-utils.obj \
638         $(OUTDIR)\lwlib-Xaw.obj \
639         $(OUTDIR)\lwlib-Xlw.obj \
640         $(OUTDIR)\lwlib.obj \
641         $(OUTDIR)\xlwmenu.obj \
642         $(OUTDIR)\xlwscrollbar.obj
643
644 $(LWLIB): $(LWLIB_OBJS)
645         link.exe -lib -nologo -out:$@ $(LWLIB_OBJS)
646
647 $(OUTDIR)\lwlib-config.obj:     $(LWLIB_SRCDIR)\lwlib-config.c
648          $(CCV) $(LWLIB_FLAGS) $**
649
650 $(OUTDIR)\lwlib-utils.obj:      $(LWLIB_SRCDIR)\lwlib-utils.c
651          $(CCV) $(LWLIB_FLAGS) $**
652
653 $(OUTDIR)\lwlib-Xaw.obj:        $(LWLIB_SRCDIR)\lwlib-Xaw.c
654          $(CCV) $(LWLIB_FLAGS) $**
655
656 $(OUTDIR)\lwlib-Xlw.obj:        $(LWLIB_SRCDIR)\lwlib-Xlw.c
657          $(CCV) $(LWLIB_FLAGS) $**
658
659 $(OUTDIR)\lwlib.obj:            $(LWLIB_SRCDIR)\lwlib.c
660          $(CCV) $(LWLIB_FLAGS) $**
661
662 $(OUTDIR)\xlwmenu.obj:          $(LWLIB_SRCDIR)\xlwmenu.c
663          $(CCV) $(LWLIB_FLAGS) $**
664
665 $(OUTDIR)\xlwscrollbar.obj:     $(LWLIB_SRCDIR)\xlwscrollbar.c
666          $(CCV) $(LWLIB_FLAGS) $**
667
668 !endif
669 #------------------------------------------------------------------------------
670
671 DOC=$(LIB_SRC)\DOC
672 DOC_SRC1=\
673  $(SRC)\abbrev.c \
674  $(SRC)\alloc.c \
675  $(SRC)\blocktype.c \
676  $(SRC)\buffer.c \
677  $(SRC)\bytecode.c \
678  $(SRC)\callint.c \
679  $(SRC)\callproc.c \
680  $(SRC)\casefiddle.c \
681  $(SRC)\casetab.c \
682  $(SRC)\chartab.c \
683  $(SRC)\cmdloop.c \
684  $(SRC)\cmds.c \
685  $(SRC)\console-stream.c \
686  $(SRC)\console.c \
687  $(SRC)\data.c \
688  $(SRC)\device.c
689 DOC_SRC2=\
690  $(SRC)\dired.c \
691  $(SRC)\doc.c \
692  $(SRC)\doprnt.c \
693  $(SRC)\dragdrop.c \
694  $(SRC)\dynarr.c \
695  $(SRC)\editfns.c \
696  $(SRC)\elhash.c \
697  $(SRC)\emacs.c \
698  $(SRC)\eval.c \
699  $(SRC)\event-stream.c \
700  $(SRC)\events.c \
701  $(SRC)\extents.c \
702  $(SRC)\faces.c \
703  $(SRC)\file-coding.c \
704  $(SRC)\fileio.c \
705  $(SRC)\filemode.c \
706  $(SRC)\floatfns.c \
707  $(SRC)\fns.c 
708 DOC_SRC3=\
709  $(SRC)\font-lock.c \
710  $(SRC)\frame.c \
711  $(SRC)\general.c \
712  $(SRC)\getloadavg.c \
713  $(SRC)\glyphs.c \
714  $(SRC)\glyphs-eimage.c \
715  $(SRC)\glyphs-widget.c \
716  $(SRC)\gui.c  \
717  $(SRC)\gutter.c \
718  $(SRC)\hash.c \
719  $(SRC)\imgproc.c \
720  $(SRC)\indent.c \
721  $(SRC)\insdel.c \
722  $(SRC)\intl.c \
723  $(SRC)\keymap.c \
724  $(SRC)\line-number.c \
725  $(SRC)\lread.c \
726  $(SRC)\lstream.c \
727  $(SRC)\macros.c \
728  $(SRC)\marker.c
729 DOC_SRC4=\
730  $(SRC)\md5.c \
731  $(SRC)\menubar.c \
732  $(SRC)\minibuf.c \
733  $(SRC)\nt.c \
734  $(SRC)\ntplay.c \
735  $(SRC)\ntproc.c \
736  $(SRC)\objects.c \
737  $(SRC)\opaque.c \
738  $(SRC)\print.c \
739  $(SRC)\process.c \
740  $(SRC)\process-nt.c \
741  $(SRC)\profile.c \
742  $(SRC)\rangetab.c \
743  $(SRC)\realpath.c \
744  $(SRC)\redisplay-output.c \
745  $(SRC)\redisplay.c \
746  $(SRC)\regex.c \
747  $(SRC)\scrollbar.c \
748  $(SRC)\search.c \
749  $(SRC)\select.c \
750  $(SRC)\signal.c \
751  $(SRC)\sound.c 
752 DOC_SRC5=\
753  $(SRC)\specifier.c \
754  $(SRC)\strftime.c \
755  $(SRC)\symbols.c \
756  $(SRC)\syntax.c \
757  $(SRC)\sysdep.c \
758  $(SRC)\termcap.c  \
759  $(SRC)\tparam.c \
760  $(SRC)\undo.c \
761  $(SRC)\window.c \
762  $(SRC)\win32.c \
763  $(SRC)\widget.c
764
765 !if $(HAVE_X_WINDOWS)
766 DOC_SRC6=\
767  $(SRC)\balloon_help.c \
768  $(SRC)\console-x.c \
769  $(SRC)\device-x.c  \
770  $(SRC)\dialog-x.c \
771  $(SRC)\EmacsFrame.c \
772  $(SRC)\EmacsManager.c \
773  $(SRC)\EmacsShell-sub.c\
774  $(SRC)\EmacsShell.c \
775  $(SRC)\event-Xt.c  \
776  $(SRC)\frame-x.c \
777  $(SRC)\glyphs-x.c \
778  $(SRC)\gui-x.c \
779  $(SRC)\menubar.c \
780  $(SRC)\menubar-x.c \
781  $(SRC)\objects-x.c \
782  $(SRC)\redisplay-x.c \
783  $(SRC)\scrollbar-x.c \
784  $(SRC)\balloon-x.c \
785  $(SRC)\xgccache.c \
786  $(SRC)\xmu.c \
787  $(SRC)\select-x.c 
788 !endif
789
790 !if $(HAVE_MS_WINDOWS)
791 DOC_SRC7=\
792  $(SRC)\console-msw.c \
793  $(SRC)\device-msw.c  \
794  $(SRC)\event-msw.c  \
795  $(SRC)\frame-msw.c \
796  $(SRC)\glyphs-msw.c \
797  $(SRC)\gui-msw.c \
798  $(SRC)\menubar-msw.c \
799  $(SRC)\objects-msw.c \
800  $(SRC)\redisplay-msw.c \
801  $(SRC)\scrollbar-msw.c \
802  $(SRC)\select-msw.c \
803  $(MSW_C_DIRED_SRC) \
804  $(MSW_TOOLBAR_SRC) \
805  $(MSW_DIALOG_SRC) \
806  $(MSW_GIF_SRC)
807 !endif
808
809 !if $(HAVE_MULE)
810 DOC_SRC8=\
811  $(SRC)\mule.c \
812  $(SRC)\mule-charset.c \
813  $(SRC)\mule-ccl.c
814 ! if $(HAVE_X_WINDOWS)
815  DOC_SRC8=$(DOC_SRC8) $(SRC)\input-method-xlib.c
816 ! endif
817 !endif
818
819 !if $(DEBUG_XEMACS)
820 DOC_SRC9=\
821  $(SRC)\debug.c \
822  $(SRC)\tests.c
823 !endif
824
825 !if !$(USE_SYSTEM_MALLOC)
826 DOC_SRC10=\
827  $(SRC)\free-hook.c \
828  $(SRC)\gmalloc.c \
829  $(SRC)\ntheap.c \
830  $(SRC)\vm-limit.c
831 !endif
832
833 !if !$(USE_PORTABLE_DUMPER)
834 DOC_SRC11=\
835  $(SRC)\unexnt.c
836 !else
837 DOC_SRC11=\
838  $(SRC)\dumper.c
839 !endif
840
841 #------------------------------------------------------------------------------
842
843 # TEMACS Executable
844
845 # This may not exist
846 !if "$(emacs_beta_version)" != ""
847 !if "$(emacs_is_beta)" != ""
848 EMACS_BETA_VERSION=-DEMACS_BETA_VERSION=$(emacs_beta_version)
849 !else
850 EMACS_PATCH_LEVEL=-DEMACS_PATCH_LEVEL=$(emacs_beta_version)
851 !endif
852 !endif
853
854 !if !$(USE_PORTABLE_DUMPER)
855 TEMACS_ENTRYPOINT=-entry:_start
856 !else
857 TEMACS_ENTRYPOINT=-entry:mainCRTStartup
858 !endif
859
860 TEMACS_DIR=$(SRC)
861 TEMACS=$(TEMACS_DIR)\temacs.exe
862 TEMACS_BROWSE=$(TEMACS_DIR)\temacs.bsc
863 TEMACS_SRC=$(SRC)
864 TEMACS_LIBS=$(LASTFILE) $(LWLIB) $(X_LIBS) $(MSW_LIBS) \
865  oldnames.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib \
866  shell32.lib wsock32.lib winmm.lib winspool.lib ole32.lib uuid.lib $(LIBC_LIB)
867 TEMACS_LFLAGS=-nologo $(LIBRARIES) $(DEBUG_FLAGS) -base:0x1000000\
868  -stack:0x800000 $(TEMACS_ENTRYPOINT) -subsystem:windows\
869  -pdb:$(TEMACS_DIR)\temacs.pdb -map:$(TEMACS_DIR)\temacs.map \
870  -heap:0x00100000 -nodefaultlib -incremental:no setargv.obj
871 TEMACS_CPP_FLAGS=-c \
872  $(CFLAGS) $(INCLUDES) $(DEFINES) $(DEBUG_DEFINES) \
873  -DEMACS_MAJOR_VERSION=$(emacs_major_version) \
874  -DEMACS_MINOR_VERSION=$(emacs_minor_version) \
875  $(EMACS_BETA_VERSION) \
876  $(EMACS_PATCH_LEVEL) \
877  -DXEMACS_CODENAME=\"$(xemacs_codename:&=and)\" \
878  -DEMACS_CONFIGURATION=\"$(EMACS_CONFIGURATION)\" \
879  -DPATH_PACKAGEPATH=\"$(PATH_PACKAGEPATH)\"
880
881 !if $(HAVE_X_WINDOWS)
882 TEMACS_X_OBJS=\
883         $(OUTDIR)\balloon-x.obj \
884         $(OUTDIR)\balloon_help.obj \
885         $(OUTDIR)\console-x.obj \
886         $(OUTDIR)\device-x.obj \
887         $(OUTDIR)\dialog-x.obj \
888         $(OUTDIR)\EmacsFrame.obj \
889         $(OUTDIR)\EmacsManager.obj \
890         $(OUTDIR)\EmacsShell.obj \
891         $(OUTDIR)\TopLevelEmacsShell.obj\
892         $(OUTDIR)\TransientEmacsShell.obj\
893         $(OUTDIR)\event-Xt.obj \
894         $(OUTDIR)\frame-x.obj \
895         $(OUTDIR)\glyphs-x.obj \
896         $(OUTDIR)\gui-x.obj \
897         $(OUTDIR)\menubar-x.obj \
898         $(OUTDIR)\objects-x.obj \
899         $(OUTDIR)\redisplay-x.obj \
900         $(OUTDIR)\scrollbar-x.obj \
901         $(OUTDIR)\xgccache.obj \
902         $(OUTDIR)\xmu.obj \
903         $(OUTDIR)\select-x.obj
904 !endif
905
906 !if $(HAVE_MS_WINDOWS)
907 TEMACS_MSW_OBJS=\
908         $(OUTDIR)\console-msw.obj \
909         $(OUTDIR)\device-msw.obj \
910         $(OUTDIR)\event-msw.obj \
911         $(OUTDIR)\frame-msw.obj \
912         $(OUTDIR)\glyphs-msw.obj \
913         $(OUTDIR)\gui-msw.obj \
914         $(OUTDIR)\menubar-msw.obj \
915         $(OUTDIR)\objects-msw.obj \
916         $(OUTDIR)\redisplay-msw.obj \
917         $(OUTDIR)\scrollbar-msw.obj \
918         $(OUTDIR)\select-msw.obj \
919         $(MSW_C_DIRED_OBJ) \
920         $(MSW_TOOLBAR_OBJ) \
921         $(MSW_DIALOG_OBJ) \
922         $(MSW_GIF_OBJ)
923 !endif
924
925 !if $(HAVE_MULE)
926 TEMACS_MULE_OBJS=\
927         $(OUTDIR)\mule.obj \
928         $(OUTDIR)\mule-charset.obj \
929         $(OUTDIR)\mule-ccl.obj
930 ! if $(HAVE_X_WINDOWS)
931 TEMACS_MULE_OBJS=\
932         $(TEMACS_MULE_OBJS) $(OUTDIR)\input-method-xlib.obj
933 ! endif
934 !endif
935
936 !if $(DEBUG_XEMACS)
937 TEMACS_DEBUG_OBJS=\
938         $(OUTDIR)\debug.obj \
939         $(OUTDIR)\tests.obj
940 !endif
941
942 !if !$(USE_SYSTEM_MALLOC)
943 TEMACS_ALLOC_OBJS=\
944         $(OUTDIR)\free-hook.obj \
945         $(OUTDIR)\gmalloc.obj \
946         $(OUTDIR)\ntheap.obj \
947         $(OUTDIR)\vm-limit.obj
948 !endif
949
950 !if !$(USE_PORTABLE_DUMPER)
951 TEMACS_DUMP_OBJS=\
952         $(OUTDIR)\unexnt.obj
953 !else
954 TEMACS_DUMP_OBJS=\
955         $(OUTDIR)\dumper.obj
956 !endif
957
958 TEMACS_OBJS= \
959         $(TEMACS_X_OBJS)\
960         $(TEMACS_MSW_OBJS)\
961         $(TEMACS_CODING_OBJS)\
962         $(TEMACS_MULE_OBJS)\
963         $(TEMACS_DEBUG_OBJS)\
964         $(TEMACS_ALLOC_OBJS)\
965         $(TEMACS_DUMP_OBJS)\
966         $(OUTDIR)\abbrev.obj \
967         $(OUTDIR)\alloc.obj \
968         $(OUTDIR)\blocktype.obj \
969         $(OUTDIR)\buffer.obj \
970         $(OUTDIR)\bytecode.obj \
971         $(OUTDIR)\callint.obj \
972         $(OUTDIR)\callproc.obj \
973         $(OUTDIR)\casefiddle.obj \
974         $(OUTDIR)\casetab.obj \
975         $(OUTDIR)\chartab.obj \
976         $(OUTDIR)\cmdloop.obj \
977         $(OUTDIR)\cmds.obj \
978         $(OUTDIR)\console-stream.obj \
979         $(OUTDIR)\console.obj \
980         $(OUTDIR)\data.obj \
981         $(OUTDIR)\device.obj \
982         $(OUTDIR)\dired.obj \
983         $(OUTDIR)\doc.obj \
984         $(OUTDIR)\doprnt.obj \
985         $(OUTDIR)\dragdrop.obj \
986         $(OUTDIR)\dynarr.obj \
987         $(OUTDIR)\editfns.obj \
988         $(OUTDIR)\elhash.obj \
989         $(OUTDIR)\emacs.obj \
990         $(OUTDIR)\eval.obj \
991         $(OUTDIR)\event-stream.obj \
992         $(OUTDIR)\events.obj \
993         $(OUTDIR)\extents.obj \
994         $(OUTDIR)\faces.obj \
995         $(OUTDIR)\file-coding.obj \
996         $(OUTDIR)\fileio.obj \
997         $(OUTDIR)\filemode.obj \
998         $(OUTDIR)\floatfns.obj \
999         $(OUTDIR)\fns.obj \
1000         $(OUTDIR)\font-lock.obj \
1001         $(OUTDIR)\frame.obj \
1002         $(OUTDIR)\general.obj \
1003         $(OUTDIR)\getloadavg.obj \
1004         $(OUTDIR)\glyphs.obj \
1005         $(OUTDIR)\glyphs-eimage.obj \
1006         $(OUTDIR)\glyphs-widget.obj \
1007         $(OUTDIR)\gui.obj \
1008         $(OUTDIR)\gutter.obj \
1009         $(OUTDIR)\hash.obj \
1010         $(OUTDIR)\indent.obj \
1011         $(OUTDIR)\imgproc.obj \
1012         $(OUTDIR)\insdel.obj \
1013         $(OUTDIR)\intl.obj \
1014         $(OUTDIR)\keymap.obj \
1015         $(OUTDIR)\line-number.obj \
1016         $(OUTDIR)\lread.obj \
1017         $(OUTDIR)\lstream.obj \
1018         $(OUTDIR)\macros.obj \
1019         $(OUTDIR)\menubar.obj \
1020         $(OUTDIR)\marker.obj \
1021         $(OUTDIR)\md5.obj \
1022         $(OUTDIR)\minibuf.obj \
1023         $(OUTDIR)\nt.obj \
1024         $(OUTDIR)\ntplay.obj \
1025         $(OUTDIR)\ntproc.obj \
1026         $(OUTDIR)\objects.obj \
1027         $(OUTDIR)\opaque.obj \
1028         $(OUTDIR)\print.obj \
1029         $(OUTDIR)\process.obj \
1030         $(OUTDIR)\process-nt.obj \
1031         $(OUTDIR)\profile.obj \
1032         $(OUTDIR)\rangetab.obj \
1033         $(OUTDIR)\realpath.obj \
1034         $(OUTDIR)\redisplay-output.obj \
1035         $(OUTDIR)\redisplay.obj \
1036         $(OUTDIR)\regex.obj \
1037         $(OUTDIR)\scrollbar.obj \
1038         $(OUTDIR)\search.obj \
1039         $(OUTDIR)\select.obj \
1040         $(OUTDIR)\signal.obj \
1041         $(OUTDIR)\sound.obj \
1042         $(OUTDIR)\specifier.obj \
1043         $(OUTDIR)\strftime.obj \
1044         $(OUTDIR)\symbols.obj \
1045         $(OUTDIR)\syntax.obj \
1046         $(OUTDIR)\sysdep.obj \
1047         $(OUTDIR)\tparam.obj \
1048         $(OUTDIR)\undo.obj \
1049         $(OUTDIR)\widget.obj \
1050         $(OUTDIR)\window.obj \
1051         $(OUTDIR)\win32.obj
1052
1053 # Rules
1054
1055 .SUFFIXES:
1056 .SUFFIXES:      .c .obj .texi .info
1057
1058 # nmake rule
1059 !if $(DEBUG_XEMACS)
1060 {$(TEMACS_SRC)}.c{$(OUTDIR)}.obj:
1061         $(CCV) $(TEMACS_CPP_FLAGS) $< -Fo$@ -Fr$*.sbr -Fd$(OUTDIR)\temacs.pdb
1062 !else
1063 {$(TEMACS_SRC)}.c{$(OUTDIR)}.obj:
1064         $(CCV) $(TEMACS_CPP_FLAGS) $< -Fo$@
1065 !endif
1066
1067 $(OUTDIR)\emacs.obj:    $(XEMACS)\version.sh
1068
1069 $(OUTDIR)\TopLevelEmacsShell.obj:       $(TEMACS_SRC)\EmacsShell-sub.c
1070         $(CCV) $(TEMACS_CPP_FLAGS) -DDEFINE_TOP_LEVEL_EMACS_SHELL $** -Fo$@
1071
1072 $(OUTDIR)\TransientEmacsShell.obj: $(TEMACS_SRC)\EmacsShell-sub.c
1073         $(CCV) $(TEMACS_CPP_FLAGS) -DDEFINE_TRANSIENT_EMACS_SHELL $** -Fo$@
1074
1075 $(OUTDIR)\alloc.obj: $(TEMACS_SRC)\alloc.c
1076
1077 #$(TEMACS_SRC)\Emacs.ad.h: $(XEMACS)\etc\Emacs.ad
1078 #       !"sed -f ad2c.sed < $(XEMACS)\etc\Emacs.ad > $(TEMACS_SRC)\Emacs.ad.h"
1079
1080 #$(TEMACS_SRC)\paths.h: $(TEMACS_SRC)\paths.h.in
1081 #       !"cd $(TEMACS_SRC); cp paths.h.in paths.h"
1082
1083 $(TEMACS): $(TEMACS_INCLUDES) $(TEMACS_OBJS) $(OUTDIR)\xemacs.res
1084 !if $(DEBUG_XEMACS)
1085         @dir /b/s $(OUTDIR)\*.sbr > bscmake.tmp
1086         bscmake -nologo -o$(TEMACS_BROWSE) @bscmake.tmp
1087         $(DEL) bscmake.tmp
1088 !endif
1089 !if $(USE_PORTABLE_DUMPER)
1090         @if exist $(SRC)\dump-id.c del $(SRC)\dump-id.c
1091 # make a new dump id file.  There is probably a better way to do this, but this works
1092         @if exist $(OUTDIR)\dump-id.obj del $(OUTDIR)\dump-id.obj
1093         nmake -nologo -f xemacs.mak OUTDIR=$(OUTDIR) $(OUTDIR)\dump-id.obj
1094         link.exe @<<
1095   $(TEMACS_LFLAGS) -out:$@ $(TEMACS_OBJS) $(TEMACS_LIBS) $(OUTDIR)\dump-id.obj
1096 <<
1097 !else
1098         link.exe @<<
1099   $(TEMACS_LFLAGS) -out:$@ $(TEMACS_OBJS) $(OUTDIR)\xemacs.res $(TEMACS_LIBS)
1100 <<
1101 !endif
1102
1103 $(OUTDIR)\xemacs.res: xemacs.rc
1104         rc -Fo$@ xemacs.rc
1105
1106
1107 PROGNAME=$(SRC)\xemacs.exe
1108 TEMACS_BATCH="$(LIB_SRC)\i" "$(TEMACS)" -batch
1109 XEMACS_BATCH="$(LIB_SRC)\i" "$(PROGNAME)" -vanilla -batch
1110
1111 # Section handling automated tests starts here
1112
1113 blddir=$(MAKEDIR:\=\\)\\..
1114 temacs_loadup=$(TEMACS_BATCH) -l $(LISP)/loadup.el
1115 dump_temacs   = $(temacs_loadup) dump
1116 run_temacs    = $(temacs_loadup) run-temacs
1117 ## We have automated tests!!
1118 testdir=../tests/automated
1119 batch_test_emacs=-batch -l $(testdir)/test-harness.el -f batch-test-emacs $(testdir)
1120
1121 # .PHONY: check check-temacs
1122
1123 check:
1124         cd $(SRC)
1125         $(PROGNAME) $(batch_test_emacs)
1126
1127 check-temacs:
1128         cd $(SRC)
1129         set EMACSBOOTSTRAPLOADPATH=$(LISP)
1130         set EMACSBOOTSTRAPMODULEPATH=$(MODULES)
1131         $(run_temacs) $(batch_test_emacs)
1132
1133 # Section handling automated tests ends here
1134
1135 # Section handling tags starts here
1136
1137 tagslisp=lisp
1138
1139 tags:
1140         @echo If you don't have a copy of etags around, then do 'make lib-src' first.
1141         @echo To make use of the tags file, put the following in your .emacs:
1142         @echo   (setq tag-table-alist
1143         @echo     '(("$(XEMACSDIRSTRING)\\" . "$(XEMACSDIRSTRING)\\")))
1144         cd $(XEMACS)
1145         $(DEL) TAGS
1146         set PATH=lib-src;%PATH%
1147 # we need to double ^, but only before backslash!  Doubling it elsewhere
1148 # causes problems.  I don't understand this -- CMD.EXE uses ^ as a quoting
1149 # convention of sorts, but appears to leave it alone inside of double quotes,
1150 # even before \.  Could this be nmake interference?
1151         etags -a -r "/[         ]*DEF\(VAR\|INE\)_[A-Z_]+[      ]*([    ]*\"\([^^\"]+\)\"/\2/" src\*.c src\*.h lwlib\*.c lwlib\*.h lib-src\*.c lib-src\*.h
1152         etags -a -l none -r "/^(def\(var\|un\|alias\|const\|macro\|subst\|struct\|face\|group\|custom\|ine-\(function\|compiler-macro\|[a-z-]+alias\)\)[        ]+'?\([^        ]+\)/\3/" $(tagslisp)\*.el
1153
1154 # Section handling tags ends here
1155
1156 # Section handling info starts here
1157
1158 !if !defined(MAKEINFO)
1159 MAKEINFO=$(XEMACS_BATCH) -l texinfmt -f batch-texinfo-format
1160 !endif
1161
1162 MANDIR = $(XEMACS)\man
1163 INFODIR = $(XEMACS)\info
1164 INFO_FILES= \
1165         $(INFODIR)\cl.info \
1166         $(INFODIR)\custom.info \
1167         $(INFODIR)\emodules.info \
1168         $(INFODIR)\external-widget.info \
1169         $(INFODIR)\info.info \
1170         $(INFODIR)\standards.info \
1171         $(INFODIR)\term.info \
1172         $(INFODIR)\termcap.info \
1173         $(INFODIR)\texinfo.info \
1174         $(INFODIR)\widget.info \
1175         $(INFODIR)\xemacs-faq.info \
1176         $(INFODIR)\xemacs.info \
1177         $(INFODIR)\lispref.info \
1178         $(INFODIR)\new-users-guide.info \
1179         $(INFODIR)\internals.info
1180
1181 {$(MANDIR)}.texi{$(INFODIR)}.info:
1182         cd $(MANDIR)
1183         $(MAKEINFO) $**
1184
1185 XEMACS_SRCS = \
1186         $(MANDIR)\xemacs\abbrevs.texi \
1187         $(MANDIR)\xemacs\basic.texi \
1188         $(MANDIR)\xemacs\buffers.texi \
1189         $(MANDIR)\xemacs\building.texi \
1190         $(MANDIR)\xemacs\calendar.texi \
1191         $(MANDIR)\xemacs\cmdargs.texi \
1192         $(MANDIR)\xemacs\custom.texi \
1193         $(MANDIR)\xemacs\display.texi \
1194         $(MANDIR)\xemacs\entering.texi \
1195         $(MANDIR)\xemacs\files.texi \
1196         $(MANDIR)\xemacs\fixit.texi \
1197         $(MANDIR)\xemacs\frame.texi \
1198         $(MANDIR)\xemacs\glossary.texi \
1199         $(MANDIR)\xemacs\gnu.texi \
1200         $(MANDIR)\xemacs\help.texi \
1201         $(MANDIR)\xemacs\indent.texi \
1202         $(MANDIR)\xemacs\keystrokes.texi \
1203         $(MANDIR)\xemacs\killing.texi \
1204         $(MANDIR)\xemacs\m-x.texi \
1205         $(MANDIR)\xemacs\major.texi \
1206         $(MANDIR)\xemacs\mark.texi \
1207         $(MANDIR)\xemacs\menus.texi \
1208         $(MANDIR)\xemacs\mini.texi \
1209         $(MANDIR)\xemacs\misc.texi \
1210         $(MANDIR)\xemacs\mouse.texi \
1211         $(MANDIR)\xemacs\mule.texi \
1212         $(MANDIR)\xemacs\new.texi \
1213         $(MANDIR)\xemacs\packages.texi \
1214         $(MANDIR)\xemacs\picture.texi \
1215         $(MANDIR)\xemacs\programs.texi \
1216         $(MANDIR)\xemacs\reading.texi \
1217         $(MANDIR)\xemacs\regs.texi \
1218         $(MANDIR)\xemacs\search.texi \
1219         $(MANDIR)\xemacs\sending.texi \
1220         $(MANDIR)\xemacs\startup.texi \
1221         $(MANDIR)\xemacs\text.texi \
1222         $(MANDIR)\xemacs\trouble.texi \
1223         $(MANDIR)\xemacs\undo.texi \
1224         $(MANDIR)\xemacs\windows.texi \
1225         $(MANDIR)\xemacs\xemacs.texi
1226
1227 LISPREF_SRCS = \
1228         $(MANDIR)\lispref\abbrevs.texi \
1229         $(MANDIR)\lispref\annotations.texi \
1230         $(MANDIR)\lispref\back.texi \
1231         $(MANDIR)\lispref\backups.texi \
1232         $(MANDIR)\lispref\buffers.texi \
1233         $(MANDIR)\lispref\building.texi \
1234         $(MANDIR)\lispref\commands.texi \
1235         $(MANDIR)\lispref\compile.texi \
1236         $(MANDIR)\lispref\consoles-devices.texi \
1237         $(MANDIR)\lispref\control.texi \
1238         $(MANDIR)\lispref\customize.texi \
1239         $(MANDIR)\lispref\databases.texi \
1240         $(MANDIR)\lispref\debugging.texi \
1241         $(MANDIR)\lispref\dialog.texi \
1242         $(MANDIR)\lispref\display.texi \
1243         $(MANDIR)\lispref\dragndrop.texi \
1244         $(MANDIR)\lispref\edebug-inc.texi \
1245         $(MANDIR)\lispref\edebug.texi \
1246         $(MANDIR)\lispref\errors.texi \
1247         $(MANDIR)\lispref\eval.texi \
1248         $(MANDIR)\lispref\extents.texi \
1249         $(MANDIR)\lispref\faces.texi \
1250         $(MANDIR)\lispref\files.texi \
1251         $(MANDIR)\lispref\frames.texi \
1252         $(MANDIR)\lispref\functions.texi \
1253         $(MANDIR)\lispref\glyphs.texi \
1254         $(MANDIR)\lispref\hash-tables.texi \
1255         $(MANDIR)\lispref\help.texi \
1256         $(MANDIR)\lispref\hooks.texi \
1257         $(MANDIR)\lispref\index.texi \
1258         $(MANDIR)\lispref\internationalization.texi \
1259         $(MANDIR)\lispref\intro.texi \
1260         $(MANDIR)\lispref\keymaps.texi \
1261         $(MANDIR)\lispref\ldap.texi \
1262         $(MANDIR)\lispref\lispref.texi \
1263         $(MANDIR)\lispref\lists.texi \
1264         $(MANDIR)\lispref\loading.texi \
1265         $(MANDIR)\lispref\locals.texi \
1266         $(MANDIR)\lispref\macros.texi \
1267         $(MANDIR)\lispref\maps.texi \
1268         $(MANDIR)\lispref\markers.texi \
1269         $(MANDIR)\lispref\menus.texi \
1270         $(MANDIR)\lispref\minibuf.texi \
1271         $(MANDIR)\lispref\modes.texi \
1272         $(MANDIR)\lispref\mouse.texi \
1273         $(MANDIR)\lispref\mule.texi \
1274         $(MANDIR)\lispref\numbers.texi \
1275         $(MANDIR)\lispref\objects.texi \
1276         $(MANDIR)\lispref\os.texi \
1277         $(MANDIR)\lispref\positions.texi \
1278         $(MANDIR)\lispref\processes.texi \
1279         $(MANDIR)\lispref\range-tables.texi \
1280         $(MANDIR)\lispref\scrollbars.texi \
1281         $(MANDIR)\lispref\searching.texi \
1282         $(MANDIR)\lispref\sequences.texi \
1283         $(MANDIR)\lispref\specifiers.texi \
1284         $(MANDIR)\lispref\streams.texi \
1285         $(MANDIR)\lispref\strings.texi \
1286         $(MANDIR)\lispref\symbols.texi \
1287         $(MANDIR)\lispref\syntax.texi \
1288         $(MANDIR)\lispref\text.texi \
1289         $(MANDIR)\lispref\tips.texi \
1290         $(MANDIR)\lispref\toolbar.texi \
1291         $(MANDIR)\lispref\tooltalk.texi \
1292         $(MANDIR)\lispref\variables.texi \
1293         $(MANDIR)\lispref\windows.texi \
1294         $(MANDIR)\lispref\x-windows.texi
1295
1296 INTERNALS_SRCS = \
1297         $(MANDIR)\internals\internals.texi \
1298         $(MANDIR)\internals\index.texi
1299
1300 NEW_USERS_GUIDE_SRCS = \
1301         $(MANDIR)\new-users-guide\custom1.texi \
1302         $(MANDIR)\new-users-guide\custom2.texi \
1303         $(MANDIR)\new-users-guide\edit.texi \
1304         $(MANDIR)\new-users-guide\enter.texi \
1305         $(MANDIR)\new-users-guide\files.texi \
1306         $(MANDIR)\new-users-guide\help.texi \
1307         $(MANDIR)\new-users-guide\modes.texi \
1308         $(MANDIR)\new-users-guide\new-users-guide.texi \
1309         $(MANDIR)\new-users-guide\region.texi \
1310         $(MANDIR)\new-users-guide\search.texi \
1311         $(MANDIR)\new-users-guide\xmenu.texi
1312
1313 $(INFODIR)\xemacs.info: $(XEMACS_SRCS)
1314         cd $(MANDIR)\xemacs
1315         $(MAKEINFO) xemacs.texi
1316         cd ..
1317
1318
1319 $(INFODIR)\lispref.info: $(LISPREF_SRCS)
1320         cd $(MANDIR)\lispref
1321         $(MAKEINFO) lispref.texi
1322         cd ..
1323
1324 $(INFODIR)\internals.info: $(INTERNALS_SRCS)
1325         cd $(MANDIR)\internals
1326         $(MAKEINFO) internals.texi
1327         cd ..
1328
1329 $(INFODIR)\new-users-guide.info: $(NEW_USERS_GUIDE_SRCS)
1330         cd $(MANDIR)\new-users-guide
1331         $(MAKEINFO) new-users-guide.texi
1332         cd ..
1333
1334 info:   makeinfo-test $(INFO_FILES)
1335
1336 makeinfo-test:
1337         @<<makeinfo_test.bat
1338 @echo off
1339 if exist "$(MAKEINFO)" goto test_done
1340 @$(XEMACS_BATCH) -eval "(condition-case nil (require (quote texinfo)) (t (kill-emacs 1)))"
1341 @if not errorlevel 1 goto suggest_makeinfo
1342 @echo XEmacs 'info' cannot be built!
1343 @echo Install XEmacs package 'texinfo' (see README.packages).
1344 :suggest_makeinfo
1345 @echo Consider specifying path to makeinfo program: MAKEINFO=path
1346 @echo as this will build info docs faster than XEmacs using 'texinfo'.
1347 @if errorlevel 1 exit 1
1348 :test_done
1349 <<NOKEEP
1350
1351 # Section handling info ends here
1352
1353 #------------------------------------------------------------------------------
1354
1355 # LISP bits 'n bobs
1356
1357 LOADPATH=$(LISP)
1358
1359 # Rebuild docfile target
1360 docfile ::
1361         if exist $(DOC) del $(DOC)
1362 docfile :: $(DOC)
1363
1364 $(DOC): $(LIB_SRC)\make-docfile.exe $(DOC_SRC1) $(DOC_SRC2) $(DOC_SRC3) $(DOC_SRC4) $(DOC_SRC5) $(DOC_SRC6) $(DOC_SRC7) $(DOC_SRC8) $(DOC_SRC9) $(DOC_SRC10) $(DOC_SRC11)
1365         if exist $(DOC) del $(DOC)
1366         set EMACSBOOTSTRAPLOADPATH=$(LISP);$(PACKAGE_PATH)
1367         set EMACSBOOTSTRAPMODULEPATH=$(MODULES)
1368         $(TEMACS_BATCH) -l $(TEMACS_DIR)\..\lisp\make-docfile.el -- -o $(DOC) -i $(XEMACS)\site-packages
1369         $(LIB_SRC)\make-docfile.exe -a $(DOC) -d $(TEMACS_SRC) $(DOC_SRC1)
1370         $(LIB_SRC)\make-docfile.exe -a $(DOC) -d $(TEMACS_SRC) $(DOC_SRC2)
1371         $(LIB_SRC)\make-docfile.exe -a $(DOC) -d $(TEMACS_SRC) $(DOC_SRC3)
1372         $(LIB_SRC)\make-docfile.exe -a $(DOC) -d $(TEMACS_SRC) $(DOC_SRC4)
1373         $(LIB_SRC)\make-docfile.exe -a $(DOC) -d $(TEMACS_SRC) $(DOC_SRC5)
1374         $(LIB_SRC)\make-docfile.exe -a $(DOC) -d $(TEMACS_SRC) $(DOC_SRC6)
1375         $(LIB_SRC)\make-docfile.exe -a $(DOC) -d $(TEMACS_SRC) $(DOC_SRC7)
1376         $(LIB_SRC)\make-docfile.exe -a $(DOC) -d $(TEMACS_SRC) $(DOC_SRC8)
1377         $(LIB_SRC)\make-docfile.exe -a $(DOC) -d $(TEMACS_SRC) $(DOC_SRC9)
1378         $(LIB_SRC)\make-docfile.exe -a $(DOC) -d $(TEMACS_SRC) $(DOC_SRC10)
1379         $(LIB_SRC)\make-docfile.exe -a $(DOC) -d $(TEMACS_SRC) $(DOC_SRC11)
1380
1381 update-elc:
1382         set EMACSBOOTSTRAPLOADPATH=$(LISP);$(PACKAGE_PATH)
1383         set EMACSBOOTSTRAPMODULEPATH=$(MODULES)
1384         $(TEMACS_BATCH) -l $(TEMACS_DIR)\..\lisp\update-elc.el
1385
1386 # This file is touched by update-elc.el when redumping is necessary.
1387 $(TEMACS_DIR)\NEEDTODUMP :
1388         @echo >$(TEMACS_DIR)\NEEDTODUMP
1389
1390 # This rule dumps xemacs and then possibly spawns sub-make if PURESPACE
1391 # requirements have changed.
1392
1393 $(PROGNAME) : $(TEMACS) $(TEMACS_DIR)\NEEDTODUMP
1394         @echo >$(TEMACS_DIR)\SATISFIED
1395         cd $(TEMACS_DIR)
1396         set EMACSBOOTSTRAPLOADPATH=$(LISP);$(PACKAGE_PATH)
1397         set EMACSBOOTSTRAPMODULEPATH=$(MODULES)
1398         $(TEMACS_BATCH) -l $(TEMACS_DIR)\..\lisp\loadup.el dump
1399 !if $(USE_PORTABLE_DUMPER)
1400         rc -d INCLUDE_DUMP -Fo $(OUTDIR)\xemacs.res $(NT)\xemacs.rc
1401         link.exe @<<
1402   $(TEMACS_LFLAGS) -out:xemacs.exe $(TEMACS_OBJS) $(OUTDIR)\xemacs.res $(TEMACS_LIBS) $(OUTDIR)\dump-id.obj
1403 <<
1404 # Make the resource section read/write since almost all of it is the dump
1405 # data which needs to be writable.  This avoids having to copy it.
1406         editbin -nologo -section:.rsrc,rw xemacs.exe
1407         $(DEL) $(TEMACS_DIR)\xemacs.dmp
1408 !endif
1409         cd $(NT)
1410         @if not exist $(TEMACS_DIR)\SATISFIED nmake -nologo -f xemacs.mak $@
1411 #------------------------------------------------------------------------------
1412
1413 # use this rule to build the complete system
1414 all:    installation $(OUTDIR)\nul $(LASTFILE) $(LWLIB) \
1415         $(LIB_SRC_TOOLS) $(TEMACS) update-elc $(DOC) $(PROGNAME) \
1416         update-elc-2 update-auto-and-custom info
1417
1418 temacs: $(LASTFILE) $(TEMACS)
1419
1420 # use this rule to install the system
1421 install:        all
1422         cd $(NT)
1423         @echo Installing in $(INSTALL_DIR) ...
1424         @echo PlaceHolder > PlaceHolder
1425         @xcopy /q PROBLEMS "$(INSTALL_DIR)\"
1426         @xcopy /q PlaceHolder "$(INSTALL_DIR)\lock\"
1427         $(DEL) "$(INSTALL_DIR)\lock\PlaceHolder"
1428         @xcopy /q $(LIB_SRC)\*.exe "$(INSTALL_DIR)\$(EMACS_CONFIGURATION)\"
1429         @copy $(LIB_SRC)\DOC "$(INSTALL_DIR)\$(EMACS_CONFIGURATION)"
1430         @copy $(CONFIG_VALUES) "$(INSTALL_DIR)\$(EMACS_CONFIGURATION)"
1431         @copy $(SRC)\xemacs.exe "$(INSTALL_DIR)\$(EMACS_CONFIGURATION)"
1432         @xcopy /e /q $(XEMACS)\etc  "$(INSTALL_DIR)\etc\"
1433         @xcopy /e /q $(XEMACS)\info "$(INSTALL_DIR)\info\"
1434         @xcopy /e /q $(XEMACS)\lisp "$(INSTALL_DIR)\lisp\"
1435         @echo Making skeleton package tree in $(PACKAGE_PREFIX) ...
1436         @xcopy /q PlaceHolder "$(PACKAGE_PREFIX)\site-packages\"
1437         $(DEL) "$(PACKAGE_PREFIX)\site-packages\PlaceHolder"
1438         @xcopy /q PlaceHolder "$(PACKAGE_PREFIX)\mule-packages\"
1439         $(DEL) "$(PACKAGE_PREFIX)\mule-packages\PlaceHolder"
1440         @xcopy /q PlaceHolder "$(PACKAGE_PREFIX)\xemacs-packages\"
1441         $(DEL) "$(PACKAGE_PREFIX)\xemacs-packages\PlaceHolder"
1442         $(DEL) PlaceHolder
1443
1444 mostlyclean:
1445         $(DEL) $(XEMACS)\Installation
1446         $(DEL) $(OUTDIR)\*.lib
1447         $(DEL) $(OUTDIR)\*.obj
1448         $(DEL) $(OUTDIR)\*.pdb
1449         $(DEL) $(OUTDIR)\*.res
1450         $(DEL) $(OUTDIR)\*.sbr
1451         $(DEL) $(SRC)\*.exe
1452         $(DEL) $(SRC)\*.map
1453         $(DEL) $(SRC)\*.bsc
1454         $(DEL) $(SRC)\*.pdb
1455         $(DEL) $(LIB_SRC)\*.exe
1456         $(DEL) $(LIB_SRC)\*.obj
1457         $(DEL) $(LIB_SRC)\*.pdb
1458         $(DEL) $(LIB_SRC)\*.res
1459
1460 clean: mostlyclean versionclean
1461         $(DEL) $(XEMACS)\TAGS
1462
1463 nicenclean: clean
1464         $(DEL) $(NT)\*.bak
1465         $(DEL) $(NT)\*.orig
1466         $(DEL) $(NT)\*.rej
1467         $(DEL) $(NT)\*.tmp
1468         $(DEL) $(LIB_SRC)\*.bak
1469         $(DEL) $(LIB_SRC)\*.orig
1470         $(DEL) $(LIB_SRC)\*.rej
1471         $(DEL) $(LIB_SRC)\*.tmp
1472         $(DEL) $(SRC)\*.bak
1473         $(DEL) $(SRC)\*.orig
1474         $(DEL) $(SRC)\*.rej
1475         $(DEL) $(SRC)\*.tmp
1476         $(DEL) $(LISP)\*.bak
1477         $(DEL) $(LISP)\*.orig
1478         $(DEL) $(LISP)\*.rej
1479         $(DEL) $(LISP)\*.tmp
1480
1481 ## This is used in making a distribution.
1482 ## Do not use it on development directories!
1483 distclean: nicenclean
1484         $(DEL) $(SRC)\config.h
1485         $(DEL) $(SRC)\paths.h
1486         $(DEL) $(SRC)\Emacs.ad.h
1487         $(DEL) $(CONFIG_VALUES)
1488         $(DEL) $(INFODIR)\*.info*
1489         $(DEL) $(LISP)\*.elc
1490
1491 realclean: distclean
1492
1493 versionclean:
1494         $(DEL) $(SRC)\xemacs.exe
1495         $(DEL) $(LIB_SRC)\DOC
1496
1497 #not sure about those wildcards.  DOS wildcards are stupid compared to Unix,
1498 #and could end up deleting *everything* instead of just backup files or
1499 #whatever.
1500 #extraclean: realclean
1501 #       $(DEL) *~ *.*~ #* m\*~ m\#* s\*~ s\#*
1502
1503 depend:
1504         cd $(SRC)
1505         perl ./make-src-depend > depend.tmp
1506         perl -MFile::Compare -e "compare('depend.tmp', 'depend') && rename('depend.tmp', 'depend') or unlink('depend.tmp')"
1507
1508 $(XEMACS)\Installation::        installation
1509
1510 installation::
1511         @echo OS version:>$(XEMACS)\Installation
1512         @ver >> $(XEMACS)\Installation
1513         @type >> $(XEMACS)\Installation <<
1514 !if defined(OS)
1515 OS: $(OS)
1516 !endif
1517
1518 XEmacs $(XEMACS_VERSION_STRING) $(xemacs_codename:"=\") configured for `$(EMACS_CONFIGURATION)'.
1519
1520   Building XEmacs in \"$(MAKEDIR:\=\\)\".
1521 !if defined(CCV)
1522   Using compiler \"$(CC) $(CFLAGS)\".
1523 !endif
1524   Installing XEmacs in \"$(INSTALL_DIR:\=\\)\".
1525   Package path is $(PATH_PACKAGEPATH:"=\").
1526 !if $(INFODOCK)
1527   Building InfoDock.
1528 !endif
1529 !if $(HAVE_MS_WINDOWS)
1530   Compiling in support for Microsoft Windows native GUI.
1531 !endif
1532 !if $(HAVE_X_WINDOWS)
1533   Compiling in support for X-Windows.
1534 !endif
1535 !if $(HAVE_MULE)
1536   Compiling in MULE.
1537 !endif
1538 !if $(HAVE_GTK)
1539   --------------------------------------------------------------------
1540   WARNING: You specified HAVE_GTK=1, but we are compiling WITHOUT GTK support.
1541   WARNING: gtk-xemacs is not currently supported on MSWindows (mingw or msvc).
1542   WARNING: Yes, we know that gtk has been ported to native MSWindows, but
1543   WARNING: XEmacs is not yet ready to use that port.
1544   --------------------------------------------------------------------
1545 !endif
1546 !if $(HAVE_XPM)
1547   Compiling in support for XPM images.
1548 !else
1549   --------------------------------------------------------------------
1550   WARNING: Compiling without XPM support.
1551   WARNING: You should strongly consider installing XPM.
1552   WARNING: Otherwise toolbars and other graphics will look suboptimal.
1553   WARNING: (a copy may be found in ftp://ftp.xemacs.org/pub/xemacs/aux)
1554   --------------------------------------------------------------------
1555 !endif
1556 !if $(HAVE_GIF)
1557   Compiling in support for GIF images.
1558 !endif
1559 !if $(HAVE_PNG)
1560   Compiling in support for PNG images.
1561 !else
1562   --------------------------------------------------------------------
1563   WARNING: Compiling without PNG image support.
1564   WARNING: You should strongly consider installing the PNG libraries.
1565   WARNING: Otherwise certain images and glyphs may not display.
1566   WARNING: (a copy may be found in ftp://ftp.xemacs.org/pub/xemacs/aux
1567   --------------------------------------------------------------------
1568 !endif
1569 !if $(HAVE_TIFF)
1570   Compiling in support for TIFF images.
1571 !endif
1572 !if $(HAVE_JPEG)
1573   Compiling in support for JPEG images.
1574 !endif
1575 !if $(HAVE_XFACE)
1576   Compiling in support for X-Face message headers.
1577 !endif
1578 !if $(HAVE_TOOLBARS)
1579   Compiling in support for toolbars.
1580 !endif
1581 !if $(HAVE_DIALOGS)
1582   Compiling in support for dialogs.
1583 !endif
1584 !if $(HAVE_WIDGETS)
1585   Compiling in support for widgets.
1586 !endif
1587 !if $(HAVE_NATIVE_SOUND)
1588   Compiling in support for native sounds.
1589 !endif
1590 !if $(HAVE_MSW_C_DIRED)
1591   Compiling in fast dired implementation.
1592 !else
1593   --------------------------------------------------------------------
1594   WARNING: Define HAVE_MSW_C_DIRED to be non-zero if you want XEmacs
1595   WARNING: to use C primitives to significantly speed up dired, at the
1596   WARNING: expense of an additional ~4KB of code.
1597   --------------------------------------------------------------------
1598 !endif
1599 !if $(USE_MINIMAL_TAGBITS)
1600   Using minimal tagbits.
1601 !endif
1602 !if $(USE_INDEXED_LRECORD_IMPLEMENTATION)
1603   Using indexed lrecord implementation.
1604 !endif
1605 !if $(USE_UNION_TYPE)
1606   Using union type for Lisp object storage.
1607 !endif
1608 !if $(USE_PORTABLE_DUMPER)
1609   Using portable dumper.
1610 !endif
1611 !if $(USE_SYSTEM_MALLOC)
1612   Using system malloc.
1613 !endif
1614 !if $(USE_CRTDLL)
1615   Using DLL version of C runtime library
1616 !endif
1617 !if $(DEBUG_XEMACS)
1618   Compiling in extra debug checks. XEmacs will be slow!
1619 !endif
1620 !if $(QUICK_BUILD)
1621   Disabling non-essential build actions.  Use with care!
1622 !endif
1623 <<NOKEEP
1624         @echo --------------------------------------------------------------------
1625         @type $(XEMACS)\Installation
1626         @echo --------------------------------------------------------------------
1627
1628 # Update out-of-date .elcs, other than needed for dumping.
1629 update-elc-2:
1630         $(XEMACS_BATCH) -l update-elc-2.el -f batch-update-elc-2 $(LISP)
1631
1632 # Update auto-autoloads.el and custom-load.el, similar to what
1633 # XEmacs.rules does for xemacs-packages.  This used to delete
1634 # auto-autoloads.el first, but that's a bad idea, because it forces
1635 # rebuilding from scratch, which is time-consuming; and the autoload
1636 # code is specifically written to do in-place updating.  However, if
1637 # your auto-autoload file is messed up and you want it rebuilt from
1638 # scratch, delete it from the command line and then nmake with this
1639 # target.
1640 update-auto-and-custom:
1641 #       Combine into one invocation to avoid repeated startup penalty.
1642         $(XEMACS_BATCH) -l autoload -f batch-update-one-directory $(LISP) -f batch-byte-compile-one-file $(LISP)\auto-autoloads.el -l cus-dep -f Custom-make-one-dependency $(LISP) -f batch-byte-compile-one-file $(LISP)\custom-load.el
1643         $(DEL) $(LISP)\auto-autoloads.el~
1644         $(DEL) $(LISP)\custom-load.el~
1645
1646 # DO NOT DELETE THIS LINE -- make depend depends on it.
1647