2 # Makefile definition file for building GNU Emacs on Windows NT
\r
4 # GNU Emacs is free software; you can redistribute it and/or modify
\r
5 # it under the terms of the GNU General Public License as published by
\r
6 # the Free Software Foundation; either version 2, or (at your option)
\r
9 # GNU Emacs is distributed in the hope that it will be useful,
\r
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
12 # GNU General Public License for more details.
\r
14 # You should have received a copy of the GNU General Public License
\r
15 # along with GNU Emacs; see the file COPYING. If not, write to
\r
16 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
\r
17 # Boston, MA 02111-1307, USA.
\r
19 # Ensure 'all' is the default target
\r
22 THE_SHELL = $(COMSPEC)
\r
26 SUBSYSTEM_WINDOWS=-subsystem:windows
\r
27 SUBSYSTEM_CONSOLE=-subsystem:console
\r
29 # INSTALL_DIR is the directory into which emacs will be installed.
\r
32 INSTALL_DIR = $(MAKEDIR)/..
\r
35 # Allow detection of builds with MSVC 5 or later, so we can
\r
36 # speed up compiles (see rule at end).
\r
42 _NMAKE_VER=$(_NMAKE_VER_4)
\r
45 # Check that the INCLUDE and LIB environment variables are set.
\r
48 !error The INCLUDE environment variable needs to be set.
\r
51 !error The LIB environment variable needs to be set.
\r
54 # Determine the architecture we're running on.
\r
55 # Define ARCH for our purposes;
\r
56 # Define CPU for use by ntwin32.mak;
\r
57 # Define CONFIG_H to the appropriate config.h for the system;
\r
59 !ifdef PROCESSOR_ARCHITECTURE
\r
60 # We're on Windows NT
\r
61 CPU = $(PROCESSOR_ARCHITECTURE)
\r
62 CONFIG_H = config.nt
\r
64 ! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
\r
68 ! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
\r
71 ! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
\r
74 ! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
\r
77 ! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
\r
83 # We're on Windows 95
\r
86 CONFIG_H = config.nt
\r
105 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
\r
107 ADVAPI32 = advapi32.lib
\r
108 COMDLG32 = comdlg32.lib
\r
111 SHELL32 = shell32.lib
\r
112 USER32 = user32.lib
\r
113 WSOCK32 = wsock32.lib
\r
116 DEBUG_CFLAGS = -DEMACSDEBUG
\r
120 CFLAGS = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \
\r
121 -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
\r
122 EMACS_EXTRA_C_FLAGS =
\r
124 SYS_LDFLAGS = -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net
\r
126 # see comments in allocate_heap in w32heap.c before changing any of the
\r
127 # -stack, -heap, or -base settings.
\r
128 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)
\r
135 $(OBJDIR):; -mkdir $(OBJDIR)
\r
136 BLD = $(OBJDIR)/$(ARCH)
\r
142 IFNOTSAMEDIR = if not exist ..\same-dir.tst
\r
144 FOREACH = for %%f in (
\r
153 # The location of the icon file
\r
154 EMACS_ICON_PATH = ../nt/emacs.ico
\r
162 !if "$(ARCH)" == "i386"
\r
164 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
\r
166 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)
\r
168 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
171 !if "$(ARCH)" == "mips"
\r
172 ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
\r
173 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
176 !if "$(ARCH)" == "alpha"
\r
177 !if "$(BUILD_TYPE)" == "spd"
\r
178 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=
\r
180 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=
\r
182 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
185 !if "$(ARCH)" == "ppc"
\r
186 # These flags are a guess...if they don't work, please send me mail.
\r
187 ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od
\r
188 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
191 !ERROR Unknown architecture type "$(ARCH)".
\r
197 LINK_FLAGS = $(ARCH_LDFLAGS) $(USER_LDFLAGS)
\r
199 # From MSVC 5.0 onwards, it seem base relocation information is not included,
\r
200 # at least in release builds. We need to ensure the reloc info is included
\r
201 # in order to use the MSVC profiler.
\r
202 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
\r
205 EXTRA_LINK = -profile
\r
209 # If the compiler supports compiling multiple .c files to .o files at
\r
210 # one time, use this feature.
\r
212 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
\r
214 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
\r
217 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
\r