(where_is_internal): Accept non-ascii integer prefixes.
[bpt/emacs.git] / nt / gmake.defs
CommitLineData
9e6fd35d
AI
1#
2# Makefile definition file for building GNU Emacs on Windows NT
3#
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)
7# any later version.
8#
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.
13#
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.
18
19# Ensure 'all' is the default target
20all:
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.
68sh_output := $(shell echo)
69ifeq "$(findstring ECHO, $(sh_output))" "ECHO"
70THE_SHELL = $(COMSPEC)$(ComSpec)
71SHELLTYPE=CMD
72else
73USING_SH = 1
74THE_SHELL = $(SHELL)
75SHELLTYPE=SH
46f0206a 76SETLOADPATH=EMACSLOADPATH=$(CURDIR)/../lisp
9e6fd35d
AI
77endif
78
6da21b33
AI
79MAKETYPE=gmake
80
277277b7
AI
81THISDIR = .
82
8cba0ed7
AI
83# Cygwin has changed quoting rules somewhat since b20, in a way that
84# affects makefiles using sh as the command processor, so we need to
85# detect which rules to use.
86ifdef USING_SH
87sh_output := $(shell echo foo")
88ifeq "$(sh_output)" ""
89NEW_CYGWIN = 1
90endif
91endif
92
9e6fd35d
AI
93ALL_DEPS = $^
94EMPTY =
95SPACE = $(EMPTY) $(EMPTY)
96
97SUBSYSTEM_WINDOWS=-Wl,-subsystem,windows
98SUBSYSTEM_CONSOLE=-Wl,-subsystem,console
99
100# INSTALL_DIR is the directory into which emacs will be installed.
101#
102ifndef INSTALL_DIR
46f0206a 103INSTALL_DIR = $(CURDIR)/..
9e6fd35d
AI
104endif
105
106# Determine the architecture we're running on.
107# Define ARCH for our purposes;
108# Define CPU for use by ntwin32.mak;
109# Define CONFIG_H to the appropriate config.h for the system;
110#
111ifdef PROCESSOR_ARCHITECTURE
112# We're on Windows NT
113CPU = $(PROCESSOR_ARCHITECTURE)
114CONFIG_H = config.nt
115OS_TYPE = windowsnt
116 ifeq "$(PROCESSOR_ARCHITECTURE)" "x86"
117ARCH = i386
118CPU = i386
119 else
120 ifeq "$(PROCESSOR_ARCHITECTURE)" "MIPS"
121ARCH = mips
122 else
123 ifeq "$(PROCESSOR_ARCHITECTURE)" "ALPHA"
124ARCH = alpha
125 else
126 ifeq "$(PROCESSOR_ARCHITECTURE)" "PPC"
127ARCH = ppc
128 else
129error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
130 endif
131 endif
132 endif
133 endif
134else
135# We're on Windows 95
136ARCH = i386
137CPU = i386
138CONFIG_H = config.nt
139OS_TYPE = windows95
140endif
141
142AR = ar -rsc
143AR_OUT =
144CC = gcc
145CC_OUT = -o$(SPACE)
146LINK = gcc
147LINK_OUT = -o$(SPACE)
148RC = windres -O coff
149RC_OUT = -o$(SPACE)
150RC_INCLUDE = --include-dir$(SPACE)
151
152libc =
153baselibs =
154O = o
155A = a
156
157BASE_LIBS = $(libc) $(baselibs)
158
159ADVAPI32 = -ladvapi32
160COMDLG32 = -lcomdlg32
161GDI32 = -lgdi32
162MPR = -lmpr
163SHELL32 = -lshell32
164USER32 = -luser32
165WSOCK32 = -lwsock32
166
167ifdef NOOPT
168DEBUG_CFLAGS = -DEMACSDEBUG
169else
170DEBUG_CFLAGS =
171endif
172CFLAGS = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \
173 -D_CRTAPI1=_cdecl \
174 $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
175EMACS_EXTRA_C_FLAGS = -DUSE_CRT_DLL=1
176
177# see comments in allocate_heap in w32heap.c before changing any of the
178# -stack, -heap, or -image-base settings.
179TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 -g $(SUBSYSTEM_CONSOLE) -Wl,-entry,__start -Wl,-Map,$(BLD)/temacs.map
180
181ifdef NOOPT
182OBJDIR = oo
183else
184OBJDIR = oo-spd
185endif
186$(OBJDIR):; -mkdir "$(OBJDIR)"
187BLD = $(OBJDIR)/$(ARCH)
188$(BLD): $(OBJDIR)
189 -mkdir "$(BLD)"
190
6da21b33
AI
191COMPILER_TEMP_FILES =
192
9e6fd35d
AI
193CP = cp -f
194CP_DIR = cp -rf
195DEL = rm
196DEL_TREE = rm -r
8cba0ed7 197
9e6fd35d 198ifdef USING_SH
8cba0ed7 199
9e6fd35d
AI
200IFNOTSAMEDIR = if [ ! -s ../same-dir.tst ] ; then
201FOREACH = for f in
202FORVAR = $${f}
203FORDO = ; do
204ENDFOR = ; done
205ENDIF = ; fi
206ARGQUOTE = '
8cba0ed7
AI
207ifdef NEW_CYGWIN
208DQUOTE = "
209else
9e6fd35d 210DQUOTE = ""
8cba0ed7
AI
211endif
212
9e6fd35d 213else
8cba0ed7 214
9e6fd35d
AI
215IFNOTSAMEDIR = if not exist ../same-dir.tst
216FOREACH = for %%f in (
217FORVAR = %%f
218FORDO = ) do
219ENDFOR =
220ENDIF =
221ARGQUOTE = "
222DQUOTE = \"
8cba0ed7 223
9e6fd35d
AI
224endif
225
9e6fd35d
AI
226ifdef NODEBUG
227DEBUG_FLAG =
228else
229DEBUG_FLAG = -g
230endif
231
232ifdef NOCYGWIN
233NOCYGWIN = -mno-cygwin
234endif
235
236ifeq "$(ARCH)" "i386"
237ifdef NOOPT
238ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN)
239else
240ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN) -mcpu=i686 -O2 \
241 # -fbuiltin \
242 # -finline-functions \
243 # -fomit-frame-pointer
244endif
245ARCH_LDFLAGS = $(SYS_LDFLAGS)
246else
247ERROR Unknown architecture type "$(ARCH)".
248endif
249
250LINK_FLAGS = $(ARCH_LDFLAGS) $(NOCYGWIN) $(USER_LDFLAGS)
251
252.DEFAULT:
253
254$(BLD)/%.o: %.c
255 $(CC) $(CFLAGS) $(CC_OUT)$@ $<