Update copyright and maintainer.
[bpt/emacs.git] / nt / gmake.defs
CommitLineData
bd6766d3 1# -*- Makefile -*- definition file for building GNU Emacs on Windows NT.
41eca17b 2# Copyright (c) 2000-2001 Free Software Foundation, Inc.
177c0ea7 3#
9e6fd35d
AI
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.
177c0ea7 8#
9e6fd35d
AI
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.
177c0ea7 13#
9e6fd35d
AI
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
177c0ea7 23#
9e6fd35d
AI
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.
177c0ea7 33#
9e6fd35d
AI
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.)
177c0ea7 48#
9e6fd35d
AI
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.
177c0ea7 55#
9e6fd35d
AI
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
9e6fd35d
AI
76endif
77
6da21b33
AI
78MAKETYPE=gmake
79
7b6f060c
JR
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
e2f4caea 85# Convert CURDIR to native file name, if in Cygwin format
7b6f060c
JR
86#ifeq "$(shell cygpath $(CURDIR))" "$(CURDIR)"
87#CURDIR := $(shell cygpath -m $(CURDIR))
88#endif
89
277277b7
AI
90THISDIR = .
91
8cba0ed7
AI
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.
95ifdef USING_SH
6dcb51cc 96sh_output := $(shell echo [Please ignore a syntax error on the next line - it is intentional] 1>&2)
8cba0ed7
AI
97sh_output := $(shell echo foo")
98ifeq "$(sh_output)" ""
99NEW_CYGWIN = 1
100endif
101endif
102
9e6fd35d
AI
103ALL_DEPS = $^
104EMPTY =
105SPACE = $(EMPTY) $(EMPTY)
106
107SUBSYSTEM_WINDOWS=-Wl,-subsystem,windows
108SUBSYSTEM_CONSOLE=-Wl,-subsystem,console
109
110# INSTALL_DIR is the directory into which emacs will be installed.
111#
112ifndef INSTALL_DIR
46f0206a 113INSTALL_DIR = $(CURDIR)/..
9e6fd35d
AI
114endif
115
37ec3479
AI
116export EMACSLOADPATH
117
9e6fd35d 118# Determine the architecture we're running on.
177c0ea7 119# Define ARCH for our purposes;
9e6fd35d
AI
120# Define CPU for use by ntwin32.mak;
121# Define CONFIG_H to the appropriate config.h for the system;
122#
123ifdef PROCESSOR_ARCHITECTURE
124# We're on Windows NT
125CPU = $(PROCESSOR_ARCHITECTURE)
126CONFIG_H = config.nt
127OS_TYPE = windowsnt
128 ifeq "$(PROCESSOR_ARCHITECTURE)" "x86"
129ARCH = i386
130CPU = i386
131 else
132 ifeq "$(PROCESSOR_ARCHITECTURE)" "MIPS"
133ARCH = mips
134 else
135 ifeq "$(PROCESSOR_ARCHITECTURE)" "ALPHA"
136ARCH = alpha
137 else
138 ifeq "$(PROCESSOR_ARCHITECTURE)" "PPC"
139ARCH = ppc
140 else
141error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
142 endif
143 endif
144 endif
145 endif
146else
147# We're on Windows 95
148ARCH = i386
149CPU = i386
150CONFIG_H = config.nt
151OS_TYPE = windows95
152endif
153
154AR = ar -rsc
155AR_OUT =
156CC = gcc
157CC_OUT = -o$(SPACE)
158LINK = gcc
159LINK_OUT = -o$(SPACE)
160RC = windres -O coff
161RC_OUT = -o$(SPACE)
162RC_INCLUDE = --include-dir$(SPACE)
163
177c0ea7
JB
164libc =
165baselibs =
9e6fd35d
AI
166O = o
167A = a
168
169BASE_LIBS = $(libc) $(baselibs)
170
171ADVAPI32 = -ladvapi32
172COMDLG32 = -lcomdlg32
173GDI32 = -lgdi32
174MPR = -lmpr
175SHELL32 = -lshell32
176USER32 = -luser32
177WSOCK32 = -lwsock32
f60ae425 178WINMM = -lwinmm
0e664bca 179WINSPOOL = -lwinspool
9e6fd35d
AI
180
181ifdef NOOPT
182DEBUG_CFLAGS = -DEMACSDEBUG
183else
177c0ea7 184DEBUG_CFLAGS =
9e6fd35d 185endif
98cf1bb5 186CFLAGS = -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 $(ARCH_CFLAGS) -D$(ARCH) \
9e6fd35d
AI
187 -D_CRTAPI1=_cdecl \
188 $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
189EMACS_EXTRA_C_FLAGS = -DUSE_CRT_DLL=1
190
191# see comments in allocate_heap in w32heap.c before changing any of the
192# -stack, -heap, or -image-base settings.
193TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 -g $(SUBSYSTEM_CONSOLE) -Wl,-entry,__start -Wl,-Map,$(BLD)/temacs.map
194
195ifdef NOOPT
196OBJDIR = oo
197else
198OBJDIR = oo-spd
199endif
200$(OBJDIR):; -mkdir "$(OBJDIR)"
201BLD = $(OBJDIR)/$(ARCH)
202$(BLD): $(OBJDIR)
203 -mkdir "$(BLD)"
204
6da21b33
AI
205COMPILER_TEMP_FILES =
206
9e6fd35d
AI
207CP = cp -f
208CP_DIR = cp -rf
209DEL = rm
210DEL_TREE = rm -r
8cba0ed7 211
9e6fd35d 212ifdef USING_SH
8cba0ed7 213
9e6fd35d
AI
214IFNOTSAMEDIR = if [ ! -s ../same-dir.tst ] ; then
215FOREACH = for f in
216FORVAR = $${f}
217FORDO = ; do
218ENDFOR = ; done
219ENDIF = ; fi
220ARGQUOTE = '
8cba0ed7
AI
221ifdef NEW_CYGWIN
222DQUOTE = "
223else
9e6fd35d 224DQUOTE = ""
8cba0ed7
AI
225endif
226
9e6fd35d 227else
8cba0ed7 228
9e6fd35d
AI
229IFNOTSAMEDIR = if not exist ../same-dir.tst
230FOREACH = for %%f in (
231FORVAR = %%f
232FORDO = ) do
233ENDFOR =
234ENDIF =
235ARGQUOTE = "
236DQUOTE = \"
8cba0ed7 237
9e6fd35d
AI
238endif
239
9e6fd35d 240ifdef NODEBUG
177c0ea7 241DEBUG_FLAG =
0f6465a6 242DEBUG_LINK =
9e6fd35d
AI
243else
244DEBUG_FLAG = -g
0f6465a6 245DEBUG_LINK = -g
9e6fd35d
AI
246endif
247
248ifdef NOCYGWIN
249NOCYGWIN = -mno-cygwin
250endif
251
252ifeq "$(ARCH)" "i386"
253ifdef NOOPT
254ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN)
255else
256ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN) -mcpu=i686 -O2 \
257 # -fbuiltin \
258 # -finline-functions \
259 # -fomit-frame-pointer
260endif
261ARCH_LDFLAGS = $(SYS_LDFLAGS)
262else
263ERROR Unknown architecture type "$(ARCH)".
264endif
265
0f6465a6 266LINK_FLAGS = $(ARCH_LDFLAGS) $(DEBUG_LINK) $(NOCYGWIN) $(USER_LDFLAGS)
9e6fd35d
AI
267
268.DEFAULT:
269
270$(BLD)/%.o: %.c
271 $(CC) $(CFLAGS) $(CC_OUT)$@ $<
ab5796a9
MB
272
273# arch-tag: 35eb9662-8534-4bcf-b891-0730a09d657f