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