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 # INSTALL_DIR is the directory into which emacs will be installed.
33 INSTALL_DIR = $(MAKEDIR)/..
36 # Allow detection of builds with MSVC 5 or later, so we can
37 # speed up compiles (see rule at end).
43 _NMAKE_VER=$(_NMAKE_VER_4)
46 # Check that the INCLUDE and LIB environment variables are set.
49 !error The INCLUDE environment variable needs to be set.
52 !error The LIB environment variable needs to be set.
55 # Determine the architecture we're running on.
56 # Define ARCH for our purposes;
57 # Define CPU for use by ntwin32.mak;
58 # Define CONFIG_H to the appropriate config.h for the system;
60 !ifdef PROCESSOR_ARCHITECTURE
62 CPU = $(PROCESSOR_ARCHITECTURE)
65 ! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
69 ! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
72 ! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
75 ! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
78 ! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
106 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
108 ADVAPI32 = advapi32.lib
109 COMDLG32 = comdlg32.lib
112 SHELL32 = shell32.lib
114 WSOCK32 = wsock32.lib
117 DEBUG_CFLAGS = -DEMACSDEBUG
121 CFLAGS = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \
122 -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
123 EMACS_EXTRA_C_FLAGS =
125 SYS_LDFLAGS = -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net
127 # see comments in allocate_heap in w32heap.c before changing any of the
128 # -stack, -heap, or -base settings.
129 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)
136 $(OBJDIR):; -mkdir $(OBJDIR)
137 BLD = $(OBJDIR)/$(ARCH)
143 IFNOTSAMEDIR = if not exist ..\same-dir.tst
145 FOREACH = for %%f in (
154 # The location of the icon file
155 EMACS_ICON_PATH = ../nt/emacs.ico
163 !if "$(ARCH)" == "i386"
165 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
167 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)
169 ARCH_LDFLAGS = $(SYS_LDFLAGS)
172 !if "$(ARCH)" == "mips"
173 ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
174 ARCH_LDFLAGS = $(SYS_LDFLAGS)
177 !if "$(ARCH)" == "alpha"
178 !if "$(BUILD_TYPE)" == "spd"
179 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=
181 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=
183 ARCH_LDFLAGS = $(SYS_LDFLAGS)
186 !if "$(ARCH)" == "ppc"
187 # These flags are a guess...if they don't work, please send me mail.
188 ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od
189 ARCH_LDFLAGS = $(SYS_LDFLAGS)
192 !ERROR Unknown architecture type "$(ARCH)".
198 LINK_FLAGS = $(ARCH_LDFLAGS) $(USER_LDFLAGS)
200 # From MSVC 5.0 onwards, it seem base relocation information is not included,
201 # at least in release builds. We need to ensure the reloc info is included
202 # in order to use the MSVC profiler.
203 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
206 EXTRA_LINK = -profile
210 # If the compiler supports compiling multiple .c files to .o files at
211 # one time, use this feature.
213 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
215 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
218 $(CC) $(CFLAGS) -Fo$(BLD)\ $<