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 CURDIR = $(MAKEDIR:\=/)
32 SUBSYSTEM_WINDOWS=-subsystem:windows
33 SUBSYSTEM_CONSOLE=-subsystem:console
35 # INSTALL_DIR is the directory into which emacs will be installed.
38 INSTALL_DIR = $(CURDIR)/..
41 # Allow detection of builds with MSVC 5 or later, so we can
42 # speed up compiles (see rule at end).
48 _NMAKE_VER=$(_NMAKE_VER_4)
51 # Check that the INCLUDE and LIB environment variables are set.
54 !error The INCLUDE environment variable needs to be set.
57 !error The LIB environment variable needs to be set.
60 # Determine the architecture we're running on.
61 # Define ARCH for our purposes;
62 # Define CPU for use by ntwin32.mak;
63 # Define CONFIG_H to the appropriate config.h for the system;
65 !ifdef PROCESSOR_ARCHITECTURE
67 CPU = $(PROCESSOR_ARCHITECTURE)
70 ! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
74 ! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
77 ! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
80 ! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
83 ! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
111 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
113 ADVAPI32 = advapi32.lib
114 COMDLG32 = comdlg32.lib
117 SHELL32 = shell32.lib
119 WSOCK32 = wsock32.lib
122 DEBUG_CFLAGS = -DEMACSDEBUG
126 CFLAGS = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \
127 -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
128 EMACS_EXTRA_C_FLAGS =
130 SYS_LDFLAGS = -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net
132 # see comments in allocate_heap in w32heap.c before changing any of the
133 # -stack, -heap, or -base settings.
134 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)
141 $(OBJDIR):; -mkdir $(OBJDIR)
142 BLD = $(OBJDIR)/$(ARCH)
146 COMPILER_TEMP_FILES = *.pdb
150 IFNOTSAMEDIR = if not exist ..\same-dir.tst
152 FOREACH = for %%f in (
167 !if "$(ARCH)" == "i386"
169 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
171 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)
173 ARCH_LDFLAGS = $(SYS_LDFLAGS)
176 !if "$(ARCH)" == "mips"
177 ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
178 ARCH_LDFLAGS = $(SYS_LDFLAGS)
181 !if "$(ARCH)" == "alpha"
182 !if "$(BUILD_TYPE)" == "spd"
183 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=
185 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=
187 ARCH_LDFLAGS = $(SYS_LDFLAGS)
190 !if "$(ARCH)" == "ppc"
191 # These flags are a guess...if they don't work, please send me mail.
192 ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od
193 ARCH_LDFLAGS = $(SYS_LDFLAGS)
196 !ERROR Unknown architecture type "$(ARCH)".
202 LINK_FLAGS = $(ARCH_LDFLAGS) $(USER_LDFLAGS)
204 # From MSVC 5.0 onwards, it seem base relocation information is not included,
205 # at least in release builds. We need to ensure the reloc info is included
206 # in order to use the MSVC profiler.
207 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
210 EXTRA_LINK = -profile
214 # If the compiler supports compiling multiple .c files to .o files at
215 # one time, use this feature.
217 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
219 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
222 $(CC) $(CFLAGS) -Fo$(BLD)\ $<