Added a partial implementation of play-sound-internal for Windows. Fixed the followi...
[bpt/emacs.git] / nt / gmake.defs
CommitLineData
9e6fd35d 1#
41eca17b
AI
2# Makefile definition file for building GNU Emacs on the Microsoft W32 API.
3# Copyright (c) 2000-2001 Free Software Foundation, Inc.
9e6fd35d
AI
4#
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
7# the Free Software Foundation; either version 2, or (at your option)
8# any later version.
9#
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.
14#
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
17# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18# Boston, MA 02111-1307, USA.
19
20# Ensure 'all' is the default target
21all:
22
23# NOTES
24#
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.
34#
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.)
49#
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.
56#
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.
62
63# This doesn't work.
64#SHELL:=$(COMSPEC)
65
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.
69sh_output := $(shell echo)
70ifeq "$(findstring ECHO, $(sh_output))" "ECHO"
71THE_SHELL = $(COMSPEC)$(ComSpec)
72SHELLTYPE=CMD
73else
74USING_SH = 1
75THE_SHELL = $(SHELL)
76SHELLTYPE=SH
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
6dcb51cc 87sh_output := $(shell echo [Please ignore a syntax error on the next line - it is intentional] 1>&2)
8cba0ed7
AI
88sh_output := $(shell echo foo")
89ifeq "$(sh_output)" ""
90NEW_CYGWIN = 1
91endif
92endif
93
9e6fd35d
AI
94ALL_DEPS = $^
95EMPTY =
96SPACE = $(EMPTY) $(EMPTY)
97
98SUBSYSTEM_WINDOWS=-Wl,-subsystem,windows
99SUBSYSTEM_CONSOLE=-Wl,-subsystem,console
100
101# INSTALL_DIR is the directory into which emacs will be installed.
102#
103ifndef INSTALL_DIR
46f0206a 104INSTALL_DIR = $(CURDIR)/..
9e6fd35d
AI
105endif
106
37ec3479
AI
107export EMACSLOADPATH
108
9e6fd35d
AI
109# Determine the architecture we're running on.
110# Define ARCH for our purposes;
111# Define CPU for use by ntwin32.mak;
112# Define CONFIG_H to the appropriate config.h for the system;
113#
114ifdef PROCESSOR_ARCHITECTURE
115# We're on Windows NT
116CPU = $(PROCESSOR_ARCHITECTURE)
117CONFIG_H = config.nt
118OS_TYPE = windowsnt
119 ifeq "$(PROCESSOR_ARCHITECTURE)" "x86"
120ARCH = i386
121CPU = i386
122 else
123 ifeq "$(PROCESSOR_ARCHITECTURE)" "MIPS"
124ARCH = mips
125 else
126 ifeq "$(PROCESSOR_ARCHITECTURE)" "ALPHA"
127ARCH = alpha
128 else
129 ifeq "$(PROCESSOR_ARCHITECTURE)" "PPC"
130ARCH = ppc
131 else
132error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
133 endif
134 endif
135 endif
136 endif
137else
138# We're on Windows 95
139ARCH = i386
140CPU = i386
141CONFIG_H = config.nt
142OS_TYPE = windows95
143endif
144
145AR = ar -rsc
146AR_OUT =
147CC = gcc
148CC_OUT = -o$(SPACE)
149LINK = gcc
150LINK_OUT = -o$(SPACE)
151RC = windres -O coff
152RC_OUT = -o$(SPACE)
153RC_INCLUDE = --include-dir$(SPACE)
154
155libc =
156baselibs =
157O = o
158A = a
159
160BASE_LIBS = $(libc) $(baselibs)
161
162ADVAPI32 = -ladvapi32
163COMDLG32 = -lcomdlg32
164GDI32 = -lgdi32
165MPR = -lmpr
166SHELL32 = -lshell32
167USER32 = -luser32
168WSOCK32 = -lwsock32
f60ae425 169WINMM = -lwinmm
9e6fd35d
AI
170
171ifdef NOOPT
172DEBUG_CFLAGS = -DEMACSDEBUG
173else
174DEBUG_CFLAGS =
175endif
98cf1bb5 176CFLAGS = -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 $(ARCH_CFLAGS) -D$(ARCH) \
9e6fd35d
AI
177 -D_CRTAPI1=_cdecl \
178 $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
179EMACS_EXTRA_C_FLAGS = -DUSE_CRT_DLL=1
180
181# see comments in allocate_heap in w32heap.c before changing any of the
182# -stack, -heap, or -image-base settings.
183TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 -g $(SUBSYSTEM_CONSOLE) -Wl,-entry,__start -Wl,-Map,$(BLD)/temacs.map
184
185ifdef NOOPT
186OBJDIR = oo
187else
188OBJDIR = oo-spd
189endif
190$(OBJDIR):; -mkdir "$(OBJDIR)"
191BLD = $(OBJDIR)/$(ARCH)
192$(BLD): $(OBJDIR)
193 -mkdir "$(BLD)"
194
6da21b33
AI
195COMPILER_TEMP_FILES =
196
9e6fd35d
AI
197CP = cp -f
198CP_DIR = cp -rf
199DEL = rm
200DEL_TREE = rm -r
8cba0ed7 201
9e6fd35d 202ifdef USING_SH
8cba0ed7 203
9e6fd35d
AI
204IFNOTSAMEDIR = if [ ! -s ../same-dir.tst ] ; then
205FOREACH = for f in
206FORVAR = $${f}
207FORDO = ; do
208ENDFOR = ; done
209ENDIF = ; fi
210ARGQUOTE = '
8cba0ed7
AI
211ifdef NEW_CYGWIN
212DQUOTE = "
213else
9e6fd35d 214DQUOTE = ""
8cba0ed7
AI
215endif
216
9e6fd35d 217else
8cba0ed7 218
9e6fd35d
AI
219IFNOTSAMEDIR = if not exist ../same-dir.tst
220FOREACH = for %%f in (
221FORVAR = %%f
222FORDO = ) do
223ENDFOR =
224ENDIF =
225ARGQUOTE = "
226DQUOTE = \"
8cba0ed7 227
9e6fd35d
AI
228endif
229
9e6fd35d
AI
230ifdef NODEBUG
231DEBUG_FLAG =
0f6465a6 232DEBUG_LINK =
9e6fd35d
AI
233else
234DEBUG_FLAG = -g
0f6465a6 235DEBUG_LINK = -g
9e6fd35d
AI
236endif
237
238ifdef NOCYGWIN
239NOCYGWIN = -mno-cygwin
240endif
241
242ifeq "$(ARCH)" "i386"
243ifdef NOOPT
244ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN)
245else
246ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN) -mcpu=i686 -O2 \
247 # -fbuiltin \
248 # -finline-functions \
249 # -fomit-frame-pointer
250endif
251ARCH_LDFLAGS = $(SYS_LDFLAGS)
252else
253ERROR Unknown architecture type "$(ARCH)".
254endif
255
0f6465a6 256LINK_FLAGS = $(ARCH_LDFLAGS) $(DEBUG_LINK) $(NOCYGWIN) $(USER_LDFLAGS)
9e6fd35d
AI
257
258.DEFAULT:
259
260$(BLD)/%.o: %.c
261 $(CC) $(CFLAGS) $(CC_OUT)$@ $<