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