1 # -*- Makefile -*- definition file for building GNU Emacs on Windows NT.
\r
2 # Copyright (c) 2000-2001 Free Software Foundation, Inc.
\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
27 CURDIR = $(MAKEDIR:\=/)
\r
28 THISDIR = $(MAKEDIR)
\r
32 SUBSYSTEM_WINDOWS=-subsystem:windows
\r
33 SUBSYSTEM_CONSOLE=-subsystem:console
\r
35 # INSTALL_DIR is the directory into which emacs will be installed.
\r
38 INSTALL_DIR = $(CURDIR)/..
\r
41 # Ensure EMACSLOADPATH is defined in the environment.
\r
43 !if [set EMACSLOADPATH=foo]
\r
46 # Allow detection of builds with MSVC 5 or later, so we can
\r
47 # speed up compiles (see rule at end).
\r
53 _NMAKE_VER=$(_NMAKE_VER_4)
\r
56 # Check that the INCLUDE and LIB environment variables are set.
\r
59 !error The INCLUDE environment variable needs to be set.
\r
62 !error The LIB environment variable needs to be set.
\r
65 # Determine the architecture we're running on.
\r
66 # Define ARCH for our purposes;
\r
67 # Define CPU for use by ntwin32.mak;
\r
68 # Define CONFIG_H to the appropriate config.h for the system;
\r
70 !ifdef PROCESSOR_ARCHITECTURE
\r
71 # We're on Windows NT
\r
72 CPU = $(PROCESSOR_ARCHITECTURE)
\r
73 CONFIG_H = config.nt
\r
75 ! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
\r
79 ! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
\r
82 ! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
\r
85 ! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
\r
88 ! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
\r
94 # We're on Windows 95
\r
97 CONFIG_H = config.nt
\r
116 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
\r
118 ADVAPI32 = advapi32.lib
\r
119 COMDLG32 = comdlg32.lib
\r
122 SHELL32 = shell32.lib
\r
123 USER32 = user32.lib
\r
124 WSOCK32 = wsock32.lib
\r
126 WINSPOOL = winspool.lib
\r
129 DEBUG_CFLAGS = -DEMACSDEBUG
\r
133 CFLAGS = -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 $(ARCH_CFLAGS) -D$(ARCH) \
\r
134 -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
\r
135 EMACS_EXTRA_C_FLAGS =
\r
137 SYS_LDFLAGS = -nologo -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net setargv.obj
\r
139 # see comments in allocate_heap in w32heap.c before changing any of the
\r
140 # -stack, -heap, or -base settings.
\r
141 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
148 $(OBJDIR):; -mkdir $(OBJDIR)
\r
149 BLD = $(OBJDIR)/$(ARCH)
\r
153 COMPILER_TEMP_FILES = *.pdb
\r
157 IFNOTSAMEDIR = if not exist ..\same-dir.tst
\r
159 FOREACH = for %%f in (
\r
173 DEBUG_LINK = -debug:full -debugtype:both
\r
176 !if "$(ARCH)" == "i386"
\r
178 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
\r
180 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)
\r
182 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
185 !if "$(ARCH)" == "mips"
\r
186 ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
\r
187 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
190 !if "$(ARCH)" == "alpha"
\r
191 !if "$(BUILD_TYPE)" == "spd"
\r
192 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=
\r
194 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=
\r
196 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
199 !if "$(ARCH)" == "ppc"
\r
200 # These flags are a guess...if they don't work, please send me mail.
\r
201 ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od
\r
202 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
205 !ERROR Unknown architecture type "$(ARCH)".
\r
211 LINK_FLAGS = $(ARCH_LDFLAGS) $(DEBUG_LINK) $(USER_LDFLAGS)
\r
213 # From MSVC 5.0 onwards, it seem base relocation information is not included,
\r
214 # at least in release builds. We need to ensure the reloc info is included
\r
215 # in order to use the MSVC profiler.
\r
216 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
\r
219 EXTRA_LINK = -profile
\r
223 # If the compiler supports compiling multiple .c files to .o files at
\r
224 # one time, use this feature.
\r
226 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
\r
228 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
\r
231 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
\r
234 # arch-tag: fefa49b0-c23c-46c7-9094-cab2a405058e
\r