*** empty log message ***
[emacs.git] / nt / gmake.defs
blob40ae5e1c50ff01c63d3f5c62bdde46eb3f9f6e0f
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=../lisp
77 endif
79 MAKEDIR = $(CURDIR)
80 ALL_DEPS        = $^
81 EMPTY =
82 SPACE = $(EMPTY) $(EMPTY)
84 SUBSYSTEM_WINDOWS=-Wl,-subsystem,windows
85 SUBSYSTEM_CONSOLE=-Wl,-subsystem,console
87 # INSTALL_DIR is the directory into which emacs will be installed.
89 ifndef INSTALL_DIR
90 INSTALL_DIR     = $(MAKEDIR)/..
91 endif
93 # Determine the architecture we're running on.
94 # Define ARCH for our purposes; 
95 # Define CPU for use by ntwin32.mak;
96 # Define CONFIG_H to the appropriate config.h for the system;
98 ifdef PROCESSOR_ARCHITECTURE
99 # We're on Windows NT
100 CPU             = $(PROCESSOR_ARCHITECTURE)
101 CONFIG_H        = config.nt
102 OS_TYPE         = windowsnt
103  ifeq "$(PROCESSOR_ARCHITECTURE)" "x86"
104 ARCH            = i386
105 CPU             = i386
106  else
107   ifeq "$(PROCESSOR_ARCHITECTURE)" "MIPS"
108 ARCH            = mips
109   else
110    ifeq "$(PROCESSOR_ARCHITECTURE)" "ALPHA"
111 ARCH            = alpha
112    else
113     ifeq "$(PROCESSOR_ARCHITECTURE)" "PPC"
114 ARCH            = ppc
115     else
116 error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
117     endif
118    endif
119   endif
120  endif
121 else
122 # We're on Windows 95
123 ARCH            = i386
124 CPU             = i386
125 CONFIG_H        = config.nt
126 OS_TYPE         = windows95
127 endif
129 AR              = ar -rsc
130 AR_OUT          =
131 CC              = gcc
132 CC_OUT          = -o$(SPACE)
133 LINK            = gcc
134 LINK_OUT        = -o$(SPACE)
135 RC              = windres -O coff
136 RC_OUT          = -o$(SPACE)
137 RC_INCLUDE      = --include-dir$(SPACE)
139 libc            = 
140 baselibs        = 
141 O               = o
142 A               = a
144 BASE_LIBS       = $(libc) $(baselibs)
146 ADVAPI32        = -ladvapi32
147 COMDLG32        = -lcomdlg32
148 GDI32           = -lgdi32
149 MPR             = -lmpr
150 SHELL32         = -lshell32
151 USER32          = -luser32
152 WSOCK32         = -lwsock32
154 ifdef NOOPT
155 DEBUG_CFLAGS    = -DEMACSDEBUG
156 else
157 DEBUG_CFLAGS    = 
158 endif
159 CFLAGS          = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \
160                   -D_CRTAPI1=_cdecl \
161                   $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
162 EMACS_EXTRA_C_FLAGS = -DUSE_CRT_DLL=1
164 # see comments in allocate_heap in w32heap.c before changing any of the
165 # -stack, -heap, or -image-base settings.
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
168 ifdef NOOPT
169 OBJDIR          = oo
170 else
171 OBJDIR          = oo-spd
172 endif
173 $(OBJDIR):;     -mkdir "$(OBJDIR)"
174 BLD             = $(OBJDIR)/$(ARCH)
175 $(BLD):         $(OBJDIR)
176                 -mkdir "$(BLD)"
178 CP              = cp -f
179 CP_DIR          = cp -rf
180 DEL             = rm
181 DEL_TREE        = rm -r
182 ifdef USING_SH
183 IFNOTSAMEDIR    = if [ ! -s ../same-dir.tst ] ; then
184 FOREACH         = for f in
185 FORVAR          = $${f}
186 FORDO           = ; do
187 ENDFOR          = ; done
188 ENDIF           = ; fi
189 ARGQUOTE        = '
190 DQUOTE          = ""
191 else
192 IFNOTSAMEDIR    = if not exist ../same-dir.tst
193 FOREACH         = for %%f in (
194 FORVAR          = %%f
195 FORDO           = ) do
196 ENDFOR          =
197 ENDIF           =
198 ARGQUOTE        = "
199 DQUOTE          = \"
200 endif
202 # The location of the icon file
203 EMACS_ICON_PATH = ../nt/emacs.ico
205 ifdef NODEBUG
206 DEBUG_FLAG = 
207 else
208 DEBUG_FLAG = -g
209 endif
211 ifdef NOCYGWIN
212 NOCYGWIN = -mno-cygwin
213 endif
215 ifeq "$(ARCH)" "i386"
216 ifdef NOOPT
217 ARCH_CFLAGS     = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN)
218 else
219 ARCH_CFLAGS     = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN) -mcpu=i686 -O2 \
220                   # -fbuiltin \
221                   # -finline-functions \
222                   # -fomit-frame-pointer
223 endif
224 ARCH_LDFLAGS    = $(SYS_LDFLAGS)
225 else
226 ERROR Unknown architecture type "$(ARCH)".
227 endif
229 LINK_FLAGS      = $(ARCH_LDFLAGS) $(NOCYGWIN) $(USER_LDFLAGS)
231 .DEFAULT:
233 $(BLD)/%.o: %.c
234                 $(CC) $(CFLAGS) $(CC_OUT)$@ $<