]> code.delx.au - gnu-emacs/blob - nt/makefile.nt
Trailing whitespace deleted.
[gnu-emacs] / nt / makefile.nt
1 #
2 # Top level makefile for building GNU Emacs on Windows NT
3 # Copyright (c) 1993-2000 Free Software Foundation, Inc.
4 #
5 # This file is part of GNU Emacs.
6 #
7 # GNU Emacs is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
11 #
12 # GNU Emacs is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs; see the file COPYING. If not, write to
19 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 # Boston, MA 02111-1307, USA.
21 #
22 # Geoff Voelker (voelker@cs.washington.edu) 11-20-93
23 # 9-6-94
24 !include makefile.def
25
26 ALL = addpm ddeclient runemacs cmdproxy addsection preprep
27 !if $(MSVCNT11)
28 TRES = $(BLD)\emacs.res
29 !else
30 TRES = $(BLD)\emacs.rbj
31 !endif
32
33 addpm: $(BLD) $(BLD)\addpm.exe
34 $(BLD)\addpm.obj: addpm.c
35 $(BLD)\addpm.exe: $(BLD)\addpm.obj
36 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
37 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
38
39 ddeclient: $(BLD) $(BLD)\ddeclient.exe
40 $(BLD)\ddeclient.obj: ddeclient.c
41 $(BLD)\ddeclient.exe: $(BLD)\ddeclient.obj
42 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
43 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
44
45 cmdproxy: $(BLD) $(BLD)\cmdproxy.exe
46 $(BLD)\cmdproxy.obj: cmdproxy.c
47 $(BLD)\cmdproxy.exe: $(BLD)\cmdproxy.obj
48 $(LINK) -out:$@ -subsystem:console -entry:mainCRTStartup \
49 $(SYS_LDFLAGS) $** $(BASE_LIBS) user32.lib
50
51 addsection: $(BLD) $(BLD)\addsection.exe
52 $(BLD)\addsection.obj: addsection.c
53 $(BLD)\addsection.exe: $(BLD)\addsection.obj
54 $(LINK) -debug:full -out:$@ -subsystem:console -entry:mainCRTStartup \
55 $(SYS_LDFLAGS) $** $(BASE_LIBS) user32.lib
56
57 preprep: $(BLD) $(BLD)\preprep.exe
58 $(BLD)\preprep.obj: preprep.c
59 $(BLD)\preprep.exe: $(BLD)\preprep.obj
60 $(LINK) -debug:full -out:$@ -subsystem:console -entry:mainCRTStartup \
61 $(SYS_LDFLAGS) $** $(BASE_LIBS)
62
63 #
64 # The resource file. NT 3.10 requires the use of cvtres; even though
65 # it is not necessary on later versions, it is still ok to use it.
66 #
67 $(TRES): emacs.rc
68 $(RC) -Fo$(BLD)\emacs.res $**
69 !if !$(MSVCNT11)
70 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
71 !endif
72
73 runemacs: $(BLD) $(BLD)\runemacs.exe
74 $(BLD)\runemacs.obj: runemacs.c
75 $(BLD)\runemacs.exe: $(BLD)\runemacs.obj $(TRES)
76 $(LINK) -out:$@ -subsystem:windows -entry:WinMainCRTStartup \
77 $(SYS_LDFLAGS) $** $(BASE_LIBS) $(ADVAPI32) user32.lib
78
79 # Since Windows 95 does not support multiple commands on one command line
80 # (e.g., in for loops), we cannot use for loops any more.
81 # SUBDIRS = lib-src src lisp
82
83 #
84 # Build emacs
85 #
86 BUILD_CMD = $(MAKE) $(MFLAGS) -f makefile.nt all
87 all: $(BLD) $(ALL)
88 cd ..\lib-src
89 $(BUILD_CMD)
90 cd ..\src
91 $(BUILD_CMD)
92 cd ..\lisp
93 $(BUILD_CMD)
94 cd ..\leim
95 if exist makefile.nt $(BUILD_CMD)
96 cd ..\nt
97
98 BOOTSTRAP_CMD = $(MAKE) $(MFLAGS) -f makefile.nt bootstrap
99 bootstrap: $(BLD) $(ALL)
100 cd ..\src
101 $(BOOTSTRAP_CMD)
102 $(BOOTCLEAN_CMD)
103 cd ..\lisp
104 $(BOOTSTRAP_CMD)
105 cd ..\nt
106
107 BOOTCLEAN_CMD = $(MAKE) $(MFLAGS) -f makefile.nt bootstrap-clean
108 bootstrap-clean:
109 cd ..\src
110 $(BOOTCLEAN_CMD)
111 cd ..\lisp
112 $(BOOTCLEAN_CMD)
113
114 $(INSTALL_DIR):
115 - mkdir $(INSTALL_DIR)
116
117 $(INSTALL_DIR)\bin:
118 - mkdir $(INSTALL_DIR)\bin
119
120 #
121 # Build and install emacs in INSTALL_DIR
122 #
123 INSTALL_CMD = $(MAKE) -f makefile.nt install
124 install: all $(INSTALL_DIR)
125 cd ..\lib-src
126 $(INSTALL_CMD)
127 cd ..\src
128 $(INSTALL_CMD)
129 cd ..\lisp
130 $(INSTALL_CMD)
131 cd ..\leim
132 if exist makefile.nt $(INSTALL_CMD)
133 cd ..\nt
134 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
135 - $(CP) $(BLD)\ddeclient.exe $(INSTALL_DIR)\bin
136 - $(CP) $(BLD)\cmdproxy.exe $(INSTALL_DIR)\bin
137 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
138 - $(CP) ..\lib-src\fns-*.el $(INSTALL_DIR)\bin
139 - $(ADDPM) $(INSTALL_DIR)
140 - $(DEL) ..\same-dir.tst
141 - $(DEL) $(INSTALL_DIR)\same-dir.tst
142 - mkdir $(INSTALL_DIR)\etc\icons
143 - $(CP_DIR) icons $(INSTALL_DIR)\etc\icons
144 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
145 if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install
146 - $(DEL) ..\same-dir.tst
147 - $(DEL) $(INSTALL_DIR)\same-dir.tst
148
149 #
150 # This installs executables from ..\bin into the installation directory
151 # without building anything.
152 #
153 fast_install:
154 - mkdir $(INSTALL_DIR)\data
155 $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc
156 - mkdir $(INSTALL_DIR)\bin
157 - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin
158 - $(CP) $(BLD)\ddeclient.exe $(INSTALL_DIR)\bin
159 - $(CP) $(BLD)\cmdproxy.exe $(INSTALL_DIR)\bin
160 - $(CP) $(BLD)\runemacs.exe $(INSTALL_DIR)\bin
161 - $(CP) ..\lib-src\fns-*.el $(INSTALL_DIR)\bin
162 - $(DEL) ..\same-dir.tst
163 - $(DEL) $(INSTALL_DIR)\same-dir.tst
164 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
165 if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin
166 if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin
167 if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin
168 if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install
169 - $(DEL) ..\same-dir.tst
170 - $(DEL) $(INSTALL_DIR)\same-dir.tst
171
172 real_install:
173 - $(DEL) ..\same-dir.tst
174 - $(DEL) $(INSTALL_DIR)\same-dir.tst
175 echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
176 - mkdir $(INSTALL_DIR)\etc
177 - mkdir $(INSTALL_DIR)\info
178 - mkdir $(INSTALL_DIR)\lock
179 - mkdir $(INSTALL_DIR)\data
180 - mkdir $(INSTALL_DIR)\site-lisp
181 - mkdir $(INSTALL_DIR)\etc\icons
182 - $(CP_DIR) icons $(INSTALL_DIR)\etc\icons
183 if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc
184 if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info
185 - $(DEL) ..\same-dir.tst
186 - $(DEL) $(INSTALL_DIR)\same-dir.tst
187
188 #
189 # Maintenance
190 #
191 CLEAN_CMD = $(MAKE) -f makefile.nt clean
192 clean:
193 - $(DEL) *~ *.pdb
194 - $(DEL) *.orig
195 - $(DEL) *.rej
196 - $(DEL) *.crlf
197 - $(DEL_TREE) deleted
198 - $(DEL_TREE) obj
199 - $(DEL_TREE) obj-spd
200 - $(DEL) ..\etc\DOC ..\etc\DOC-X
201 cd ..\lib-src
202 $(CLEAN_CMD)
203 cd ..\src
204 $(CLEAN_CMD)
205 cd ..\lisp
206 $(CLEAN_CMD)
207 cd ..\leim
208 if exist makefile.nt $(CLEAN_CMD)
209 cd ..\nt
210
211 realclean: clean
212 - $(DEL_TREE) ..\bin