(x_connection_closed): Reset handling_signal.
[bpt/emacs.git] / nt / nmake.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
22THE_SHELL = $(COMSPEC)
23SHELLTYPE=CMD
24
25ALL_DEPS = $**
26
27SUBSYSTEM_WINDOWS=-subsystem:windows
28SUBSYSTEM_CONSOLE=-subsystem:console
29
30# INSTALL_DIR is the directory into which emacs will be installed.
31#
32!ifndef INSTALL_DIR
33INSTALL_DIR = $(MAKEDIR)/..
34!endif
35
36# Allow detection of builds with MSVC 5 or later, so we can
37# speed up compiles (see rule at end).
38#
39_NMAKE_VER_5=162
40_NMAKE_VER_4=0
41
42!IFNDEF _NMAKE_VER
43_NMAKE_VER=$(_NMAKE_VER_4)
44!ENDIF
45
46# Check that the INCLUDE and LIB environment variables are set.
47#
48!ifndef INCLUDE
49!error The INCLUDE environment variable needs to be set.
50!endif
51!ifndef LIB
52!error The LIB environment variable needs to be set.
53!endif
54
55# Determine the architecture we're running on.
56# Define ARCH for our purposes;
57# Define CPU for use by ntwin32.mak;
58# Define CONFIG_H to the appropriate config.h for the system;
59#
60!ifdef PROCESSOR_ARCHITECTURE
61# We're on Windows NT
62CPU = $(PROCESSOR_ARCHITECTURE)
63CONFIG_H = config.nt
64OS_TYPE = windowsnt
65! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
66ARCH = i386
67CPU = i386
68! else
69! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
70ARCH = mips
71! else
72! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
73ARCH = alpha
74! else
75! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
76ARCH = ppc
77! else
78! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
79! endif
80! endif
81! endif
82! endif
83!else
84# We're on Windows 95
85ARCH = i386
86CPU = i386
87CONFIG_H = config.nt
88OS_TYPE = windows95
89!endif
90
91AR = lib
92AR_OUT = -out:
93CC = cl
94CC_OUT = -Fo
95LINK = link
96LINK_OUT = -out:
97RC = rc
98RC_OUT = -Fo
99RC_INCLUDE = -i
100
101libc = libc.lib
102baselibs =
103O = obj
104A = lib
105
106BASE_LIBS = $(libc) $(baselibs) oldnames.lib
107
108ADVAPI32 = advapi32.lib
109COMDLG32 = comdlg32.lib
110GDI32 = gdi32.lib
111MPR = mpr.lib
112SHELL32 = shell32.lib
113USER32 = user32.lib
114WSOCK32 = wsock32.lib
115
116!ifdef NOOPT
117DEBUG_CFLAGS = -DEMACSDEBUG
118!else
119DEBUG_CFLAGS =
120!endif
121CFLAGS = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \
122 -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
123EMACS_EXTRA_C_FLAGS =
124
125SYS_LDFLAGS = -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net
126
127# see comments in allocate_heap in w32heap.c before changing any of the
128# -stack, -heap, or -base settings.
129TEMACS_EXTRA_LINK = -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:both -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) $(SUBSYSTEM_CONSOLE) -entry:_start -map:$(BLD)\temacs.map $(EXTRA_LINK)
130
131!ifdef NOOPT
132OBJDIR = obj
133!else
134OBJDIR = obj-spd
135!endif
136$(OBJDIR):; -mkdir $(OBJDIR)
137BLD = $(OBJDIR)/$(ARCH)
138$(BLD): $(OBJDIR)
139 -mkdir "$(BLD)"
140
141CP = cp -f
142CP_DIR = cp -rf
143IFNOTSAMEDIR = if not exist ..\same-dir.tst
144ENDIF =
145FOREACH = for %%f in (
146FORVAR = %%f
147FORDO = ) do
148ENDFOR =
149ARGQUOTE = "
150DQUOTE = \"
151DEL = rm
152DEL_TREE = rm -r
153
154# The location of the icon file
155EMACS_ICON_PATH = ../nt/emacs.ico
156
157!ifdef NODEBUG
158DEBUG_FLAG =
159!else
160DEBUG_FLAG = -Zi
161!endif
162
163!if "$(ARCH)" == "i386"
164!ifdef NOOPT
165ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)
166!else
167ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)
168!endif
169ARCH_LDFLAGS = $(SYS_LDFLAGS)
170
171!else
172!if "$(ARCH)" == "mips"
173ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
174ARCH_LDFLAGS = $(SYS_LDFLAGS)
175
176!else
177!if "$(ARCH)" == "alpha"
178!if "$(BUILD_TYPE)" == "spd"
179ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=
180!else
181ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=
182!endif
183ARCH_LDFLAGS = $(SYS_LDFLAGS)
184
185!else
186!if "$(ARCH)" == "ppc"
187# These flags are a guess...if they don't work, please send me mail.
188ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od
189ARCH_LDFLAGS = $(SYS_LDFLAGS)
190
191!else
192!ERROR Unknown architecture type "$(ARCH)".
193!endif
194!endif
195!endif
196!endif
197
198LINK_FLAGS = $(ARCH_LDFLAGS) $(USER_LDFLAGS)
199
200# From MSVC 5.0 onwards, it seem base relocation information is not included,
201# at least in release builds. We need to ensure the reloc info is included
202# in order to use the MSVC profiler.
203!IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
204EXTRA_LINK =
205!ELSE
206EXTRA_LINK = -profile
207!ENDIF
208
209#
210# If the compiler supports compiling multiple .c files to .o files at
211# one time, use this feature.
212#
213!IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
214.c{$(BLD)}.obj:
215 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
216!ELSE
217.c{$(BLD)}.obj::
218 $(CC) $(CFLAGS) -Fo$(BLD)\ $<
219!ENDIF