Update years in copyright notice; nfc.
[bpt/emacs.git] / nt / nmake.defs
CommitLineData
bd6766d3 1# -*- Makefile -*- definition file for building GNU Emacs on Windows NT.\r
b65d8176
TTN
2# Copyright (C) 2000, 2001, 2002, 2003, 2004,\r
3# 2005 Free Software Foundation, Inc.\r
177c0ea7 4#\r
039f725c
AI
5# GNU Emacs is free software; you can redistribute it and/or modify\r
6# it under the terms of the GNU General Public License as published by\r
7# the Free Software Foundation; either version 2, or (at your option)\r
8# any later version.\r
177c0ea7 9#\r
039f725c
AI
10# GNU Emacs is distributed in the hope that it will be useful,\r
11# but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
13# GNU General Public License for more details.\r
177c0ea7 14#\r
039f725c
AI
15# You should have received a copy of the GNU General Public License\r
16# along with GNU Emacs; see the file COPYING. If not, write to\r
364c38d3
LK
17# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,\r
18# Boston, MA 02110-1301, USA.\r
039f725c
AI
19\r
20# Ensure 'all' is the default target\r
21all:\r
22\r
23THE_SHELL = $(COMSPEC)\r
24SHELLTYPE=CMD\r
25\r
26MAKETYPE=nmake\r
27\r
28CURDIR = $(MAKEDIR:\=/)\r
29THISDIR = $(MAKEDIR)\r
30\r
31ALL_DEPS = $**\r
32\r
33SUBSYSTEM_WINDOWS=-subsystem:windows\r
34SUBSYSTEM_CONSOLE=-subsystem:console\r
35\r
36# INSTALL_DIR is the directory into which emacs will be installed.\r
37#\r
38!ifndef INSTALL_DIR\r
39INSTALL_DIR = $(CURDIR)/..\r
40!endif\r
41\r
42# Ensure EMACSLOADPATH is defined in the environment.\r
43#\r
44!if [set EMACSLOADPATH=foo]\r
45!endif\r
46\r
47# Allow detection of builds with MSVC 5 or later, so we can\r
48# speed up compiles (see rule at end).\r
49#\r
50_NMAKE_VER_5=162\r
51_NMAKE_VER_4=0\r
52\r
53!IFNDEF _NMAKE_VER\r
54_NMAKE_VER=$(_NMAKE_VER_4)\r
55!ENDIF\r
56\r
57# Check that the INCLUDE and LIB environment variables are set.\r
58#\r
59!ifndef INCLUDE\r
60!error The INCLUDE environment variable needs to be set.\r
61!endif\r
62!ifndef LIB\r
63!error The LIB environment variable needs to be set.\r
64!endif\r
65\r
66# Determine the architecture we're running on.\r
177c0ea7 67# Define ARCH for our purposes;\r
039f725c
AI
68# Define CPU for use by ntwin32.mak;\r
69# Define CONFIG_H to the appropriate config.h for the system;\r
70#\r
71!ifdef PROCESSOR_ARCHITECTURE\r
72# We're on Windows NT\r
73CPU = $(PROCESSOR_ARCHITECTURE)\r
74CONFIG_H = config.nt\r
75OS_TYPE = windowsnt\r
76! if "$(PROCESSOR_ARCHITECTURE)" == "x86"\r
77ARCH = i386\r
78CPU = i386\r
79! else\r
80! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"\r
81ARCH = mips\r
82! else\r
83! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"\r
84ARCH = alpha\r
85! else\r
86! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"\r
87ARCH = ppc\r
88! else\r
89! error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"\r
90! endif\r
91! endif\r
92! endif\r
93! endif\r
94!else\r
95# We're on Windows 95\r
96ARCH = i386\r
97CPU = i386\r
98CONFIG_H = config.nt\r
99OS_TYPE = windows95\r
100!endif\r
101\r
102AR = lib\r
103AR_OUT = -out:\r
104CC = cl\r
105CC_OUT = -Fo\r
106LINK = link\r
107LINK_OUT = -out:\r
108RC = rc\r
109RC_OUT = -Fo\r
110RC_INCLUDE = -i\r
111\r
112libc = libc.lib\r
177c0ea7 113baselibs =\r
039f725c
AI
114O = obj\r
115A = lib\r
116\r
117BASE_LIBS = $(libc) $(baselibs) oldnames.lib\r
118\r
119ADVAPI32 = advapi32.lib\r
120COMDLG32 = comdlg32.lib\r
121GDI32 = gdi32.lib\r
122MPR = mpr.lib\r
123SHELL32 = shell32.lib\r
124USER32 = user32.lib\r
125WSOCK32 = wsock32.lib\r
f60ae425 126WINMM = winmm.lib\r
0e664bca 127WINSPOOL = winspool.lib\r
039f725c
AI
128\r
129!ifdef NOOPT\r
130DEBUG_CFLAGS = -DEMACSDEBUG\r
131!else\r
177c0ea7 132DEBUG_CFLAGS =\r
039f725c 133!endif\r
98cf1bb5 134CFLAGS = -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 $(ARCH_CFLAGS) -D$(ARCH) \\r
039f725c
AI
135 -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)\r
136EMACS_EXTRA_C_FLAGS =\r
137\r
238add5e 138SYS_LDFLAGS = -nologo -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net setargv.obj\r
039f725c
AI
139\r
140# see comments in allocate_heap in w32heap.c before changing any of the\r
141# -stack, -heap, or -base settings.\r
142TEMACS_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)\r
143\r
144!ifdef NOOPT\r
145OBJDIR = obj\r
146!else\r
147OBJDIR = obj-spd\r
148!endif\r
149$(OBJDIR):; -mkdir $(OBJDIR)\r
150BLD = $(OBJDIR)/$(ARCH)\r
151$(BLD): $(OBJDIR)\r
152 -mkdir "$(BLD)"\r
153\r
154COMPILER_TEMP_FILES = *.pdb\r
155\r
156CP = cp -f\r
157CP_DIR = cp -rf\r
158IFNOTSAMEDIR = if not exist ..\same-dir.tst\r
159ENDIF =\r
160FOREACH = for %%f in (\r
161FORVAR = %%f\r
162FORDO = ) do\r
163ENDFOR =\r
164ARGQUOTE = "\r
33d786f9 165# "\r
039f725c
AI
166DQUOTE = \"\r
167DEL = rm\r
168DEL_TREE = rm -r\r
169\r
170!ifdef NODEBUG\r
177c0ea7
JB
171DEBUG_FLAG =\r
172DEBUG_LINK =\r
039f725c
AI
173!else\r
174DEBUG_FLAG = -Zi\r
175DEBUG_LINK = -debug:full -debugtype:both\r
176!endif\r
177\r
178!if "$(ARCH)" == "i386"\r
179!ifdef NOOPT\r
180ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Od -G3d -Zp8 $(DEBUG_FLAG)\r
181!else\r
182ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -Oxsb2 -Oy- -G6dF -Zp8 $(DEBUG_FLAG)\r
183!endif\r
184ARCH_LDFLAGS = $(SYS_LDFLAGS)\r
185\r
186!else\r
187!if "$(ARCH)" == "mips"\r
188ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0\r
189ARCH_LDFLAGS = $(SYS_LDFLAGS)\r
190\r
191!else\r
192!if "$(ARCH)" == "alpha"\r
193!if "$(BUILD_TYPE)" == "spd"\r
194ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -Od -D__stdcall= -D__cdecl=\r
195!else\r
196ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -O1 -D__stdcall= -D__cdecl=\r
197!endif\r
198ARCH_LDFLAGS = $(SYS_LDFLAGS)\r
199\r
200!else\r
201!if "$(ARCH)" == "ppc"\r
202# These flags are a guess...if they don't work, please send me mail.\r
203ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od\r
204ARCH_LDFLAGS = $(SYS_LDFLAGS)\r
205\r
206!else\r
207!ERROR Unknown architecture type "$(ARCH)".\r
208!endif\r
209!endif\r
210!endif\r
211!endif\r
212\r
213LINK_FLAGS = $(ARCH_LDFLAGS) $(DEBUG_LINK) $(USER_LDFLAGS)\r
214\r
215# From MSVC 5.0 onwards, it seem base relocation information is not included,\r
216# at least in release builds. We need to ensure the reloc info is included\r
217# in order to use the MSVC profiler.\r
218!IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")\r
219EXTRA_LINK =\r
220!ELSE\r
221EXTRA_LINK = -profile\r
222!ENDIF\r
223\r
224#\r
225# If the compiler supports compiling multiple .c files to .o files at\r
226# one time, use this feature.\r
227#\r
228!IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")\r
229.c{$(BLD)}.obj:\r
230 $(CC) $(CFLAGS) -Fo$(BLD)\ $<\r
231!ELSE\r
232.c{$(BLD)}.obj::\r
233 $(CC) $(CFLAGS) -Fo$(BLD)\ $<\r
234!ENDIF\r
a2fcf029
MB
235\r
236# arch-tag: fefa49b0-c23c-46c7-9094-cab2a405058e\r