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)
29 SUBSYSTEM_WINDOWS=-subsystem:windows
30 SUBSYSTEM_CONSOLE=-subsystem:console
32 CURDIR = $(MAKEDIR:\=/)
34 # INSTALL_DIR is the directory into which emacs will be installed.
37 INSTALL_DIR = $(CURDIR)/..
40 # Allow detection of builds with MSVC 5 or later, so we can
41 # speed up compiles (see rule at end).
47 _NMAKE_VER=$(_NMAKE_VER_4)
50 # Check that the INCLUDE and LIB environment variables are set.
53 !error The INCLUDE environment variable needs to be set.
56 !error The LIB environment variable needs to be set.
59 # Determine the architecture we're running on.
60 # Define ARCH for our purposes;
61 # Define CPU for use by ntwin32.mak;
62 # Define CONFIG_H to the appropriate config.h for the system;
64 !ifdef PROCESSOR_ARCHITECTURE
66 CPU = $(PROCESSOR_ARCHITECTURE)
69 ! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
73 ! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
76 ! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
79 ! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
82 ! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
110 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
112 ADVAPI32 = advapi32.lib
113 COMDLG32 = comdlg32.lib
116 SHELL32 = shell32.lib
118 WSOCK32 = wsock32.lib
121 DEBUG_CFLAGS = -DEMACSDEBUG
125 CFLAGS = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \
126 -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
127 EMACS_EXTRA_C_FLAGS =
129 SYS_LDFLAGS = -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net
131 # see comments in allocate_heap in w32heap.c before changing any of the
132 # -stack, -heap, or -base settings.
133 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)
140 $(OBJDIR):; -mkdir $(OBJDIR)
141 BLD = $(OBJDIR)/$(ARCH)
145 COMPILER_TEMP_FILES = *.pdb
149 IFNOTSAMEDIR = if not exist ..\same-dir.tst
151 FOREACH = for %%f in (
166 !if "$(ARCH)" == "i386"
168 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
170 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)
172 ARCH_LDFLAGS = $(SYS_LDFLAGS)
175 !if "$(ARCH)" == "mips"
176 ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
177 ARCH_LDFLAGS = $(SYS_LDFLAGS)
180 !if "$(ARCH)" == "alpha"
181 !if "$(BUILD_TYPE)" == "spd"
182 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=
184 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=
186 ARCH_LDFLAGS = $(SYS_LDFLAGS)
189 !if "$(ARCH)" == "ppc"
190 # These flags are a guess...if they don't work, please send me mail.
191 ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od
192 ARCH_LDFLAGS = $(SYS_LDFLAGS)
195 !ERROR Unknown architecture type "$(ARCH)".
201 LINK_FLAGS = $(ARCH_LDFLAGS) $(USER_LDFLAGS)
203 # From MSVC 5.0 onwards, it seem base relocation information is not included,
204 # at least in release builds. We need to ensure the reloc info is included
205 # in order to use the MSVC profiler.
206 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
209 EXTRA_LINK = -profile
213 # If the compiler supports compiling multiple .c files to .o files at
214 # one time, use this feature.
216 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
218 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
221 $(CC) $(CFLAGS) -Fo$(BLD)\ $<