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