merge trunk
[bpt/emacs.git] / lib-src / makefile.w32-in
CommitLineData
b46a6a83 1# -*- Makefile -*- for GNU Emacs on the Microsoft Windows API.
ab422c4d 2# Copyright (C) 2000-2013 Free Software Foundation, Inc.
294981c7
GM
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
7bbaaedd 19
e4ecc6a2
EZ
20ALL = $(BLD)/test-distrib.exe $(BLD)/make-docfile.exe $(BLD)/hexl.exe\
21 $(BLD)/ctags.exe $(BLD)/etags.exe $(BLD)/movemail.exe $(BLD)/ebrowse.exe\
31542918 22 $(BLD)/emacsclient.exe $(BLD)/emacsclientw.exe $(BLD)/profile.exe
7bbaaedd 23
d67a9a85 24.PHONY: make-docfile
7bbaaedd 25
3fbc4b54 26LOCAL_FLAGS = -DNO_LDAV=1 -DNO_ARCHIVES=1 -I../lib \
8c9afb46 27 -I../nt/inc -I../src $(EMACS_EXTRA_C_FLAGS)
7bbaaedd 28
ad456bcb 29LIBS = $(BASE_LIBS) $(ADVAPI32)
d7158313 30LIB_SRC = .
7bbaaedd 31
d67a9a85
EZ
32# The following target is used by makefile.w32-in files in other directories.
33make-docfile: $(BLD)/make-docfile.exe
34
7bbaaedd
AI
35$(BLD)/make-docfile.exe: $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O)
36 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O) $(LIBS)
37$(BLD)/hexl.exe: $(BLD)/hexl.$(O)
38 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS)
9781fb53
EZ
39$(BLD)/test-distrib.exe: $(BLD)/test-distrib.$(O)
40 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/test-distrib.$(O) $(LIBS)
65e46515 41 "$(BLD)/test-distrib.exe" "$(LIB_SRC)/testfile"
7bbaaedd 42
7bbaaedd
AI
43MOVEMAILOBJS = $(BLD)/movemail.$(O) \
44 $(BLD)/pop.$(O) \
f915f0f7
EZ
45 ../lib/$(BLD)/libgnu.$(A) \
46 $(BLD)/ntlib.$(O)
7bbaaedd 47
f915f0f7 48$(BLD)/movemail.exe: $(MOVEMAILOBJS) ../lib/getopt.h
7bbaaedd
AI
49# put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
50 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(MOVEMAILOBJS) $(WSOCK32) $(LIBS)
51
70b0d280 52ECLIENT_CFLAGS = -DHAVE_GETCWD -DHAVE_STRERROR
d20f2a6a 53ECLIENTOBJS = $(BLD)/emacsclient.$(O) \
f915f0f7
EZ
54 $(BLD)/ntlib.$(O) \
55 ../lib/$(BLD)/libgnu.$(A)
4429f88c 56CLIENTRES = ../nt/$(BLD)/emacsclient.res
4d91c8f9 57
4429f88c
JR
58$(CLIENTRES): ../nt/emacsclient.rc
59 @echo Emacsclient resource file must be built from nt directory
60 @exit -1
d20f2a6a
JB
61
62$(BLD)/emacsclient.exe: $(ECLIENTOBJS)
63# put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
2e2d2377 64 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS)
d20f2a6a 65
4429f88c 66$(BLD)/emacsclientw.exe: $(ECLIENTOBJS) $(CLIENTRES)
ba2d3968 67# put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
06523364 68 $(LINK) $(LINK_OUT)$@ $(CLIENTRES) $(MWINDOWS) $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS)
ba2d3968 69
70b0d280 70$(BLD)/emacsclient.$(O): emacsclient.c
8357b759 71 $(CC) $(CFLAGS) $(ECLIENT_CFLAGS) $(CC_OUT)$@ emacsclient.c
d20f2a6a 72
7bbaaedd 73ETAGSOBJ = $(BLD)/etags.$(O) \
f915f0f7 74 ../lib/$(BLD)/libgnu.$(A) \
7bbaaedd
AI
75 $(BLD)/ntlib.$(O) \
76 $(BLD)/regex.$(O)
77
78$(BLD)/etags.exe: $(ETAGSOBJ)
79 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS)
80
81
d19249e7 82EBROWSEOBJ = $(BLD)/ebrowse.$(O) \
f915f0f7 83 ../lib/$(BLD)/libgnu.$(A) \
ba2d3968 84 $(BLD)/ntlib.$(O)
d19249e7
JR
85
86$(BLD)/ebrowse.exe: $(EBROWSEOBJ)
88257bc8 87 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(EBROWSEOBJ) $(LIBS)
d19249e7 88
7bbaaedd
AI
89$(BLD)/regex.$(O): ../src/regex.c ../src/regex.h ../src/config.h
90 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
91 ../src/regex.c $(CC_OUT)$@
92
d9f1f55e 93ETAGS_CFLAGS = -DHAVE_GETCWD -DEMACS_NAME="\"GNU Emacs\""
7bbaaedd
AI
94$(BLD)/etags.$(O): etags.c
95 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c
96
97CTAGSOBJ = $(BLD)/ctags.$(O) \
f915f0f7 98 ../lib/$(BLD)/libgnu.$(A) \
7bbaaedd
AI
99 $(BLD)/ntlib.$(O) \
100 $(BLD)/regex.$(O)
101
102$(BLD)/ctags.exe: $(CTAGSOBJ)
103 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS)
104
105ctags.c: etags.c
106 - $(DEL) ctags.c
107 $(CP) etags.c ctags.c
108
b95b7254 109CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS)
7bbaaedd
AI
110$(BLD)/ctags.$(O): ctags.c
111 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c
112
31542918
JB
113PROFILEOBJS = $(BLD)/profile.$(O) \
114 ../lib/$(BLD)/libgnu.$(A) \
115 $(BLD)/ntlib.$(O)
116$(BLD)/profile.exe: $(PROFILEOBJS)
117 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(PROFILEOBJS) $(LIBS)
118
7bbaaedd 119#
3cf5c994
JD
120# From ..\src\Makefile.in
121# It doesn't matter if the real name is *.obj for the files in this list,
122# make-docfile blindly replaces .o with .c anyway. Keep .o in this list
123# as it is required by code in doc.c.
7bbaaedd 124#
f23d76bd 125obj = dosfns.o msdos.o \
eccfc782 126 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o \
2b8c9064
EZ
127 fontset.o menu.o dbusbind.o cygw32.o \
128 nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o \
129 w32.o w32console.o w32fns.o w32heap.o w32inevt.o w32notify.o \
3cf5c994 130 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o \
2b8c9064
EZ
131 w16select.o widget.o xfont.o ftfont.o xftfont.o ftxfont.o gtkutil.o \
132 xsettings.o xgselect.o termcap.o \
477f1e50 133 font.o w32font.o w32uniscribe.o w32notify.o \
994a7c3b 134 dispnew.o frame.o scroll.o xdisp.o window.o bidi.o \
eccfc782
JR
135 charset.o coding.o category.o ccl.o character.o chartab.o \
136 cm.o term.o terminal.o xfaces.o \
3cf5c994
JD
137 emacs.o keyboard.o macros.o keymap.o sysdep.o \
138 buffer.o filelock.o insdel.o marker.o \
602a5739 139 minibuf.o fileio.o dired.o \
3cf5c994
JD
140 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
141 alloc.o data.o doc.o editfns.o callint.o \
142 eval.o floatfns.o fns.o print.o lread.o \
a2666217 143 syntax.o bytecode.o \
994a7c3b 144 process.o callproc.o unexw32.o \
3cf5c994 145 region-cache.o sound.o atimer.o \
418401a5 146 doprnt.o intervals.o textprop.o composite.o \
6a586b7f 147 gnutls.o xml.o profiler.o
3cf5c994 148
7bbaaedd
AI
149#
150# These are the lisp files that are loaded up in loadup.el
151#
152lispsource = ../lisp/
153
a40c6a08
JR
154MOUSE_SUPPORT = \
155 $(lispsource)select.elc \
156 $(lispsource)scroll-bar.elc \
79d48c1a 157 $(lispsource)mouse.elc
a40c6a08
JR
158WINNT_SUPPORT = \
159 $(lispsource)ls-lisp.elc \
160 $(lispsource)disp-table.elc \
161 $(lispsource)w32-fns.elc \
162 $(lispsource)dos-w32.elc \
163 $(lispsource)w32-vars.elc \
f2d6b714 164 $(lispsource)term/common-win.elc \
a40c6a08 165 $(lispsource)term/w32-win.elc
a40c6a08
JR
166TOOLTIP_SUPPORT = $(lispsource)tooltip.elc
167WINDOW_SUPPORT = \
168 $(lispsource)fringe.elc \
169 $(lispsource)image.elc \
170 $(lispsource)international/fontset.elc \
171 $(lispsource)dnd.elc \
172 $(lispsource)tool-bar.elc \
173 $(lispsource)mwheel.elc
7bbaaedd 174
79d48c1a
JR
175# lisp files that are loaded up on other platforms
176OTHER_PLATFORM_SUPPORT = \
177 $(lispsource)dos-fns.elc \
178 $(lispsource)dos-vars.elc \
03dcfe01
CY
179 $(lispsource)term/internal.elc \
180 $(lispsource)term/pc-win.elc \
79d48c1a 181 $(lispsource)x-dnd.elc \
614bd9cf 182 $(lispsource)term/x-win.elc \
42d3cab7 183 $(lispsource)term/ns-win.elc
79d48c1a
JR
184
185
83a9c0b2 186lisp1= \
7f379e5b
JR
187 $(lispsource)abbrev.elc \
188 $(lispsource)buff-menu.elc \
e63e8d3e 189 $(lispsource)button.elc \
8dc48ef0 190 $(lispsource)emacs-lisp/byte-run.elc \
0c55bf82 191 $(lispsource)composite.elc \
98d926f2 192 $(lispsource)cus-face.elc \
7f379e5b
JR
193 $(lispsource)cus-start.elc \
194 $(lispsource)custom.elc \
dd87b4cc 195 $(lispsource)emacs-lisp/backquote.elc \
7f379e5b
JR
196 $(lispsource)emacs-lisp/lisp-mode.elc \
197 $(lispsource)emacs-lisp/lisp.elc \
a40c6a08 198 $(lispsource)env.elc \
98d926f2
EZ
199 $(lispsource)faces.elc \
200 $(lispsource)files.elc \
98d926f2 201 $(lispsource)format.elc \
a40c6a08
JR
202 $(lispsource)facemenu.elc \
203 $(MOUSE_SUPPORT) \
204 $(lispsource)emacs-lisp/float-sup.elc \
8dc48ef0 205 $(lispsource)frame.elc \
7f379e5b
JR
206 $(lispsource)help.elc \
207 $(lispsource)indent.elc \
208 $(lispsource)isearch.elc \
98d926f2 209 $(lispsource)rfn-eshadow.elc \
7bbaaedd
AI
210 $(lispsource)loadup.el \
211 $(lispsource)loaddefs.el \
7f379e5b 212 $(lispsource)bindings.elc \
8dc48ef0 213 $(lispsource)emacs-lisp/map-ynp.elc \
a40c6a08 214 $(lispsource)menu-bar.elc \
7f379e5b 215 $(lispsource)international/mule.elc \
2068905b 216 $(lispsource)international/mule-conf.elc \
7f379e5b
JR
217 $(lispsource)international/mule-cmds.elc \
218 $(lispsource)international/characters.elc \
a40c6a08 219 $(lispsource)international/charprop.el \
a19e68ea
JB
220 $(lispsource)case-table.elc \
221 $(lispsource)emacs-lisp/macroexp.elc
83a9c0b2
JR
222
223lisp2 = \
2068905b
EZ
224 $(lispsource)language/chinese.elc \
225 $(lispsource)language/cyrillic.elc \
226 $(lispsource)language/indian.elc \
227 $(lispsource)language/sinhala.elc \
228 $(lispsource)language/english.elc \
7f379e5b
JR
229 $(lispsource)language/ethiopic.elc \
230 $(lispsource)language/european.elc \
2068905b
EZ
231 $(lispsource)language/czech.elc \
232 $(lispsource)language/slovak.elc \
233 $(lispsource)language/romanian.elc \
234 $(lispsource)language/greek.elc \
f09e4c6b 235 $(lispsource)language/hebrew.elc \
2068905b 236 $(lispsource)language/japanese.elc \
4c77e620
EZ
237 $(lispsource)international/cp51932.el \
238 $(lispsource)international/eucjp-ms.el \
2068905b
EZ
239 $(lispsource)language/korean.elc \
240 $(lispsource)language/lao.elc \
241 $(lispsource)language/cham.elc \
242 $(lispsource)language/tai-viet.elc \
243 $(lispsource)language/thai.elc \
7f379e5b 244 $(lispsource)language/tibetan.elc \
2068905b
EZ
245 $(lispsource)language/vietnamese.elc \
246 $(lispsource)language/misc-lang.elc \
247 $(lispsource)language/utf-8-lang.elc \
248 $(lispsource)language/georgian.elc \
249 $(lispsource)language/khmer.elc \
250 $(lispsource)language/burmese.elc \
7f379e5b
JR
251 $(lispsource)register.elc \
252 $(lispsource)replace.elc \
253 $(lispsource)simple.elc \
01b996ad 254 $(lispsource)minibuffer.elc \
7f379e5b
JR
255 $(lispsource)startup.elc \
256 $(lispsource)subr.elc \
257 $(lispsource)term/tty-colors.elc \
7a8940da 258 $(lispsource)font-core.elc \
98d926f2
EZ
259 $(lispsource)emacs-lisp/syntax.elc \
260 $(lispsource)font-lock.elc \
261 $(lispsource)jit-lock.elc \
7f379e5b
JR
262 $(lispsource)textmodes/fill.elc \
263 $(lispsource)textmodes/page.elc \
264 $(lispsource)textmodes/paragraphs.elc \
265 $(lispsource)textmodes/text-mode.elc \
98d926f2 266 $(lispsource)emacs-lisp/timer.elc \
98d926f2 267 $(lispsource)jka-cmpr-hook.elc \
5fee75d4
JB
268 $(lispsource)vc/vc-hooks.elc \
269 $(lispsource)vc/ediff-hook.elc \
86914123 270 $(lispsource)epa-hook.elc \
a40c6a08 271 $(TOOLTIP_SUPPORT) \
7bbaaedd 272 $(WINNT_SUPPORT) \
a40c6a08 273 $(WINDOW_SUPPORT) \
7f379e5b
JR
274 $(lispsource)widget.elc \
275 $(lispsource)window.elc \
2068905b 276 $(lispsource)version.elc
7bbaaedd 277
3b57ab8f
EZ
278# This is needed the first time we build the tree, since temacs.exe
279# does not exist yet, and the DOC rule needs it to rebuild DOC whenever
280# Emacs is rebuilt.
281../src/$(BLD)/temacs.exe:
282 - mkdir "../src/$(OBJDIR)"
283 - mkdir "../src/$(BLD)"
284 @echo temacs > temacs.exe
285 $(CP) temacs.exe ../src/$(BLD)
286 - $(DEL) temacs.exe
7bbaaedd 287
52402e4f 288DOC = DOC
79d48c1a 289$(DOC): stamp_BLD $(BLD)/make-docfile.exe ../src/$(BLD)/temacs.exe $(lisp1) $(lisp2) $(OTHER_PLATFORM_SUPPORT)
7bbaaedd 290 - $(DEL) $(DOC)
cf6d30d7 291 "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj)
83a9c0b2
JR
292 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp1)
293 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp2)
79d48c1a 294 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(OTHER_PLATFORM_SUPPORT)
7bbaaedd
AI
295 $(CP) $(DOC) ../etc/DOC-X
296 - mkdir "../src/$(OBJDIR)"
297 - mkdir "../src/$(OBJDIR)/etc"
298 $(CP) $(DOC) ../src/$(OBJDIR)/etc/DOC-X
299
300{$(BLD)}.$(O){$(BLD)}.exe:
301 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $*.$(O) $(LIBS)
302
303#
304# Build the executables
305#
d67a9a85 306all: $(ALL) $(DOC)
7bbaaedd
AI
307
308#
309# Assuming INSTALL_DIR is defined, build and install emacs in it.
310#
311INSTALL_FILES = $(ALL)
312install: $(INSTALL_FILES)
313 - mkdir "$(INSTALL_DIR)/bin"
314 $(CP) $(BLD)/etags.exe $(INSTALL_DIR)/bin
88257bc8 315 $(CP) $(BLD)/ebrowse.exe $(INSTALL_DIR)/bin
7bbaaedd
AI
316 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin
317 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin
318 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin
d20f2a6a 319 $(CP) $(BLD)/emacsclient.exe $(INSTALL_DIR)/bin
ba2d3968 320 $(CP) $(BLD)/emacsclientw.exe $(INSTALL_DIR)/bin
31542918 321 $(CP) $(BLD)/profile.exe $(INSTALL_DIR)/bin
7bbaaedd
AI
322 - mkdir "$(INSTALL_DIR)/etc"
323 $(CP) $(DOC) $(INSTALL_DIR)/etc
324
325#
326# Maintenance
52402e4f 327#
9724908a
EZ
328# We used to delete *~ here, but that might inadvertently remove
329# precious files if it happens to match their short 8+3 aliases.
7bbaaedd 330clean:
9724908a 331 - $(DEL) DOC* $(COMPILER_TEMP_FILES)
7bbaaedd
AI
332 - $(DEL) ctags.c
333 - $(DEL_TREE) $(OBJDIR)
e313b518 334 - $(DEL) stamp_BLD
7bbaaedd 335
6948400c
JR
336distclean: cleanall
337 - $(DEL) TAGS
338 - $(DEL) Makefile
339
340maintainer-clean: distclean
341
7bbaaedd
AI
342cleanall: clean
343 - $(DEL_TREE) obj
344 - $(DEL_TREE) obj-spd
345 - $(DEL_TREE) oo
346 - $(DEL_TREE) oo-spd
347
348#
349# Headers we would preprocess if we could.
350#
351../src/config.h: ../nt/$(CONFIG_H)
a69edb8a 352 $(DEL) $@
70846e2a 353 echo $(CONFIG_H) has changed. Re-run configure.bat.
df1b2142
JR
354 exit -1
355
73077a9a
EZ
356### TAGS ###
357
73077a9a
EZ
358TAGS: $(BLD)/etags.exe *.c *.h
359 $(BLD)/etags.exe *.c *.h
360
7bbaaedd
AI
361### DEPENDENCIES ###
362
363EMACS_ROOT = ..
65e46515
JB
364SRC = $(EMACS_ROOT)/src
365NT_INC = $(EMACS_ROOT)/nt/inc
366GNU_LIB = $(EMACS_ROOT)/lib
367
837b365b 368MS_W32_H = $(NT_INC)/ms-w32.h \
65e46515 369 $(NT_INC)/sys/stat.h
552a99b4 370CONF_POST_H = $(SRC)/conf_post.h \
65e46515 371 $(MS_W32_H)
552a99b4
JB
372CONFIG_H = $(SRC)/config.h \
373 $(CONF_POST_H)
65e46515
JB
374INTTYPES_H = $(NT_INC)/inttypes.h \
375 $(NT_INC)/stdint.h
376NTLIB_H = $(LIB_SRC)/ntlib.h \
377 $(NT_INC)/pwd.h
378SYSTIME_H = $(SRC)/systime.h \
379 $(NT_INC)/sys/time.h \
380 $(GNU_LIB)/timespec.h
a75ce9d3 381SYSWAIT_H = $(SRC)/syswait.h \
0eeb69fe 382 $(NT_INC)/stdbool.h \
a75ce9d3 383 $(NT_INC)/sys/wait.h
7bbaaedd 384
7bbaaedd 385$(BLD)/ctags.$(O) : \
65e46515
JB
386 $(LIB_SRC)/ctags.c \
387 $(SRC)/regex.h \
388 $(NT_INC)/sys/stat.h \
389 $(NT_INC)/unistd.h \
390 $(GNU_LIB)/c-strcase.h \
391 $(GNU_LIB)/getopt.h \
392 $(CONFIG_H)
7bbaaedd 393
b97decf2 394$(BLD)/ebrowse.$(O) : \
65e46515
JB
395 $(LIB_SRC)/ebrowse.c \
396 $(GNU_LIB)/getopt.h \
397 $(GNU_LIB)/min-max.h \
398 $(CONFIG_H)
b97decf2 399
7bbaaedd 400$(BLD)/emacsclient.$(O) : \
65e46515
JB
401 $(LIB_SRC)/emacsclient.c \
402 $(NT_INC)/pwd.h \
403 $(NT_INC)/sys/stat.h \
404 $(NT_INC)/unistd.h \
405 $(GNU_LIB)/getopt.h \
406 $(CONFIG_H)
7bbaaedd 407
7bbaaedd 408$(BLD)/etags.$(O) : \
65e46515
JB
409 $(LIB_SRC)/etags.c \
410 $(SRC)/regex.h \
411 $(NT_INC)/sys/stat.h \
412 $(NT_INC)/unistd.h \
413 $(GNU_LIB)/c-strcase.h \
414 $(GNU_LIB)/getopt.h \
415 $(CONFIG_H)
7bbaaedd 416
7bbaaedd 417$(BLD)/hexl.$(O) : \
65e46515
JB
418 $(LIB_SRC)/hexl.c \
419 $(CONFIG_H)
7bbaaedd 420
7bbaaedd 421$(BLD)/make-docfile.$(O) : \
65e46515
JB
422 $(LIB_SRC)/make-docfile.c \
423 $(NT_INC)/unistd.h \
424 $(CONFIG_H)
7bbaaedd 425
7bbaaedd 426$(BLD)/movemail.$(O) : \
65e46515
JB
427 $(LIB_SRC)/movemail.c \
428 $(LIB_SRC)/pop.h \
65e46515
JB
429 $(NT_INC)/pwd.h \
430 $(NT_INC)/sys/file.h \
431 $(NT_INC)/sys/stat.h \
432 $(NT_INC)/unistd.h \
433 $(GNU_LIB)/getopt.h \
434 $(CONFIG_H) \
a75ce9d3
JB
435 $(NTLIB_H) \
436 $(SYSWAIT_H)
7bbaaedd
AI
437
438$(BLD)/ntlib.$(O) : \
65e46515
JB
439 $(LIB_SRC)/ntlib.c \
440 $(NT_INC)/sys/stat.h \
441 $(NTLIB_H)
7bbaaedd
AI
442
443$(BLD)/pop.$(O) : \
65e46515
JB
444 $(LIB_SRC)/pop.c \
445 $(LIB_SRC)/pop.h \
446 $(NT_INC)/netdb.h \
447 $(NT_INC)/pwd.h \
448 $(NT_INC)/unistd.h \
449 $(GNU_LIB)/min-max.h \
450 $(CONFIG_H) \
451 $(NTLIB_H)
7bbaaedd
AI
452
453$(BLD)/profile.$(O) : \
65e46515
JB
454 $(LIB_SRC)/profile.c \
455 $(GNU_LIB)/intprops.h \
456 $(CONFIG_H) \
457 $(INTTYPES_H) \
458 $(SYSTIME_H)
459
460$(BLD)/regex.$(O) : \
461 $(SRC)/regex.c \
462 $(SRC)/regex.h \
9851e4a5 463 $(NT_INC)/stdbool.h \
65e46515
JB
464 $(NT_INC)/unistd.h \
465 $(CONFIG_H)
7bbaaedd 466
7bbaaedd 467$(BLD)/test-distrib.$(O) : \
65e46515
JB
468 $(LIB_SRC)/test-distrib.c \
469 $(NT_INC)/unistd.h \
470 $(CONFIG_H)
7bbaaedd 471
1a8a626d
EZ
472# The following dependencies are for supporting parallel builds, where
473# we must make sure $(BLD) exists before any compilation starts.
474#
c136e5cd 475$(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O): stamp_BLD
1a8a626d 476
f915f0f7 477$(BLD)/test-distrib.$(O) $(MOVEMAILOBJS): stamp_BLD
1a8a626d
EZ
478
479$(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O): stamp_BLD
480
8519232d 481$(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O) $(BLD)/profile.$(O): stamp_BLD