1 # -*- Makefile -*- definition file for building GNU Emacs on Windows NT.
\r
2 # Copyright (C) 2000-2014 Free Software Foundation, Inc.
\r
4 # This file is part of GNU Emacs.
\r
6 # GNU Emacs is free software: you can redistribute it and/or modify
\r
7 # it under the terms of the GNU General Public License as published by
\r
8 # the Free Software Foundation, either version 3 of the License, or
\r
9 # (at your option) any later version.
\r
11 # GNU Emacs is distributed in the hope that it will be useful,
\r
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 # GNU General Public License for more details.
\r
16 # You should have received a copy of the GNU General Public License
\r
17 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
\r
20 # Ensure 'all' is the default target
\r
23 THE_SHELL = $(COMSPEC)
\r
29 CURDIR = $(MAKEDIR:\=/)
\r
30 THISDIR = $(MAKEDIR)
\r
35 SUBSYSTEM_WINDOWS=-subsystem:windows
\r
36 SUBSYSTEM_CONSOLE=-subsystem:console
\r
38 # INSTALL_DIR is the directory into which emacs will be installed.
\r
41 INSTALL_DIR = $(CURDIR)/..
\r
44 # Ensure EMACSLOADPATH is defined in the environment.
\r
46 !if [set EMACSLOADPATH=foo]
\r
49 # Allow detection of builds with MSVC 5 or later, so we can
\r
50 # speed up compiles (see rule at end).
\r
56 _NMAKE_VER=$(_NMAKE_VER_4)
\r
59 # Check that the INCLUDE and LIB environment variables are set.
\r
62 !error The INCLUDE environment variable needs to be set.
\r
65 !error The LIB environment variable needs to be set.
\r
68 # Determine the architecture we're running on.
\r
69 # Define ARCH for our purposes;
\r
70 # Define CPU for use by ntwin32.mak;
\r
71 # Define CONFIG_H to the appropriate config.h for the system;
\r
73 !ifdef PROCESSOR_ARCHITECTURE
\r
74 # We're on Windows NT
\r
75 CPU = $(PROCESSOR_ARCHITECTURE)
\r
76 CONFIG_H = config.nt
\r
78 ! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
\r
82 ! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
\r
85 ! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
\r
88 ! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
\r
91 ! if "$(PROCESSOR_ARCHITECTURE)" == "AMD64"
\r
94 ! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
\r
101 # We're on Windows 95
\r
104 CONFIG_H = config.nt
\r
105 OS_TYPE = windows95
\r
114 RC = rc $(ARCH_RCFLAGS)
\r
121 libc = msvcrt$(D).lib
\r
122 EMACS_EXTRA_C_FLAGS= -D_DLL -D_MT -DUSE_CRT_DLL=1
\r
124 libc = libcmt$(D).lib
\r
125 EMACS_EXTRA_C_FLAGS= -D_MT
\r
131 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
\r
133 ADVAPI32 = advapi32.lib
\r
134 COMCTL32 = comctl32.lib
\r
135 COMDLG32 = comdlg32.lib
\r
138 SHELL32 = shell32.lib
\r
139 USER32 = user32.lib
\r
140 WSOCK32 = wsock32.lib
\r
142 WINSPOOL = winspool.lib
\r
144 UNISCRIBE = usp10.lib
\r
148 DEBUG_CFLAGS = -DEMACSDEBUG
\r
153 MWINDOWS = -subsystem:windows -entry:mainCRTStartup
\r
155 CFLAGS = -I. $(ARCH_CFLAGS) -D_CRT_SECURE_NO_WARNINGS \
\r
156 $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
\r
157 ESC_CFLAGS = -I. $(ARCH_CFLAGS) -D_CRT_SECURE_NO_WARNINGS \
\r
158 $(DEBUG_CFLAGS) $(ESC_USER_CFLAGS) $(LOCAL_FLAGS)
\r
160 #SYS_LDFLAGS = -nologo -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net setargv.obj
\r
161 SYS_LDFLAGS = -nologo -manifest -dynamicbase:no -incremental:no -version:3.10 -swaprun:cd -swaprun:net setargv.obj
\r
163 # see comments in allocate_heap in w32heap.c before changing any of the
\r
164 # -stack, -heap, or -base settings.
\r
165 !if "$(ARCH)" == "i386"
\r
166 TEMACS_EXTRA_LINK = -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -pdb:$(BLD)\temacs.pdb -machine:x86 $(SUBSYSTEM_CONSOLE) -entry:_start -map:$(BLD)\temacs.map $(EXTRA_LINK)
\r
167 !elseif "$(ARCH)" == "AMD64"
\r
168 TEMACS_EXTRA_LINK = -stack:0x00800000 -heap:0x00100000 -base:0x400000000 -pdb:$(BLD)\temacs.pdb -machine:x64 $(SUBSYSTEM_CONSOLE) -entry:_start -map:$(BLD)\temacs.map $(EXTRA_LINK)
\r
176 $(OBJDIR):; -mkdir $(OBJDIR)
\r
177 BLD = $(OBJDIR)/$(ARCH)
\r
178 stamp_BLD: $(OBJDIR)
\r
182 COMPILER_TEMP_FILES = *.pdb
\r
186 IFNOTSAMEDIR = if not exist ..\$(DIRNAME)_same-dir.tst
\r
188 FOREACH = for %%f in (
\r
204 DEBUG_LINK = -debug
\r
208 # gcc-specific pragma (ignore for MSVC)
\r
209 PRAGMA_SYSTEM_HEADER =
\r
211 !if "$(ARCH)" == "i386"
\r
213 #ARCH_CFLAGS = -nologo -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
\r
214 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zl -Zp8 -W2 -Od -Gd $(DEBUG_FLAG)
\r
216 #ARCH_CFLAGS = -nologo -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)
\r
217 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zl -Zp8 -W2 -Oi -Ot -Oy- -Ob2 -GF -Gy -Gd $(DEBUG_FLAG)
\r
219 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
220 EMACS_HEAPSIZE = 27
\r
221 EMACS_PURESIZE = 5000000
\r
222 EMACS_MANIFEST = emacs-x86.manifest
\r
225 !if "$(ARCH)" == "mips"
\r
226 ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
\r
227 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
228 EMACS_HEAPSIZE = 27
\r
229 EMACS_PURESIZE = 5000000
\r
230 EMACS_MANIFEST = emacs-mips.manifest
\r
233 !if "$(ARCH)" == "alpha"
\r
234 !if "$(BUILD_TYPE)" == "spd"
\r
235 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=
\r
237 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=
\r
239 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
240 EMACS_HEAPSIZE = 27
\r
241 EMACS_PURESIZE = 5000000
\r
242 EMACS_MANIFEST = emacs-alpha.manifest
\r
245 !if "$(ARCH)" == "ppc"
\r
246 # These flags are a guess...if they don't work, please send me mail.
\r
247 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
248 EMACS_HEAPSIZE = 27
\r
249 EMACS_PURESIZE = 5000000
\r
250 EMACS_MANIFEST = emacs-ppc.manifest
\r
253 !if "$(ARCH)" == "AMD64"
\r
255 ARCH_CFLAGS = -nologo -D_AMD64_=1 -DWIN64 -D_WIN64 -DWIN32 -D_WIN32 -c -Zl -Zp8 -W2 -Od -Gd -Wp64 $(DEBUG_FLAG)
\r
257 ARCH_CFLAGS = -nologo -D_AMD64_=1 -DWIN64 -D_WIN64 -DWIN32 -D_WIN32 -c -Zl -Zp8 -W2 -O2x -GF -Gy -Gd $(DEBUG_FLAG)
\r
259 ARCH_LDFLAGS = $(SYS_LDFLAGS) -machine:x64
\r
260 ARCH_RCFLAGS = -DWIN64
\r
261 EMACS_HEAPSIZE = 42
\r
262 EMACS_PURESIZE = 10000000
\r
263 EMACS_MANIFEST = emacs-x64.manifest
\r
266 !ERROR Unknown architecture type "$(ARCH)".
\r
273 LINK_FLAGS = $(ARCH_LDFLAGS) $(DEBUG_LINK) $(USER_LDFLAGS)
\r
275 # From MSVC 5.0 onwards, it seem base relocation information is not included,
\r
276 # at least in release builds. We need to ensure the reloc info is included
\r
277 # in order to use the MSVC profiler.
\r
278 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
\r
281 EXTRA_LINK = -profile
\r
285 # If the compiler supports compiling multiple .c files to .o files at
\r
286 # one time, use this feature.
\r
288 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
\r
290 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
\r
293 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
\r