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 # Geoff
Voelker (voelker@cs.washington.edu
) 9-6-94
25 # Define the following to build the GUI version
29 # Set INSTALL_DIR to be the directory into which you want emacs installed.
32 INSTALL_DIR
= C
:\emacs
35 # Define MSVCNT11 to be nonzero if you are using the MSVCNT
1.1 environment.
43 # Check that the INCLUDE and LIB environment variables are set.
46 !error The INCLUDE environment variable needs to be set.
49 !error The LIB environment variable needs to be set.
52 # Determine the architecture we
're running on.
53 # Define ARCH for our purposes;
54 # Define CPU for use by ntwin32.mak;
55 # Define CONFIG_H to the appropriate config.h for the system;
57 !ifdef PROCESSOR_ARCHITECTURE
59 CPU
= $
(PROCESSOR_ARCHITECTURE
)
62 ! if
"$(PROCESSOR_ARCHITECTURE)" == "x86"
66 ! if
"$(PROCESSOR_ARCHITECTURE)" == "MIPS"
69 ! if
"$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
72 ! if
"$(PROCESSOR_ARCHITECTURE)" == "PPC"
75 !error Unknown architecture type
"$(PROCESSOR_ARCHITECTURE)"
88 # Include ntwin32.mak. So far, this file seems to be supported by every
89 # Microsoft compiler on NT and Win95 and properly defines the executable
90 # names and libraries necessary to build Emacs. I do not have access
91 # to any other vendor compilers, so I do not know if they supply this
92 # file, too. For now I'll assume that they do.
94 !include
<ntwin32.mak
>
96 # Using cvtres is necessary on NT
3.10 and doesn
't hurt on later platforms.
99 # The assignment $(CC) = $(cc) fails even though variables are case sensitive.
105 # advapi32.lib is left off of $(baselibs) on NT 3.10
106 !if "$(baselibs)" == "kernel32.lib "
107 ADVAPI32 = advapi32.lib
112 # Older ntwin32.mak files do not define libc; do it for them.
117 # The base libraries for compiling Emacs on NT. With MSVC, this should
118 # include oldnames.lib.
120 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
122 BASE_LIBS = $(libc) $(baselibs)
125 # We want any debugging info in the executable.
126 !if "$(LINK)" == "link32"
129 SYS_LDFLAGS = -pdb:none -release -incremental:no -version:3.10
133 CFLAGS_COMMON = -nologo $(INC) $(ARCH_CFLAGS) $(LOCAL_FLAGS) -DWIN32_LEAN_AND_MEAN -D$(ARCH)
135 CFLAGS = $(CFLAGS_COMMON) -D_CRTAPI1=_cdecl
137 CFLAGS = $(CFLAGS_COMMON)
140 CFLAGS = $(CFLAGS) -DHAVE_NTGUI=1
144 OBJDIR = obj-$(BUILD_TYPE)
148 $(OBJDIR):; -mkdir $(OBJDIR)
149 BLD = $(OBJDIR)\$(ARCH)
154 CP_DIR = xcopy /f/r/i/e/d
156 !if "$(OS_TYPE)" == "win95"
158 DEL_TREE = deltree /y
161 # This is completely braindamaged, but it's the only routine known to be there
162 DEL_TREE
= echo y | rmdir
/s
165 # The location of the icon file
166 EMACS_ICON_PATH
= ..
\nt\emacs.ico
168 # Lets us add icons to the GNU Emacs folder
169 ADDPM
= ..
\nt\$
(BLD
)\addpm.exe
171 !if
"$(ARCH)" == "i386"
172 !if
"$(BUILD_TYPE)" == "spd"
173 ARCH_CFLAGS
= -nologo
-D_X86_
=1 -c
-Zel
-W2
-H63
-O2b2
-G5d
-Zi
175 ARCH_CFLAGS
= -nologo
-D_X86_
=1 -c
-Zel
-W2
-H63
-G3d
-Zi
-Od
177 ARCH_LDFLAGS
= -align
:0x1000 $
(SYS_LDFLAGS
)
180 !if
"$(ARCH)" == "mips"
181 ARCH_CFLAGS
= -D_MIPS_
=1 -c
-W2
-Zi
-Od
-Gt0
182 ARCH_LDFLAGS
= -align
:0x1000 $
(SYS_LDFLAGS
)
185 !if
"$(ARCH)" == "alpha"
186 ARCH_CFLAGS
= -D_ALPHA_
=1 -c
-Ze
-Zi
-W2
-D__stdcall
= -D__cdecl
=
187 ARCH_LDFLAGS
= -align
:0x2000 $
(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 = -align:0x1000 $(SYS_LDFLAGS)
196 !ERROR Unknown architecture type "$(ARCH)".