(print-region-function): Don't quote lambda.
[emacs.git] / nt / gmake.defs
blob8734943e7da70c0d9b682d84e44fa5d83e518b2b
1 #\r
2 #  Makefile definition file for building GNU Emacs on Windows NT\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 # NOTES\r
23 \r
24 # I tried to force gmake to use the native shell for simplicity, by\r
25 # setting SHELL as below, but this didn't work reliably because of\r
26 # various case sensitivity niggles.  Specifically, COMSPEC (which is in\r
27 # fact usually spelled ComSpec on NT, to make life difficult) typically\r
28 # references "cmd.exe" (on NT) when the file is actually called\r
29 # "CMD.EXE" on disk for hysterical raisons.  As a result, GNU make\r
30 # thinks it doesn't exist (unless compiled with a switch to ignore\r
31 # case), and so doesn't change which shell it will invoke to execute\r
32 # commands.\r
33 \r
34 # It would be possible, though very tedious using just gmake facilities,\r
35 # to convert the COMSPEC value to uppercase to solve this problem, but\r
36 # it isn't worth it.  That is partly because, even when using the native\r
37 # shell, gmake tends to not be happy with backslashes in command\r
38 # strings.  The obvious solution is to use forward slashes as much as\r
39 # possible, which can be made to work most of the time (putting\r
40 # filenames in quotes often helps), but there are still some internal\r
41 # cmd.exe commands like `del' and `copy' that won't work with them.\r
42 # Although it is possible to convert slashes to backslashes when\r
43 # necessary, gmake requires explicitly calling its subst function, which\r
44 # nmake does not understand).  For this reason, it is simplest to\r
45 # mandate that rm and cp be available, so we can use Unix-format file\r
46 # names everywhere.  (Fortunately both MS and GNU make, and the\r
47 # respective compilers, are happy with Unix-format names.)\r
48 \r
49 # Since we cannot easily force the choice of a particular shell, we must\r
50 # make the effort to cope with whichever shell is being used.\r
51 # Fortunately, the only command we need to use that is shell specific is\r
52 # the testing of a file's existence for the purpose of working out when\r
53 # we are copying files to their original location.  That particular\r
54 # requirement is abstracted easily enough.\r
55 \r
56 # The only other problem area was the change of directory when running\r
57 # temacs to dump emacs.exe (where gmake doesn't support cd foo in any\r
58 # useful way), but that has been resolved by modifying the Windows\r
59 # unexec function slightly to not require the directory change while\r
60 # still allowing objects and binaries to be in subdirectories.\r
62 # This doesn't work.\r
63 #SHELL:=$(COMSPEC)\r
65 # Determine whether make is using sh or cmd/command as shell; cmd.exe\r
66 # will output "ECHO is on" when echo is given by itself, while sh will\r
67 # not produce any output.\r
68 sh_output := $(shell echo)\r
69 ifeq "$(findstring ECHO, $(sh_output))" "ECHO"\r
70 THE_SHELL = $(COMSPEC)$(ComSpec)\r
71 SHELLTYPE=CMD\r
72 else\r
73 USING_SH = 1\r
74 THE_SHELL = $(SHELL)\r
75 SHELLTYPE=SH\r
76 SETLOADPATH=EMACSLOADPATH=$(lisp)\r
77 endif\r
79 MAKEDIR = $(CURDIR)\r
80 ALL_DEPS        = $^\r
81 EMPTY =\r
82 SPACE = $(EMPTY) $(EMPTY)\r
84 SUBSYSTEM_WINDOWS=-Wl,-subsystem,windows\r
85 SUBSYSTEM_CONSOLE=-Wl,-subsystem,console\r
87 # INSTALL_DIR is the directory into which emacs will be installed.\r
88 #\r
89 ifndef INSTALL_DIR\r
90 INSTALL_DIR     = $(MAKEDIR)/..\r
91 endif\r
93 # Determine the architecture we're running on.\r
94 # Define ARCH for our purposes; \r
95 # Define CPU for use by ntwin32.mak;\r
96 # Define CONFIG_H to the appropriate config.h for the system;\r
97 #\r
98 ifdef PROCESSOR_ARCHITECTURE\r
99 # We're on Windows NT\r
100 CPU             = $(PROCESSOR_ARCHITECTURE)\r
101 CONFIG_H        = config.nt\r
102 OS_TYPE         = windowsnt\r
103  ifeq "$(PROCESSOR_ARCHITECTURE)" "x86"\r
104 ARCH            = i386\r
105 CPU             = i386\r
106  else\r
107   ifeq "$(PROCESSOR_ARCHITECTURE)" "MIPS"\r
108 ARCH            = mips\r
109   else\r
110    ifeq "$(PROCESSOR_ARCHITECTURE)" "ALPHA"\r
111 ARCH            = alpha\r
112    else\r
113     ifeq "$(PROCESSOR_ARCHITECTURE)" "PPC"\r
114 ARCH            = ppc\r
115     else\r
116 error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"\r
117     endif\r
118    endif\r
119   endif\r
120  endif\r
121 else\r
122 # We're on Windows 95\r
123 ARCH            = i386\r
124 CPU             = i386\r
125 CONFIG_H        = config.nt\r
126 OS_TYPE         = windows95\r
127 endif\r
129 AR              = ar -rsc\r
130 AR_OUT          =\r
131 CC              = gcc\r
132 CC_OUT          = -o$(SPACE)\r
133 LINK            = gcc\r
134 LINK_OUT        = -o$(SPACE)\r
135 RC              = windres -O coff\r
136 RC_OUT          = -o$(SPACE)\r
137 RC_INCLUDE      = --include-dir$(SPACE)\r
139 libc            = \r
140 baselibs        = \r
141 O               = o\r
142 A               = a\r
144 BASE_LIBS       = $(libc) $(baselibs)\r
146 ADVAPI32        = -ladvapi32\r
147 COMDLG32        = -lcomdlg32\r
148 GDI32           = -lgdi32\r
149 MPR             = -lmpr\r
150 SHELL32         = -lshell32\r
151 USER32          = -luser32\r
152 WSOCK32         = -lwsock32\r
154 ifdef NOOPT\r
155 DEBUG_CFLAGS    = -DEMACSDEBUG\r
156 else\r
157 DEBUG_CFLAGS    = \r
158 endif\r
159 CFLAGS          = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \\r
160                   -D_CRTAPI1=_cdecl \\r
161                   $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)\r
162 EMACS_EXTRA_C_FLAGS = -DUSE_CRT_DLL=1\r
164 # see comments in allocate_heap in w32heap.c before changing any of the\r
165 # -stack, -heap, or -image-base settings.\r
166 TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 -g $(SUBSYSTEM_CONSOLE) -Wl,-entry,__start -Wl,-Map,$(BLD)/temacs.map\r
168 ifdef NOOPT\r
169 OBJDIR          = oo\r
170 else\r
171 OBJDIR          = oo-spd\r
172 endif\r
173 $(OBJDIR):;     -mkdir "$(OBJDIR)"\r
174 BLD             = $(OBJDIR)/$(ARCH)\r
175 $(BLD):         $(OBJDIR)\r
176                 -mkdir "$(BLD)"\r
178 CP              = cp -f\r
179 CP_DIR          = cp -rf\r
180 DEL             = rm\r
181 DEL_TREE        = rm -r\r
182 ifdef USING_SH\r
183 IFNOTSAMEDIR    = if [ ! -s ../same-dir.tst ] ; then\r
184 FOREACH         = for f in\r
185 FORVAR          = $${f}\r
186 FORDO           = ; do\r
187 ENDFOR          = ; done\r
188 ENDIF           = ; fi\r
189 ARGQUOTE        = '\r
190 DQUOTE          = ""\r
191 else\r
192 IFNOTSAMEDIR    = if not exist ../same-dir.tst\r
193 FOREACH         = for %%f in (\r
194 FORVAR          = %%f\r
195 FORDO           = ) do\r
196 ENDFOR          =\r
197 ENDIF           =\r
198 ARGQUOTE        = "\r
199 DQUOTE          = \"\r
200 endif\r
202 # The location of the icon file\r
203 EMACS_ICON_PATH = ../nt/emacs.ico\r
205 ifdef NODEBUG\r
206 DEBUG_FLAG = \r
207 else\r
208 DEBUG_FLAG = -g\r
209 endif\r
211 ifdef NOCYGWIN\r
212 NOCYGWIN = -mno-cygwin\r
213 endif\r
215 ifeq "$(ARCH)" "i386"\r
216 ifdef NOOPT\r
217 ARCH_CFLAGS     = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN)\r
218 else\r
219 ARCH_CFLAGS     = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN) -mcpu=i686 -O2 \\r
220                   # -fbuiltin \\r
221                   # -finline-functions \\r
222                   # -fomit-frame-pointer\r
223 endif\r
224 ARCH_LDFLAGS    = $(SYS_LDFLAGS)\r
225 else\r
226 ERROR Unknown architecture type "$(ARCH)".\r
227 endif\r
229 LINK_FLAGS      = $(ARCH_LDFLAGS) $(NOCYGWIN) $(USER_LDFLAGS)\r
231 .DEFAULT:\r
233 $(BLD)/%.o: %.c\r
234                 $(CC) $(CFLAGS) $(CC_OUT)$@ $<\r