]> code.delx.au - gnu-emacs/blob - nt/nmake.defs
a771f1df5d3b66b6fdb51d51754385f3203de2bb
[gnu-emacs] / nt / nmake.defs
1 # -*- Makefile -*- definition file for building GNU Emacs on Windows NT.
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 # 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4
5 # This file is part of GNU Emacs.
6
7 # GNU Emacs is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # GNU Emacs is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19
20
21 # Ensure 'all' is the default target
22 all:
23
24 THE_SHELL = $(COMSPEC)
25 SHELLTYPE=CMD
26
27 MAKETYPE=nmake
28
29 CURDIR = $(MAKEDIR:\=/)
30 THISDIR = $(MAKEDIR)
31
32 ALL_DEPS = $**
33
34 SUBSYSTEM_WINDOWS=-subsystem:windows
35 SUBSYSTEM_CONSOLE=-subsystem:console
36
37 # INSTALL_DIR is the directory into which emacs will be installed.
38 #
39 !ifndef INSTALL_DIR
40 INSTALL_DIR = $(CURDIR)/..
41 !endif
42
43 # Ensure EMACSLOADPATH is defined in the environment.
44 #
45 !if [set EMACSLOADPATH=foo]
46 !endif
47
48 # Allow detection of builds with MSVC 5 or later, so we can
49 # speed up compiles (see rule at end).
50 #
51 _NMAKE_VER_5=162
52 _NMAKE_VER_4=0
53
54 !IFNDEF _NMAKE_VER
55 _NMAKE_VER=$(_NMAKE_VER_4)
56 !ENDIF
57
58 # Check that the INCLUDE and LIB environment variables are set.
59 #
60 !ifndef INCLUDE
61 !error The INCLUDE environment variable needs to be set.
62 !endif
63 !ifndef LIB
64 !error The LIB environment variable needs to be set.
65 !endif
66
67 # Determine the architecture we're running on.
68 # Define ARCH for our purposes;
69 # Define CPU for use by ntwin32.mak;
70 # Define CONFIG_H to the appropriate config.h for the system;
71 #
72 !ifdef PROCESSOR_ARCHITECTURE
73 # We're on Windows NT
74 CPU = $(PROCESSOR_ARCHITECTURE)
75 CONFIG_H = config.nt
76 OS_TYPE = windowsnt
77 ! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
78 ARCH = i386
79 CPU = i386
80 ! else
81 ! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
82 ARCH = mips
83 ! else
84 ! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
85 ARCH = alpha
86 ! else
87 ! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
88 ARCH = ppc
89 ! else
90 ! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
91 ! endif
92 ! endif
93 ! endif
94 ! endif
95 !else
96 # We're on Windows 95
97 ARCH = i386
98 CPU = i386
99 CONFIG_H = config.nt
100 OS_TYPE = windows95
101 !endif
102
103 AR = lib
104 AR_OUT = -out:
105 CC = cl
106 CC_OUT = -Fo
107 LINK = link
108 LINK_OUT = -out:
109 RC = rc
110 RC_OUT = -Fo
111 RC_INCLUDE = -i
112
113 libc = libc.lib
114 baselibs =
115 O = obj
116 A = lib
117
118 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
119
120 ADVAPI32 = advapi32.lib
121 COMCTL32 = comctl32.lib
122 COMDLG32 = comdlg32.lib
123 GDI32 = gdi32.lib
124 MPR = mpr.lib
125 SHELL32 = shell32.lib
126 USER32 = user32.lib
127 WSOCK32 = wsock32.lib
128 WINMM = winmm.lib
129 WINSPOOL = winspool.lib
130 OLE32 = ole32.lib
131 UNISCRIBE = usp10.lib
132 UUID = uuid.lib
133
134 !ifdef NOOPT
135 DEBUG_CFLAGS = -DEMACSDEBUG
136 !else
137 DEBUG_CFLAGS =
138 !endif
139
140 !ifdef ENABLECHECKS
141 CHECKING_CFLAGS = -DENABLE_CHECKING -DXASSERTS
142 !else
143 CHECKING_CFLAGS =
144 !endif
145
146 CFLAGS = -I. $(ARCH_CFLAGS) \
147 $(DEBUG_CFLAGS) $(CHECKING_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
148 EMACS_EXTRA_C_FLAGS =
149
150 SYS_LDFLAGS = -nologo -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net setargv.obj
151
152 # see comments in allocate_heap in w32heap.c before changing any of the
153 # -stack, -heap, or -base settings.
154 TEMACS_EXTRA_LINK = -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) $(SUBSYSTEM_CONSOLE) -entry:_start -map:$(BLD)\temacs.map $(EXTRA_LINK)
155
156 !ifdef NOOPT
157 OBJDIR = obj
158 !else
159 OBJDIR = obj-spd
160 !endif
161 $(OBJDIR):; -mkdir $(OBJDIR)
162 BLD = $(OBJDIR)/$(ARCH)
163 stamp_BLD: $(OBJDIR)
164 -mkdir "$(BLD)"
165 echo $(BLD) > $@
166
167 COMPILER_TEMP_FILES = *.pdb
168
169 CP = cp -f
170 CP_DIR = cp -rf
171 IFNOTSAMEDIR = if not exist ..\same-dir.tst
172 ENDIF =
173 FOREACH = for %%f in (
174 FORVAR = %%f
175 FORDO = ) do
176 ENDFOR =
177 ARGQUOTE = "
178 # "
179 DQUOTE = \"
180 DEL = rm
181 DEL_TREE = rm -r
182
183 !ifdef NODEBUG
184 DEBUG_FLAG =
185 DEBUG_LINK =
186 !else
187 DEBUG_FLAG = -Zi
188 DEBUG_LINK = -debug:full
189 !endif
190
191 !if "$(ARCH)" == "i386"
192 !ifdef NOOPT
193 ARCH_CFLAGS = -nologo -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
194 !else
195 ARCH_CFLAGS = -nologo -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)
196 !endif
197 ARCH_LDFLAGS = $(SYS_LDFLAGS)
198
199 !else
200 !if "$(ARCH)" == "mips"
201 ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
202 ARCH_LDFLAGS = $(SYS_LDFLAGS)
203
204 !else
205 !if "$(ARCH)" == "alpha"
206 !if "$(BUILD_TYPE)" == "spd"
207 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=
208 !else
209 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=
210 !endif
211 ARCH_LDFLAGS = $(SYS_LDFLAGS)
212
213 !else
214 !if "$(ARCH)" == "ppc"
215 # These flags are a guess...if they don't work, please send me mail.
216 ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od
217 ARCH_LDFLAGS = $(SYS_LDFLAGS)
218
219 !else
220 !ERROR Unknown architecture type "$(ARCH)".
221 !endif
222 !endif
223 !endif
224 !endif
225
226 LINK_FLAGS = $(ARCH_LDFLAGS) $(DEBUG_LINK) $(USER_LDFLAGS)
227
228 # From MSVC 5.0 onwards, it seem base relocation information is not included,
229 # at least in release builds. We need to ensure the reloc info is included
230 # in order to use the MSVC profiler.
231 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
232 EXTRA_LINK =
233 !ELSE
234 EXTRA_LINK = -profile
235 !ENDIF
236
237 #
238 # If the compiler supports compiling multiple .c files to .o files at
239 # one time, use this feature.
240 #
241 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
242 .c{$(BLD)}.obj:
243 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
244 !ELSE
245 .c{$(BLD)}.obj::
246 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
247 !ENDIF
248
249 # arch-tag: fefa49b0-c23c-46c7-9094-cab2a405058e