2 # Makefile definition file for building GNU Emacs on Windows NT
4 # GNU Emacs is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # GNU Emacs is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with GNU Emacs; see the file COPYING. If not, write to
16 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 02111-1307, USA.
19 # Ensure 'all' is the default target
22 THE_SHELL = $(COMSPEC)
27 SUBSYSTEM_WINDOWS=-subsystem:windows
28 SUBSYSTEM_CONSOLE=-subsystem:console
30 CURDIR = $(MAKEDIR:\=/)
32 # INSTALL_DIR is the directory into which emacs will be installed.
35 INSTALL_DIR = $(CURDIR)/..
38 # Allow detection of builds with MSVC 5 or later, so we can
39 # speed up compiles (see rule at end).
45 _NMAKE_VER=$(_NMAKE_VER_4)
48 # Check that the INCLUDE and LIB environment variables are set.
51 !error The INCLUDE environment variable needs to be set.
54 !error The LIB environment variable needs to be set.
57 # Determine the architecture we're running on.
58 # Define ARCH for our purposes;
59 # Define CPU for use by ntwin32.mak;
60 # Define CONFIG_H to the appropriate config.h for the system;
62 !ifdef PROCESSOR_ARCHITECTURE
64 CPU = $(PROCESSOR_ARCHITECTURE)
67 ! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
71 ! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
74 ! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
77 ! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
80 ! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
108 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
110 ADVAPI32 = advapi32.lib
111 COMDLG32 = comdlg32.lib
114 SHELL32 = shell32.lib
116 WSOCK32 = wsock32.lib
119 DEBUG_CFLAGS = -DEMACSDEBUG
123 CFLAGS = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \
124 -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
125 EMACS_EXTRA_C_FLAGS =
127 SYS_LDFLAGS = -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net
129 # see comments in allocate_heap in w32heap.c before changing any of the
130 # -stack, -heap, or -base settings.
131 TEMACS_EXTRA_LINK = -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:both -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) $(SUBSYSTEM_CONSOLE) -entry:_start -map:$(BLD)\temacs.map $(EXTRA_LINK)
138 $(OBJDIR):; -mkdir $(OBJDIR)
139 BLD = $(OBJDIR)/$(ARCH)
145 IFNOTSAMEDIR = if not exist ..\same-dir.tst
147 FOREACH = for %%f in (
156 # The location of the icon file
157 EMACS_ICON_PATH = ../nt/emacs.ico
165 !if "$(ARCH)" == "i386"
167 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
169 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)
171 ARCH_LDFLAGS = $(SYS_LDFLAGS)
174 !if "$(ARCH)" == "mips"
175 ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
176 ARCH_LDFLAGS = $(SYS_LDFLAGS)
179 !if "$(ARCH)" == "alpha"
180 !if "$(BUILD_TYPE)" == "spd"
181 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=
183 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=
185 ARCH_LDFLAGS = $(SYS_LDFLAGS)
188 !if "$(ARCH)" == "ppc"
189 # These flags are a guess...if they don't work, please send me mail.
190 ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od
191 ARCH_LDFLAGS = $(SYS_LDFLAGS)
194 !ERROR Unknown architecture type "$(ARCH)".
200 LINK_FLAGS = $(ARCH_LDFLAGS) $(USER_LDFLAGS)
202 # From MSVC 5.0 onwards, it seem base relocation information is not included,
203 # at least in release builds. We need to ensure the reloc info is included
204 # in order to use the MSVC profiler.
205 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
208 EXTRA_LINK = -profile
212 # If the compiler supports compiling multiple .c files to .o files at
213 # one time, use this feature.
215 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
217 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
220 $(CC) $(CFLAGS) -Fo$(BLD)\ $<