2 # Makefile definition file for building GNU Emacs on the Microsoft W32 API.
\r
3 # Copyright (c) 2000-2001 Free Software Foundation, Inc.
\r
5 # GNU Emacs is free software; you can redistribute it and/or modify
\r
6 # it under the terms of the GNU General Public License as published by
\r
7 # the Free Software Foundation; either version 2, or (at your option)
\r
10 # GNU Emacs is distributed in the hope that it will be useful,
\r
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 # GNU General Public License for more details.
\r
15 # You should have received a copy of the GNU General Public License
\r
16 # along with GNU Emacs; see the file COPYING. If not, write to
\r
17 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
\r
18 # Boston, MA 02111-1307, USA.
\r
20 # Ensure 'all' is the default target
\r
23 THE_SHELL = $(COMSPEC)
\r
28 CURDIR = $(MAKEDIR:\=/)
\r
29 THISDIR = $(MAKEDIR)
\r
33 SUBSYSTEM_WINDOWS=-subsystem:windows
\r
34 SUBSYSTEM_CONSOLE=-subsystem:console
\r
36 # INSTALL_DIR is the directory into which emacs will be installed.
\r
39 INSTALL_DIR = $(CURDIR)/..
\r
42 # Ensure EMACSLOADPATH is defined in the environment.
\r
44 !if [set EMACSLOADPATH=foo]
\r
47 # Allow detection of builds with MSVC 5 or later, so we can
\r
48 # speed up compiles (see rule at end).
\r
54 _NMAKE_VER=$(_NMAKE_VER_4)
\r
57 # Check that the INCLUDE and LIB environment variables are set.
\r
60 !error The INCLUDE environment variable needs to be set.
\r
63 !error The LIB environment variable needs to be set.
\r
66 # Determine the architecture we're running on.
\r
67 # Define ARCH for our purposes;
\r
68 # Define CPU for use by ntwin32.mak;
\r
69 # Define CONFIG_H to the appropriate config.h for the system;
\r
71 !ifdef PROCESSOR_ARCHITECTURE
\r
72 # We're on Windows NT
\r
73 CPU = $(PROCESSOR_ARCHITECTURE)
\r
74 CONFIG_H = config.nt
\r
76 ! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
\r
80 ! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
\r
83 ! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
\r
86 ! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
\r
89 ! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
\r
95 # We're on Windows 95
\r
98 CONFIG_H = config.nt
\r
117 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
\r
119 ADVAPI32 = advapi32.lib
\r
120 COMDLG32 = comdlg32.lib
\r
123 SHELL32 = shell32.lib
\r
124 USER32 = user32.lib
\r
125 WSOCK32 = wsock32.lib
\r
128 DEBUG_CFLAGS = -DEMACSDEBUG
\r
132 CFLAGS = -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 $(ARCH_CFLAGS) -D$(ARCH) \
\r
133 -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
\r
134 EMACS_EXTRA_C_FLAGS =
\r
136 SYS_LDFLAGS = -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net setargv.obj
\r
138 # see comments in allocate_heap in w32heap.c before changing any of the
\r
139 # -stack, -heap, or -base settings.
\r
140 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
147 $(OBJDIR):; -mkdir $(OBJDIR)
\r
148 BLD = $(OBJDIR)/$(ARCH)
\r
152 COMPILER_TEMP_FILES = *.pdb
\r
156 IFNOTSAMEDIR = if not exist ..\same-dir.tst
\r
158 FOREACH = for %%f in (
\r
172 DEBUG_LINK = -debug:full -debugtype:both
\r
175 !if "$(ARCH)" == "i386"
\r
177 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
\r
179 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)
\r
181 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
184 !if "$(ARCH)" == "mips"
\r
185 ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
\r
186 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
189 !if "$(ARCH)" == "alpha"
\r
190 !if "$(BUILD_TYPE)" == "spd"
\r
191 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=
\r
193 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=
\r
195 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
198 !if "$(ARCH)" == "ppc"
\r
199 # These flags are a guess...if they don't work, please send me mail.
\r
200 ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od
\r
201 ARCH_LDFLAGS = $(SYS_LDFLAGS)
\r
204 !ERROR Unknown architecture type "$(ARCH)".
\r
210 LINK_FLAGS = $(ARCH_LDFLAGS) $(DEBUG_LINK) $(USER_LDFLAGS)
\r
212 # From MSVC 5.0 onwards, it seem base relocation information is not included,
\r
213 # at least in release builds. We need to ensure the reloc info is included
\r
214 # in order to use the MSVC profiler.
\r
215 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
\r
218 EXTRA_LINK = -profile
\r
222 # If the compiler supports compiling multiple .c files to .o files at
\r
223 # one time, use this feature.
\r
225 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
\r
227 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
\r
230 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
\r