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