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