]> code.delx.au - gnu-emacs/blob - lib-src/makefile.w32-in
Convert consecutive FSF copyright years to ranges.
[gnu-emacs] / lib-src / makefile.w32-in
1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2000-2011 Free Software Foundation, Inc.
3
4 # This file is part of GNU Emacs.
5
6 # GNU Emacs is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # GNU Emacs is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
18
19
20 ALL = make-docfile hexl ctags etags movemail ebrowse emacsclient
21
22 .PHONY: $(ALL)
23
24 VERSION = 24.0.50
25
26 LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \
27 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \
28 -I../src
29
30 LIBS = $(BASE_LIBS) $(ADVAPI32)
31
32 $(BLD)/make-docfile.exe: $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O)
33 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O) $(LIBS)
34 $(BLD)/hexl.exe: $(BLD)/hexl.$(O)
35 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS)
36 $(BLD)/fakemail.exe: $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O)
37 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) $(LIBS)
38 $(BLD)/test-distrib.exe: $(BLD)/test-distrib.$(O)
39 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/test-distrib.$(O) $(LIBS)
40
41 make-docfile: stamp_BLD $(BLD)/make-docfile.exe
42 ctags: stamp_BLD $(BLD)/ctags.exe
43 etags: stamp_BLD $(BLD)/etags.exe
44 ebrowse: stamp_BLD $(BLD)/ebrowse.exe
45 hexl: stamp_BLD $(BLD)/hexl.exe
46 movemail: stamp_BLD $(BLD)/movemail.exe
47 fakemail: stamp_BLD $(BLD)/fakemail.exe
48 emacsclient: stamp_BLD $(BLD)/emacsclient.exe $(BLD)/emacsclientw.exe
49
50 test-distrib: stamp_BLD $(BLD)/test-distrib.exe
51 "$(BLD)/test-distrib.exe" "$(SRC)/testfile"
52
53 GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O)
54 GETOPTDEPS = $(GETOPTOBJS) getopt.h
55 MOVEMAILOBJS = $(BLD)/movemail.$(O) \
56 $(BLD)/pop.$(O) \
57 $(BLD)/ntlib.$(O) \
58 $(GETOPTOBJS)
59
60 $(BLD)/movemail.exe: $(MOVEMAILOBJS) getopt.h
61 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
62 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(MOVEMAILOBJS) $(WSOCK32) $(LIBS)
63
64 ECLIENT_CFLAGS = -DHAVE_GETCWD -DHAVE_STRERROR -DVERSION="\"$(VERSION)\""
65 ECLIENTOBJS = $(BLD)/emacsclient.$(O) \
66 $(BLD)/getopt.$(O) \
67 $(BLD)/getopt1.$(O) \
68 $(BLD)/ntlib.$(O)
69 CLIENTRES = ../nt/$(BLD)/emacsclient.res
70
71 $(CLIENTRES): ../nt/emacsclient.rc
72 @echo Emacsclient resource file must be built from nt directory
73 @exit -1
74
75 $(BLD)/emacsclient.exe: $(ECLIENTOBJS)
76 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
77 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS)
78
79 $(BLD)/emacsclientw.exe: $(ECLIENTOBJS) $(CLIENTRES)
80 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
81 $(LINK) $(LINK_OUT)$@ $(CLIENTRES) -mwindows $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS)
82
83 # emacsclient.$(O) depends on makefile.w32-in because makefile.w32-in
84 # can be edited to define VERSION string, which is part of ECLIENT_CFLAGS.
85 $(BLD)/emacsclient.$(O): emacsclient.c makefile.w32-in
86 $(CC) $(CFLAGS) $(ECLIENT_CFLAGS) $(CC_OUT)$@ emacsclient.c
87
88 ETAGSOBJ = $(BLD)/etags.$(O) \
89 $(BLD)/getopt.$(O) \
90 $(BLD)/getopt1.$(O) \
91 $(BLD)/ntlib.$(O) \
92 $(BLD)/regex.$(O)
93
94 $(BLD)/etags.exe: $(ETAGSOBJ)
95 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS)
96
97
98 EBROWSEOBJ = $(BLD)/ebrowse.$(O) \
99 $(BLD)/getopt.$(O) \
100 $(BLD)/getopt1.$(O) \
101 $(BLD)/ntlib.$(O)
102
103 $(BLD)/ebrowse.exe: $(EBROWSEOBJ)
104 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(EBROWSEOBJ) $(LIBS)
105
106 $(BLD)/regex.$(O): ../src/regex.c ../src/regex.h ../src/config.h
107 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
108 ../src/regex.c $(CC_OUT)$@
109
110 ETAGS_CFLAGS = -DHAVE_GETCWD
111 $(BLD)/etags.$(O): etags.c
112 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c
113
114 CTAGSOBJ = $(BLD)/ctags.$(O) \
115 $(BLD)/getopt.$(O) \
116 $(BLD)/getopt1.$(O) \
117 $(BLD)/ntlib.$(O) \
118 $(BLD)/regex.$(O)
119
120 $(BLD)/ctags.exe: $(CTAGSOBJ)
121 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS)
122
123 ctags.c: etags.c
124 - $(DEL) ctags.c
125 $(CP) etags.c ctags.c
126
127 CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS)
128 $(BLD)/ctags.$(O): ctags.c
129 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c
130
131 #
132 # From ..\src\Makefile.in
133 # It doesn't matter if the real name is *.obj for the files in this list,
134 # make-docfile blindly replaces .o with .c anyway. Keep .o in this list
135 # as it is required by code in doc.c.
136 #
137 obj = dosfns.o msdos.o \
138 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o \
139 fontset.o menu.o \
140 w32.o w32console.o w32fns.o w32heap.o w32inevt.o \
141 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o \
142 font.o w32font.o w32uniscribe.o \
143 dispnew.o frame.o scroll.o xdisp.o window.o bidi.o \
144 charset.o coding.o category.o ccl.o character.o chartab.o \
145 cm.o term.o terminal.o xfaces.o \
146 emacs.o keyboard.o macros.o keymap.o sysdep.o \
147 buffer.o filelock.o insdel.o marker.o \
148 minibuf.o fileio.o dired.o filemode.o \
149 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
150 alloc.o data.o doc.o editfns.o callint.o \
151 eval.o floatfns.o fns.o print.o lread.o \
152 syntax.o bytecode.o \
153 process.o callproc.o unexw32.o \
154 region-cache.o sound.o atimer.o \
155 doprnt.o strftime.o intervals.o textprop.o composite.o md5.o
156
157 #
158 # These are the lisp files that are loaded up in loadup.el
159 #
160 lispsource = ../lisp/
161
162 MOUSE_SUPPORT = \
163 $(lispsource)select.elc \
164 $(lispsource)scroll-bar.elc \
165 $(lispsource)mouse.elc
166 WINNT_SUPPORT = \
167 $(lispsource)ls-lisp.elc \
168 $(lispsource)disp-table.elc \
169 $(lispsource)w32-fns.elc \
170 $(lispsource)dos-w32.elc \
171 $(lispsource)w32-vars.elc \
172 $(lispsource)term/common-win.elc \
173 $(lispsource)term/w32-win.elc
174 TOOLTIP_SUPPORT = $(lispsource)tooltip.elc
175 WINDOW_SUPPORT = \
176 $(lispsource)fringe.elc \
177 $(lispsource)image.elc \
178 $(lispsource)international/fontset.elc \
179 $(lispsource)dnd.elc \
180 $(lispsource)tool-bar.elc \
181 $(lispsource)mwheel.elc
182
183 # lisp files that are loaded up on other platforms
184 OTHER_PLATFORM_SUPPORT = \
185 $(lispsource)dos-fns.elc \
186 $(lispsource)dos-vars.elc \
187 $(lispsource)term/internal.elc \
188 $(lispsource)term/pc-win.elc \
189 $(lispsource)x-dnd.elc \
190 $(lispsource)term/x-win.elc \
191 $(lispsource)term/ns-win.elc
192
193
194 lisp1= \
195 $(lispsource)abbrev.elc \
196 $(lispsource)buff-menu.elc \
197 $(lispsource)button.elc \
198 $(lispsource)emacs-lisp/byte-run.elc \
199 $(lispsource)composite.elc \
200 $(lispsource)cus-face.elc \
201 $(lispsource)cus-start.elc \
202 $(lispsource)custom.elc \
203 $(lispsource)emacs-lisp/backquote.elc \
204 $(lispsource)emacs-lisp/lisp-mode.elc \
205 $(lispsource)emacs-lisp/lisp.elc \
206 $(lispsource)env.elc \
207 $(lispsource)faces.elc \
208 $(lispsource)files.elc \
209 $(lispsource)format.elc \
210 $(lispsource)facemenu.elc \
211 $(MOUSE_SUPPORT) \
212 $(lispsource)emacs-lisp/float-sup.elc \
213 $(lispsource)frame.elc \
214 $(lispsource)help.elc \
215 $(lispsource)indent.elc \
216 $(lispsource)isearch.elc \
217 $(lispsource)rfn-eshadow.elc \
218 $(lispsource)loadup.el \
219 $(lispsource)loaddefs.el \
220 $(lispsource)bindings.elc \
221 $(lispsource)emacs-lisp/map-ynp.elc \
222 $(lispsource)menu-bar.elc \
223 $(lispsource)international/mule.elc \
224 $(lispsource)international/mule-conf.el \
225 $(lispsource)international/mule-cmds.elc \
226 $(lispsource)international/characters.elc \
227 $(lispsource)international/charprop.el \
228 $(lispsource)case-table.elc
229
230 lisp2 = \
231 $(lispsource)language/chinese.el \
232 $(lispsource)language/cyrillic.el \
233 $(lispsource)language/indian.el \
234 $(lispsource)language/sinhala.el \
235 $(lispsource)language/english.el \
236 $(lispsource)language/ethiopic.elc \
237 $(lispsource)language/european.elc \
238 $(lispsource)language/czech.el \
239 $(lispsource)language/slovak.el \
240 $(lispsource)language/romanian.el \
241 $(lispsource)language/greek.el \
242 $(lispsource)language/hebrew.elc \
243 $(lispsource)language/japanese.el \
244 $(lispsource)language/korean.el \
245 $(lispsource)language/lao.el \
246 $(lispsource)language/cham.el \
247 $(lispsource)language/tai-viet.el \
248 $(lispsource)language/thai.el \
249 $(lispsource)language/tibetan.elc \
250 $(lispsource)language/vietnamese.el \
251 $(lispsource)language/misc-lang.el \
252 $(lispsource)language/utf-8-lang.el \
253 $(lispsource)language/georgian.el \
254 $(lispsource)language/khmer.el \
255 $(lispsource)language/burmese.el \
256 $(lispsource)paths.el \
257 $(lispsource)register.elc \
258 $(lispsource)replace.elc \
259 $(lispsource)simple.elc \
260 $(lispsource)minibuffer.elc \
261 $(lispsource)startup.elc \
262 $(lispsource)subr.elc \
263 $(lispsource)term/tty-colors.elc \
264 $(lispsource)font-core.elc \
265 $(lispsource)emacs-lisp/syntax.elc \
266 $(lispsource)font-lock.elc \
267 $(lispsource)jit-lock.elc \
268 $(lispsource)textmodes/fill.elc \
269 $(lispsource)textmodes/page.elc \
270 $(lispsource)textmodes/paragraphs.elc \
271 $(lispsource)textmodes/text-mode.elc \
272 $(lispsource)emacs-lisp/timer.elc \
273 $(lispsource)jka-cmpr-hook.elc \
274 $(lispsource)vc/vc-hooks.elc \
275 $(lispsource)vc/ediff-hook.elc \
276 $(lispsource)epa-hook.elc \
277 $(TOOLTIP_SUPPORT) \
278 $(WINNT_SUPPORT) \
279 $(WINDOW_SUPPORT) \
280 $(lispsource)widget.elc \
281 $(lispsource)window.elc \
282 $(lispsource)version.el
283
284 # Used by batch-update-autoloads.
285 echolisp:
286 @echo $(lisp1)
287 @echo $(lisp2)
288
289 # This is needed the first time we build the tree, since temacs.exe
290 # does not exist yet, and the DOC rule needs it to rebuild DOC whenever
291 # Emacs is rebuilt.
292 ../src/$(BLD)/temacs.exe:
293 - mkdir "../src/$(OBJDIR)"
294 - mkdir "../src/$(BLD)"
295 @echo temacs > temacs.exe
296 $(CP) temacs.exe ../src/$(BLD)
297 - $(DEL) temacs.exe
298
299 DOC = DOC
300 $(DOC): stamp_BLD $(BLD)/make-docfile.exe ../src/$(BLD)/temacs.exe $(lisp1) $(lisp2) $(OTHER_PLATFORM_SUPPORT)
301 - $(DEL) $(DOC)
302 "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj)
303 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp1)
304 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp2)
305 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(OTHER_PLATFORM_SUPPORT)
306 $(CP) $(DOC) ../etc/DOC-X
307 - mkdir "../src/$(OBJDIR)"
308 - mkdir "../src/$(OBJDIR)/etc"
309 $(CP) $(DOC) ../src/$(OBJDIR)/etc/DOC-X
310
311 {$(BLD)}.$(O){$(BLD)}.exe:
312 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $*.$(O) $(LIBS)
313
314 #
315 # Build the executables
316 #
317 all: stamp_BLD $(ALL) $(DOC)
318
319 #
320 # Assuming INSTALL_DIR is defined, build and install emacs in it.
321 #
322 INSTALL_FILES = $(ALL)
323 install: $(INSTALL_FILES)
324 - mkdir "$(INSTALL_DIR)/bin"
325 $(CP) $(BLD)/etags.exe $(INSTALL_DIR)/bin
326 $(CP) $(BLD)/ebrowse.exe $(INSTALL_DIR)/bin
327 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin
328 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin
329 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin
330 $(CP) $(BLD)/emacsclient.exe $(INSTALL_DIR)/bin
331 $(CP) $(BLD)/emacsclientw.exe $(INSTALL_DIR)/bin
332 - mkdir "$(INSTALL_DIR)/etc"
333 $(CP) $(DOC) $(INSTALL_DIR)/etc
334
335 #
336 # Maintenance
337 #
338 # We used to delete *~ here, but that might inadvertently remove
339 # precious files if it happens to match their short 8+3 aliases.
340 clean:
341 - $(DEL) DOC* $(COMPILER_TEMP_FILES)
342 - $(DEL) ctags.c
343 - $(DEL) getopt.h
344 - $(DEL_TREE) $(OBJDIR)
345 - $(DEL) stamp_BLD
346 - $(DEL) echolisp.tmp
347
348 distclean: cleanall
349 - $(DEL) TAGS
350 - $(DEL) Makefile
351
352 maintainer-clean: distclean
353
354 cleanall: clean
355 - $(DEL_TREE) obj
356 - $(DEL_TREE) obj-spd
357 - $(DEL_TREE) oo
358 - $(DEL_TREE) oo-spd
359
360 #
361 # Headers we would preprocess if we could.
362 #
363 ../src/config.h: ../nt/$(CONFIG_H)
364 $(DEL) $@
365 echo $(CONFIG_H) has changed. Re-run configure.bat.
366 exit -1
367
368 getopt.h: getopt_.h
369 $(CP) $(ALL_DEPS) $@
370
371 ### TAGS ###
372
373 TAGS: $(BLD)/etags.exe *.c *.h
374 $(BLD)/etags.exe *.c *.h
375
376 ### DEPENDENCIES ###
377
378 EMACS_ROOT = ..
379 SRC = .
380
381 $(BLD)/alloca.$(O) : \
382 $(SRC)/alloca.c \
383 $(EMACS_ROOT)/src/s/ms-w32.h \
384 $(EMACS_ROOT)/src/m/intel386.h \
385 $(EMACS_ROOT)/src/config.h \
386 $(EMACS_ROOT)/src/blockinput.h
387
388 $(BLD)/ctags.$(O) : \
389 $(SRC)/ctags.c \
390 $(EMACS_ROOT)/nt/inc/sys/param.h \
391 $(EMACS_ROOT)/src/s/ms-w32.h \
392 $(EMACS_ROOT)/src/m/intel386.h \
393 $(EMACS_ROOT)/lib-src/../src/config.h \
394 $(SRC)/ntlib.h \
395 $(SRC)/getopt.h
396
397 $(BLD)/emacsclient.$(O) : \
398 $(SRC)/emacsclient.c \
399 $(EMACS_ROOT)/src/s/ms-w32.h \
400 $(EMACS_ROOT)/src/m/intel386.h \
401 $(EMACS_ROOT)/lib-src/../src/config.h
402
403 $(BLD)/etags.$(O) : \
404 $(SRC)/etags.c \
405 $(EMACS_ROOT)/nt/inc/sys/param.h \
406 $(EMACS_ROOT)/src/s/ms-w32.h \
407 $(EMACS_ROOT)/src/m/intel386.h \
408 $(EMACS_ROOT)/lib-src/../src/config.h \
409 $(SRC)/ntlib.h \
410 $(SRC)/getopt.h
411
412 $(BLD)/fakemail.$(O) : \
413 $(SRC)/fakemail.c \
414 $(SRC)/ntlib.h \
415 $(EMACS_ROOT)/src/s/ms-w32.h \
416 $(EMACS_ROOT)/src/m/intel386.h \
417 $(EMACS_ROOT)/lib-src/../src/config.h \
418 $(EMACS_ROOT)/nt/inc/pwd.h
419
420 $(BLD)/getdate.$(O) : \
421 $(SRC)/getdate.c \
422 $(EMACS_ROOT)/src/s/ms-w32.h \
423 $(EMACS_ROOT)/src/m/intel386.h \
424 $(EMACS_ROOT)/src/config.h \
425 $(MSTOOLS_SYS)/types.h
426
427 $(BLD)/getopt.$(O) : \
428 $(SRC)/getopt.c \
429 $(EMACS_ROOT)/src/s/ms-w32.h \
430 $(EMACS_ROOT)/src/m/intel386.h \
431 $(EMACS_ROOT)/src/config.h \
432 $(SRC)/ntlib.h \
433 $(SRC)/getopt.h
434
435 $(BLD)/getopt1.$(O) : \
436 $(SRC)/getopt1.c \
437 $(EMACS_ROOT)/src/s/ms-w32.h \
438 $(EMACS_ROOT)/src/m/intel386.h \
439 $(EMACS_ROOT)/src/config.h \
440 $(SRC)/getopt.h
441
442 $(BLD)/hexl.$(O) : \
443 $(SRC)/hexl.c
444
445 $(BLD)/leditcfns.$(O) : \
446 $(SRC)/leditcfns.c
447
448 $(BLD)/make-docfile.$(O) : \
449 $(SRC)/make-docfile.c \
450 $(EMACS_ROOT)/src/config.h
451
452 $(BLD)/make-path.$(O) : \
453 $(SRC)/make-path.c
454
455 $(BLD)/movemail.$(O) : \
456 $(SRC)/movemail.c \
457 $(EMACS_ROOT)/src/s/ms-w32.h \
458 $(EMACS_ROOT)/src/m/intel386.h \
459 $(EMACS_ROOT)/lib-src/../src/config.h \
460 $(EMACS_ROOT)/nt/inc/sys/file.h \
461 $(EMACS_ROOT)/lib-src/../src/syswait.h \
462 $(EMACS_ROOT)/nt/inc/pwd.h \
463 $(SRC)/ntlib.h
464 $(CC) $(CFLAGS) -DUSG $(CC_OUT)$@ movemail.c
465
466 $(BLD)/ntlib.$(O) : \
467 $(SRC)/ntlib.c \
468 $(SRC)/ntlib.h \
469 $(EMACS_ROOT)/nt/inc/pwd.h
470
471 $(BLD)/pop.$(O) : \
472 $(SRC)/pop.c \
473 $(SRC)/pop.h \
474 $(SRC)/ntlib.h
475
476 $(BLD)/profile.$(O) : \
477 $(SRC)/profile.c \
478 $(EMACS_ROOT)/src/s/ms-w32.h \
479 $(EMACS_ROOT)/src/m/intel386.h \
480 $(EMACS_ROOT)/lib-src/../src/config.h \
481 $(EMACS_ROOT)/lib-src/../src/systime.h
482
483 $(BLD)/qsort.$(O) : \
484 $(SRC)/qsort.c
485
486 $(BLD)/tcp.$(O) : \
487 $(SRC)/tcp.c
488
489 $(BLD)/test-distrib.$(O) : \
490 $(SRC)/test-distrib.c
491
492 $(BLD)/timer.$(O) : \
493 $(SRC)/timer.c \
494 $(EMACS_ROOT)/src/s/ms-w32.h \
495 $(EMACS_ROOT)/src/m/intel386.h \
496 $(EMACS_ROOT)/lib-src/../src/config.h
497
498 # The following dependencies are for supporting parallel builds, where
499 # we must make sure $(BLD) exists before any compilation starts.
500 #
501 $(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O) $(BLD)/fakemail.$(O): stamp_BLD
502
503 $(BLD)/test-distrib.$(O) $(GETOPTOBJS) $(MOVEMAILOBJS): stamp_BLD
504
505 $(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O): stamp_BLD
506
507 $(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O): stamp_BLD