1 # -*- Makefile -*- definition file for building GNU Emacs on Windows NT.
\r
2 # Copyright (C) 2000-2012 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
28 CURDIR = $(MAKEDIR:\=/)
\r
29 THISDIR = $(MAKEDIR)
\r
34 SUBSYSTEM_WINDOWS=-subsystem:windows
\r
35 SUBSYSTEM_CONSOLE=-subsystem:console
\r
37 # INSTALL_DIR is the directory into which emacs will be installed.
\r
40 INSTALL_DIR = $(CURDIR)/..
\r
43 # Ensure EMACSLOADPATH is defined in the environment.
\r
45 !if [set EMACSLOADPATH=foo]
\r
48 # Allow detection of builds with MSVC 5 or later, so we can
\r
49 # speed up compiles (see rule at end).
\r
55 _NMAKE_VER=$(_NMAKE_VER_4)
\r
58 # Check that the INCLUDE and LIB environment variables are set.
\r
61 !error The INCLUDE environment variable needs to be set.
\r
64 !error The LIB environment variable needs to be set.
\r
67 # Determine the architecture we're running on.
\r
68 # Define ARCH for our purposes;
\r
69 # Define CPU for use by ntwin32.mak;
\r
70 # Define CONFIG_H to the appropriate config.h for the system;
\r
72 !ifdef PROCESSOR_ARCHITECTURE
\r
73 # We're on Windows NT
\r
74 CPU = $(PROCESSOR_ARCHITECTURE)
\r
75 CONFIG_H = config.nt
\r
77 ! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
\r
81 ! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
\r
84 ! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
\r
87 ! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
\r
90 ! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
\r
96 # We're on Windows 95
\r
99 CONFIG_H = config.nt
\r
100 OS_TYPE = windows95
\r
116 libc = msvcrt$(D).lib
\r
117 EMACS_EXTRA_C_FLAGS= -D_DLL -D_MT -DUSE_CRT_DLL=1
\r
119 libc = libcmt$(D).lib
\r
120 EMACS_EXTRA_C_FLAGS= -D_MT
\r
126 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
\r
128 ADVAPI32 = advapi32.lib
\r
129 COMCTL32 = comctl32.lib
\r
130 COMDLG32 = comdlg32.lib
\r
133 SHELL32 = shell32.lib
\r
134 USER32 = user32.lib
\r
135 WSOCK32 = wsock32.lib
\r
137 WINSPOOL = winspool.lib
\r
139 UNISCRIBE = usp10.lib
\r
143 DEBUG_CFLAGS = -DEMACSDEBUG
\r
148 MWINDOWS = -subsystem:windows -entry:mainCRTStartup
\r
150 CFLAGS = -I. $(ARCH_CFLAGS) \
\r
151 $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
\r
152 ESC_CFLAGS = -I. $(ARCH_CFLAGS) \
\r
153 $(DEBUG_CFLAGS) $(ESC_USER_CFLAGS) $(LOCAL_FLAGS)
\r
155 #SYS_LDFLAGS = -nologo -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net setargv.obj
\r
157 SYS_LDFLAGS = -nologo -manifest -dynamicbase:no -debug -incremental:no -version:3.10 -swaprun:cd -swaprun:net setargv.obj
\r
159 SYS_LDFLAGS = -nologo -manifest -dynamicbase:no -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net setargv.obj
\r
162 # see comments in allocate_heap in w32heap.c before changing any of the
\r
163 # -stack, -heap, or -base settings.
\r
164 TEMACS_EXTRA_LINK = -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) $(SUBSYSTEM_CONSOLE) -entry:_start -map:$(BLD)\temacs.map $(EXTRA_LINK)
\r
171 $(OBJDIR):; -mkdir $(OBJDIR)
\r
172 BLD = $(OBJDIR)/$(ARCH)
\r
173 stamp_BLD: $(OBJDIR)
\r
177 COMPILER_TEMP_FILES = *.pdb
\r
181 IFNOTSAMEDIR = if not exist ..\$(DIRNAME)_same-dir.tst
\r
183 FOREACH = for %%f in (
\r
199 DEBUG_LINK = -debug
\r
203 # gcc-specific pragma (ignore for MSVC)
\r
204 PRAGMA_SYSTEM_HEADER =
\r
206 !if "$(ARCH)" == "i386"
\r
208 #ARCH_CFLAGS = -nologo -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
\r
209 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zl -Zp8 -W2 -Od -Gd $(DEBUG_FLAG)
\r
211 #ARCH_CFLAGS = -nologo -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)
\r
212 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zl -Zp8 -W2 -Oi -Ot -Oy- -Ob2 -GF -Gy -Gd $(DEBUG_FLAG)
\r
214 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
217 !if "$(ARCH)" == "mips"
\r
218 ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
\r
219 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
222 !if "$(ARCH)" == "alpha"
\r
223 !if "$(BUILD_TYPE)" == "spd"
\r
224 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=
\r
226 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=
\r
228 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
231 !if "$(ARCH)" == "ppc"
\r
232 # These flags are a guess...if they don't work, please send me mail.
\r
233 ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od
\r
234 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
237 !ERROR Unknown architecture type "$(ARCH)".
\r
243 LINK_FLAGS = $(ARCH_LDFLAGS) $(DEBUG_LINK) $(USER_LDFLAGS)
\r
245 # From MSVC 5.0 onwards, it seem base relocation information is not included,
\r
246 # at least in release builds. We need to ensure the reloc info is included
\r
247 # in order to use the MSVC profiler.
\r
248 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
\r
251 EXTRA_LINK = -profile
\r
255 # If the compiler supports compiling multiple .c files to .o files at
\r
256 # one time, use this feature.
\r
258 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
\r
260 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
\r
263 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
\r