Require cl only when compiling.
[emacs.git] / nt / makefile.def
bloba7de40fd2099b71d399af2a60dc9c4361f7b067e
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.
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 # Geoff Voelker (voelker@cs.washington.edu) 9-6-94
22 # BEGIN CONFIGURATION
25 # Define the following to build the GUI version
27 NTGUI=1
29 # Set INSTALL_DIR to be the directory into which you want emacs installed.
31 !ifndef INSTALL_DIR
32 INSTALL_DIR = C:\emacs
33 !endif
35 # Define MSVCNT11 to be nonzero if you are using the MSVCNT 1.1 environment.
36 # MSVCNT11 = 1
37 MSVCNT11 = 0
40 # END CONFIGURATION
43 # Check that the INCLUDE and LIB environment variables are set.
45 !ifndef INCLUDE
46 !error The INCLUDE environment variable needs to be set.
47 !endif
48 !ifndef LIB
49 !error The LIB environment variable needs to be set.
50 !endif
52 # Determine the architecture we're running on.
53 # Define ARCH for our purposes;
54 # Define CPU for use by ntwin32.mak;
55 # Define CONFIG_H to the appropriate config.h for the system;
57 !ifdef PROCESSOR_ARCHITECTURE
58 # We're on Windows NT
59 CPU = $(PROCESSOR_ARCHITECTURE)
60 CONFIG_H = config.nt
61 OS_TYPE = winnt
62 ! if "$(PROCESSOR_ARCHITECTURE)" == "x86"
63 ARCH = i386
64 CPU = i386
65 ! else
66 ! if "$(PROCESSOR_ARCHITECTURE)" == "MIPS"
67 ARCH = mips
68 ! else
69 ! if "$(PROCESSOR_ARCHITECTURE)" == "ALPHA"
70 ARCH = alpha
71 ! else
72 ! if "$(PROCESSOR_ARCHITECTURE)" == "PPC"
73 ARCH = ppc
74 ! else
75 !error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
76 ! endif
77 ! endif
78 ! endif
79 ! endif
80 !else
81 # We're on Windows 95
82 ARCH = i386
83 CPU = i386
84 CONFIG_H = config.w95
85 OS_TYPE = win95
86 !endif
88 # Include ntwin32.mak. So far, this file seems to be supported by every
89 # Microsoft compiler on NT and Win95 and properly defines the executable
90 # names and libraries necessary to build Emacs. I do not have access
91 # to any other vendor compilers, so I do not know if they supply this
92 # file, too. For now I'll assume that they do.
94 !include <ntwin32.mak>
96 # Using cvtres is necessary on NT 3.10 and doesn't hurt on later platforms.
97 CVTRES = cvtres.exe
98 AR = $(implib)
99 # The assignment $(CC) = $(cc) fails even though variables are case sensitive.
100 LINK_TMP = $(link)
101 LINK = $(LINK_TMP)
102 CC_TMP = $(cc)
103 CC = $(CC_TMP)
105 # advapi32.lib is left off of $(baselibs) on NT 3.10
106 !if "$(baselibs)" == "kernel32.lib "
107 ADVAPI32 = advapi32.lib
108 !else
109 ADVAPI32 =
110 !endif
112 # Older ntwin32.mak files do not define libc; do it for them.
113 !ifndef libc
114 libc = libc.lib
115 !endif
117 # The base libraries for compiling Emacs on NT. With MSVC, this should
118 # include oldnames.lib.
119 !if $(MSVCNT11)
120 BASE_LIBS = $(libc) $(baselibs) oldnames.lib
121 !else
122 BASE_LIBS = $(libc) $(baselibs)
123 !endif
125 # We want any debugging info in the executable.
126 !if "$(LINK)" == "link32"
127 SYS_LDFLAGS =
128 !else
129 SYS_LDFLAGS = -pdb:none -release -incremental:no
130 !endif
132 INC = -I.
133 CFLAGS_COMMON = -nologo $(INC) $(ARCH_CFLAGS) $(LOCAL_FLAGS) -DWIN32_LEAN_AND_MEAN -D$(ARCH)
134 !if $(MSVCNT11)
135 CFLAGS = $(CFLAGS_COMMON) -D_CRTAPI1=_cdecl
136 !else
137 CFLAGS = $(CFLAGS_COMMON)
138 !endif
139 !ifdef NTGUI
140 CFLAGS = $(CFLAGS) -DHAVE_NTGUI=1
141 !endif
143 OBJDIR = obj
144 $(OBJDIR):; -mkdir $(OBJDIR)
145 BLD = $(OBJDIR)\$(ARCH)
146 $(BLD): $(OBJDIR)
147 -mkdir $(BLD)
149 CP = copy
150 CP_DIR = xcopy /f/r/i/e/d
152 # This is completely braindamaged, but it's the only routine known to be there
153 DEL_TREE = echo y | rmdir /s
155 # The location of the icon file
156 EMACS_ICON_PATH = ..\nt\emacs.ico
158 # Lets us add icons to the GNU Emacs folder
159 ADDPM = ..\nt\$(BLD)\addpm.exe
161 !if "$(ARCH)" == "i386"
162 ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -G3d -Zi -Od
163 ARCH_LDFLAGS = -align:0x1000 $(SYS_LDFLAGS)
165 !else
166 !if "$(ARCH)" == "mips"
167 ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0
168 ARCH_LDFLAGS = -align:0x1000 $(SYS_LDFLAGS)
170 !else
171 !if "$(ARCH)" == "alpha"
172 ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -D__stdcall= -D__cdecl=
173 ARCH_LDFLAGS = -align:0x2000 $(SYS_LDFLAGS)
175 !else
176 !if "$(ARCH)" == "ppc"
177 # These flags are a guess...if they don't work, please send me mail.
178 ARCH_CFLAGS = -D_PPC_=1 -c -Ze -Zi -W2 -Od
179 ARCH_LDFLAGS = -align:0x1000 $(SYS_LDFLAGS)
181 !else
182 !ERROR Unknown architecture type "$(ARCH)".
183 !endif
184 !endif
185 !endif
186 !endif