Merge from emacs-24; up to 2012-05-05T02:50:20Z!monnier@iro.umontreal.ca
[bpt/emacs.git] / nt / gmake.defs
1 # -*- Makefile -*- definition file for building GNU Emacs on Windows NT.
2 # Copyright (C) 2000-2012 Free Software Foundation, Inc.
3
4 # This file is part of GNU Emacs.
5
6 # GNU Emacs is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
18
19 # Ensure 'all' is the default target
20 all:
21
22 # NOTES
23 #
24 # I tried to force gmake to use the native shell for simplicity, by
25 # setting SHELL as below, but this didn't work reliably because of
26 # various case sensitivity niggles. Specifically, COMSPEC (which is in
27 # fact usually spelled ComSpec on NT, to make life difficult) typically
28 # references "cmd.exe" (on NT) when the file is actually called
29 # "CMD.EXE" on disk for hysterical raisons. As a result, GNU make
30 # thinks it doesn't exist (unless compiled with a switch to ignore
31 # case), and so doesn't change which shell it will invoke to execute
32 # commands.
33 #
34 # It would be possible, though very tedious using just gmake facilities,
35 # to convert the COMSPEC value to uppercase to solve this problem, but
36 # it isn't worth it. That is partly because, even when using the native
37 # shell, gmake tends to not be happy with backslashes in command
38 # strings. The obvious solution is to use forward slashes as much as
39 # possible, which can be made to work most of the time (putting
40 # filenames in quotes often helps), but there are still some internal
41 # cmd.exe commands like `del' and `copy' that won't work with them.
42 # Although it is possible to convert slashes to backslashes when
43 # necessary, gmake requires explicitly calling its subst function, which
44 # nmake does not understand). For this reason, it is simplest to
45 # mandate that rm and cp be available, so we can use Unix-format file
46 # names everywhere. (Fortunately both MS and GNU make, and the
47 # respective compilers, are happy with Unix-format names.)
48 #
49 # Since we cannot easily force the choice of a particular shell, we must
50 # make the effort to cope with whichever shell is being used.
51 # Fortunately, the only command we need to use that is shell specific is
52 # the testing of a file's existence for the purpose of working out when
53 # we are copying files to their original location. That particular
54 # requirement is abstracted easily enough.
55 #
56 # The only other problem area was the change of directory when running
57 # temacs to dump emacs.exe (where gmake doesn't support cd foo in any
58 # useful way), but that has been resolved by modifying the Windows
59 # unexec function slightly to not require the directory change while
60 # still allowing objects and binaries to be in subdirectories.
61
62 # This doesn't work.
63 #SHELL:=$(COMSPEC)
64
65 # Determine whether make is using sh or cmd/command as shell; cmd.exe
66 # will output "ECHO is on" when echo is given by itself, while sh will
67 # not produce any output.
68 sh_output := $(shell echo)
69 ifeq "$(findstring ECHO, $(sh_output))" "ECHO"
70 THE_SHELL = $(COMSPEC)$(ComSpec)
71 SHELLTYPE=CMD
72 else
73 USING_SH = 1
74 THE_SHELL = $(SHELL)
75 SHELLTYPE=SH
76 endif
77
78 MAKETYPE=gmake
79
80 # The following "ifeq" does not appear to DTRT, and therefore breaks
81 # the build on mingw32. Also the -m option does not exist in many
82 # (reasonably recent even) versions of Cygwin. These issues need to be
83 # remedied before putting this cygpath kludge back in.
84
85 # Convert CURDIR to native file name, if in Cygwin format
86 #ifeq "$(shell cygpath $(CURDIR))" "$(CURDIR)"
87 #CURDIR := $(shell cygpath -m $(CURDIR))
88 #endif
89
90 THISDIR = .
91
92 # Cygwin has changed quoting rules somewhat since b20, in a way that
93 # affects makefiles using sh as the command processor, so we need to
94 # detect which rules to use.
95 ifdef USING_SH
96 sh_output := $(shell echo [Please ignore a syntax error on the next line - it is intentional] 1>&2)
97 sh_output := $(shell echo foo")
98 # This single quote " is to fix fontification due to previous line
99 ifeq "$(sh_output)" ""
100 NEW_CYGWIN = 1
101 endif
102
103 # By default, newer versions of Cygwin mess with NTFS ACLs in an
104 # attempt to emulate traditional posix file permissions. This can
105 # cause bad effects, such as .exe files that are missing the
106 # FILE_EXECUTE/FILE_GENERIC_EXECUTE permissions when they are created
107 # with Cygwin commands that don't expect to be creating executable
108 # files. Then when we later use a non-Cygwin program to create the
109 # real .exe, the previous Cygwin defined ACL sticks.
110 CYGWIN=nontsec
111 export CYGWIN
112 endif
113
114 ALL_DEPS = $^
115 EMPTY =
116 SPACE = $(EMPTY) $(EMPTY)
117
118 SUBSYSTEM_WINDOWS=-Wl,-subsystem,windows
119 SUBSYSTEM_CONSOLE=-Wl,-subsystem,console
120
121 # INSTALL_DIR is the directory into which emacs will be installed.
122 #
123 ifndef INSTALL_DIR
124 INSTALL_DIR = $(CURDIR)/..
125 endif
126
127 export EMACSLOADPATH
128
129 # Determine the architecture we're running on.
130 # Define ARCH for our purposes;
131 # Define CPU for use by ntwin32.mak;
132 # Define CONFIG_H to the appropriate config.h for the system;
133 #
134 ifdef PROCESSOR_ARCHITECTURE
135 # We're on Windows NT
136 CPU = $(PROCESSOR_ARCHITECTURE)
137 CONFIG_H = config.nt
138 OS_TYPE = windowsnt
139 ifeq "$(PROCESSOR_ARCHITECTURE)" "x86"
140 ARCH = i386
141 CPU = i386
142 else
143 ifeq "$(PROCESSOR_ARCHITECTURE)" "MIPS"
144 ARCH = mips
145 else
146 ifeq "$(PROCESSOR_ARCHITECTURE)" "ALPHA"
147 ARCH = alpha
148 else
149 ifeq "$(PROCESSOR_ARCHITECTURE)" "PPC"
150 ARCH = ppc
151 else
152 $(error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)")
153 endif
154 endif
155 endif
156 endif
157 else
158 # We're on Windows 95
159 ARCH = i386
160 CPU = i386
161 CONFIG_H = config.nt
162 OS_TYPE = windows95
163 endif
164
165 AR = ar -rsc
166 AR_OUT =
167 CC = gcc
168 CC_OUT = -o$(SPACE)
169 LINK = gcc
170 LINK_OUT = -o$(SPACE)
171 RC = windres -O coff
172 RC_OUT = -o$(SPACE)
173 RC_INCLUDE = --include-dir$(SPACE)
174
175 libc =
176 baselibs =
177 O = o
178 A = a
179
180 BASE_LIBS = $(libc) $(baselibs)
181
182 ADVAPI32 = -ladvapi32
183 COMCTL32 = -lcomctl32
184 COMDLG32 = -lcomdlg32
185 GDI32 = -lgdi32
186 MPR = -lmpr
187 SHELL32 = -lshell32
188 USER32 = -luser32
189 WSOCK32 = -lwsock32
190 WINMM = -lwinmm
191 WINSPOOL = -lwinspool
192 OLE32 = -lole32
193 UNISCRIBE = -lusp10
194 UUID = -luuid
195
196 # Used by src/makefile.w32-in, since Nmake barfs on $(func SOMETHING)
197 OBJ0_c = $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ0))
198 OBJ1_c = $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ1))
199 OBJ2_c = $(patsubst $(BLD)%.$(O),$(CURDIR)%.c,$(OBJ2))
200
201 ifdef NOOPT
202 DEBUG_CFLAGS = -DEMACSDEBUG -fno-crossjumping
203 else
204 DEBUG_CFLAGS =
205 endif
206
207 MWINDOWS = -mwindows
208
209 CFLAGS = -I. $(ARCH_CFLAGS) $(DEBUG_CFLAGS) $(PROFILE_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
210 ESC_CFLAGS = -I. $(ARCH_CFLAGS) $(DEBUG_CFLAGS) $(PROFILE_CFLAGS) $(ESC_USER_CFLAGS) $(LOCAL_FLAGS)
211 EMACS_EXTRA_C_FLAGS = -DUSE_CRT_DLL=1
212
213 ifdef PROFILE
214 PROFILE_CFLAGS = -pg
215 PROFILE_LDFLAGS = -pg
216 else
217 PROFILE_CFLAGS =
218 PROFILE_LDFLAGS =
219 endif
220
221
222 # see comments in allocate_heap in w32heap.c before changing any of the
223 # -stack, -heap, or -image-base settings.
224 TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 $(SUBSYSTEM_CONSOLE) -Wl,-entry,__start -Wl,-Map,$(BLD)/temacs.map
225
226 ifdef NOOPT
227 OBJDIR = oo
228 else
229 OBJDIR = oo-spd
230 endif
231 $(OBJDIR):; -mkdir "$(OBJDIR)"
232 BLD = $(OBJDIR)/$(ARCH)
233 stamp_BLD: $(OBJDIR)
234 -mkdir "$(BLD)"
235 echo $(BLD) > $@
236
237 COMPILER_TEMP_FILES =
238
239 CP = cp -f
240 CP_DIR = cp -rf
241 DEL = rm
242 DEL_TREE = rm -r
243
244 DIRNAME = $(notdir $(CURDIR))
245
246 ifdef USING_SH
247
248 IFNOTSAMEDIR = if [ ! -s ../$(DIRNAME)_same-dir.tst ] ; then
249 FOREACH = for f in
250 FORVAR = $${f}
251 FORDO = ; do
252 ENDFOR = ; done
253 ENDIF = ; fi
254 ARGQUOTE = '
255 ifdef NEW_CYGWIN
256 DQUOTE = "
257 else
258 DQUOTE = ""
259 endif
260
261 else
262
263 IFNOTSAMEDIR = if not exist ../$(DIRNAME)_same-dir.tst
264 FOREACH = for %%f in (
265 FORVAR = %%f
266 FORDO = ) do
267 ENDFOR =
268 ENDIF =
269 ARGQUOTE = "
270 DQUOTE = \"
271
272 endif
273
274 ifdef NODEBUG
275 DEBUG_FLAG =
276 DEBUG_LINK =
277 else
278 DEBUG_FLAG = $(DEBUG_INFO)
279 DEBUG_LINK = $(DEBUG_INFO)
280 endif
281
282 ifdef NOCYGWIN
283 NOCYGWIN = -mno-cygwin
284 endif
285
286 ifdef USER_LIBS
287 USER_LIBS := $(patsubst %,-l%,$(USER_LIBS))
288 endif
289
290 PRAGMA_SYSTEM_HEADER = \#pragma GCC system_header
291
292 ifeq "$(ARCH)" "i386"
293 ifdef NOOPT
294 ARCH_CFLAGS = -c $(DEBUG_FLAG) $(NOCYGWIN)
295 else
296 ARCH_CFLAGS = -c $(DEBUG_FLAG) $(NOCYGWIN) $(MCPU_FLAG) -O2 \
297 # -fbuiltin \
298 # -finline-functions \
299 # -fomit-frame-pointer
300 endif
301 ARCH_LDFLAGS = $(SYS_LDFLAGS)
302 else
303 ERROR Unknown architecture type "$(ARCH)".
304 endif
305
306 LINK_FLAGS = $(ARCH_LDFLAGS) $(DEBUG_LINK) $(PROFILE_LDFLAGS) $(NOCYGWIN) $(USER_LDFLAGS)
307
308 export XMFLAGS
309
310 .DEFAULT:
311
312 $(BLD)/%.o: %.c
313 $(CC) $(CFLAGS) $(CC_OUT)$@ $<