442
|
1 # -*- mode: makefile -*-
|
|
2
|
|
3 ############################################################################
|
|
4
|
|
5 INSTALL_DIR=c:\Program Files\XEmacs\XEmacs-$(XEMACS_VERSION_STRING)
|
|
6
|
|
7 PACKAGE_PREFIX=c:\Program Files\XEmacs
|
|
8
|
|
9 ############################################################################
|
|
10
|
771
|
11 # Multilingual support.
|
|
12 MULE=0
|
442
|
13
|
|
14 # Native MS Windows support.
|
|
15 HAVE_MS_WINDOWS=1
|
|
16
|
814
|
17 # X Windows support. Not working at all and probably never will. If you
|
|
18 # want X support under MS Windows, compile with Cygwin instead.
|
442
|
19 HAVE_X_WINDOWS=0
|
|
20 X11_DIR=
|
|
21
|
814
|
22 # GTK support. Do NOT set this to 1; as of xemacs-21.5-b6
|
462
|
23 # gtk-xemacs is not supported on MSWindows (mingw or msvc).
|
|
24 # Yes, we know that gtk has been ported to native MSWindows
|
|
25 # but XEmacs is not yet ready to use that port.
|
|
26 HAVE_GTK=0
|
|
27 GTK_DIR=
|
|
28
|
442
|
29 ############################################################################
|
|
30
|
|
31 # Set this to enable XPM support (virtually mandatory), and specify
|
|
32 # the directory containing xpm.
|
|
33 HAVE_XPM=1
|
|
34 XPM_DIR=c:\src\xpm-3.4k
|
|
35
|
|
36 # Set this to enable GIF support.
|
|
37 HAVE_GIF=1
|
|
38
|
|
39 # Set this to enable PNG support (virtually mandatory), and specify
|
|
40 # the directories containing png and zlib.
|
|
41 HAVE_PNG=1
|
827
|
42 PNG_DIR=c:\src\libpng-1.0.9
|
814
|
43 ZLIB_DIR=c:\src\zlib
|
442
|
44
|
|
45 # Set this to enable TIFF support, and specify the directory containing tiff.
|
|
46 HAVE_TIFF=0
|
|
47 TIFF_DIR=
|
|
48
|
|
49 # Set this to enable JPEG support, and specify the directory containing jpeg.
|
|
50 HAVE_JPEG=1
|
|
51 JPEG_DIR=c:\src\jpeg-6b
|
|
52
|
|
53 # Set this to enable XFace support, and specify the directory containing
|
|
54 # compface.
|
|
55 HAVE_XFACE=0
|
|
56 COMPFACE_DIR=
|
|
57
|
|
58 ############################################################################
|
|
59
|
|
60 # Set this to specify the location of makeinfo. (If not set, XEmacs will
|
|
61 # attempt to use its built-in texinfo support when building info files.)
|
495
|
62 MAKEINFO=c:\src\texinfo-4.0\makeinfo\makeinfo.exe
|
442
|
63
|
|
64 ############################################################################
|
|
65
|
814
|
66 # Set this to turn on optimization when compiling.
|
|
67 OPTIMIZED_BUILD=0
|
|
68
|
|
69 ############################################################################
|
|
70 # Development options #
|
|
71 ############################################################################
|
|
72
|
|
73 # Set this to enable debug code in XEmacs that doesn't slow things down,
|
|
74 # and to add debugging information to the executable. (The code that's
|
|
75 # enabled in XEmacs is primarily extra commands that aid in debugging
|
|
76 # problems. The kind of debugging code that slows things down --
|
|
77 # i.e. internal error-checking -- is controlled by the ERROR_CHECK_ALL
|
|
78 # variable, below.)
|
442
|
79 DEBUG_XEMACS=1
|
|
80
|
800
|
81 # Uncomment this to turn off or on the error-checking code, which adds
|
|
82 # abundant internal error checking (and slows things down a lot). Normally,
|
|
83 # leave this alone -- it will be on for beta builds and off for release
|
|
84 # builds.
|
|
85 # ERROR_CHECK_ALL=0
|
|
86
|
442
|
87 # Set this to speed up building, for development purposes.
|
|
88 QUICK_BUILD=0
|
|
89
|
|
90 # Set this to see exactly which compilation commands are being run (not
|
|
91 # generally recommended).
|
|
92 VERBOSECC=0
|
|
93
|
795
|
94 # Set this to get nmake to use dependency info (recommended for development).
|
|
95 # Requires cygwin or ActiveState versions of Perl to be installed.
|
442
|
96 DEPEND=0
|
|
97
|
814
|
98 # Set this to use the portable dumper for dumping the preloaded Lisp
|
|
99 # routines, instead of the older "unexec" routines in unexnt.c.
|
|
100 USE_PORTABLE_DUMPER=1
|