Merge changes from emacs-24; up to 2012-04-26T02:03:19Z!ueno@unixuser.org
[bpt/emacs.git] / src / makefile.w32-in
1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2000-2012 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 = emacs
21
22 .PHONY: $(ALL)
23
24 # Set EMACSLOADPATH correctly (in case already defined in environment).
25 EMACSLOADPATH=$(CURDIR)/../lisp
26
27 # Size in MBs of the static heap in temacs.exe.
28 HEAPSIZE = 27
29
30 #
31 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
32 # the emacs source tree.
33 #
34 LOCAL_FLAGS = -Demacs=1 -DHAVE_CONFIG_H -I../lib -I../nt/inc -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
35
36 SRC = .
37 EMACS = $(BLD)/emacs.exe
38 TEMACS = $(BLD)/temacs.exe
39 TEMACS_TMP = $(BLD)/temacs.bin
40 TLIB0 = $(BLD)/temacs0.$(A)
41 TLIB1 = $(BLD)/temacs1.$(A)
42 TLIB2 = $(BLD)/temacs2.$(A)
43 TOBJ = $(BLD)/firstfile.$(O)
44 TRES = $(BLD)/emacs.res
45 TLASTLIB = $(BLD)/lastfile.$(A)
46 GNULIB = ../lib/$(BLD)/libgnu.$(A)
47
48 DOC = $(OBJDIR)/etc/DOC-X
49
50 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
51
52 #
53 # Split up the objects into two sets so that we don't run out of
54 # command line space when we link them into a library.
55 #
56 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
57 # as the "main" object file when linking.
58 #
59 OBJ0 = $(BLD)/emacs.$(O)
60
61 OBJ1 = $(BLD)/alloc.$(O) \
62 $(BLD)/atimer.$(O) \
63 $(BLD)/buffer.$(O) \
64 $(BLD)/bytecode.$(O) \
65 $(BLD)/callint.$(O) \
66 $(BLD)/callproc.$(O) \
67 $(BLD)/casefiddle.$(O) \
68 $(BLD)/cmds.$(O) \
69 $(BLD)/data.$(O) \
70 $(BLD)/dired.$(O) \
71 $(BLD)/dispnew.$(O) \
72 $(BLD)/doc.$(O) \
73 $(BLD)/doprnt.$(O) \
74 $(BLD)/editfns.$(O) \
75 $(BLD)/eval.$(O) \
76 $(BLD)/fileio.$(O) \
77 $(BLD)/filelock.$(O) \
78 $(BLD)/fns.$(O) \
79 $(BLD)/indent.$(O) \
80 $(BLD)/insdel.$(O) \
81 $(BLD)/keyboard.$(O) \
82 $(BLD)/keymap.$(O) \
83 $(BLD)/lread.$(O) \
84 $(BLD)/macros.$(O) \
85 $(BLD)/marker.$(O) \
86 $(BLD)/minibuf.$(O) \
87 $(BLD)/w32.$(O) \
88 $(BLD)/w32heap.$(O) \
89 $(BLD)/w32inevt.$(O) \
90 $(BLD)/w32proc.$(O) \
91 $(BLD)/w32console.$(O) \
92 $(BLD)/print.$(O) \
93 $(BLD)/process.$(O) \
94 $(BLD)/regex.$(O) \
95 $(BLD)/scroll.$(O) \
96 $(BLD)/search.$(O) \
97 $(BLD)/sound.$(O) \
98 $(BLD)/syntax.$(O)
99
100 OBJ2 = $(BLD)/sysdep.$(O) \
101 $(BLD)/term.$(O) \
102 $(BLD)/tparam.$(O) \
103 $(BLD)/undo.$(O) \
104 $(BLD)/unexw32.$(O) \
105 $(BLD)/window.$(O) \
106 $(BLD)/xdisp.$(O) \
107 $(BLD)/casetab.$(O) \
108 $(BLD)/floatfns.$(O) \
109 $(BLD)/frame.$(O) \
110 $(BLD)/gmalloc.$(O) \
111 $(BLD)/gnutls.$(O) \
112 $(BLD)/intervals.$(O) \
113 $(BLD)/composite.$(O) \
114 $(BLD)/ralloc.$(O) \
115 $(BLD)/textprop.$(O) \
116 $(BLD)/vm-limit.$(O) \
117 $(BLD)/region-cache.$(O) \
118 $(BLD)/bidi.$(O) \
119 $(BLD)/charset.$(O) \
120 $(BLD)/character.$(O) \
121 $(BLD)/chartab.$(O) \
122 $(BLD)/coding.$(O) \
123 $(BLD)/category.$(O) \
124 $(BLD)/ccl.$(O) \
125 $(BLD)/font.$(O) \
126 $(BLD)/fontset.$(O) \
127 $(BLD)/fringe.$(O) \
128 $(BLD)/image.$(O) \
129 $(BLD)/terminal.$(O) \
130 $(BLD)/menu.$(O) \
131 $(BLD)/xml.$(O) \
132 $(BLD)/w32term.$(O) \
133 $(BLD)/w32xfns.$(O) \
134 $(BLD)/w32fns.$(O) \
135 $(BLD)/xfaces.$(O) \
136 $(BLD)/w32select.$(O) \
137 $(BLD)/w32menu.$(O) \
138 $(BLD)/w32reg.$(O) \
139 $(BLD)/w32font.$(O) \
140 $(BLD)/w32uniscribe.$(O)
141
142 LIBS = $(TLIB0) \
143 $(TLIB1) \
144 $(TLIB2) \
145 $(TLASTLIB) \
146 $(GNULIB) \
147 $(WINMM) \
148 $(ADVAPI32) \
149 $(GDI32) \
150 $(COMDLG32) \
151 $(USER32) \
152 $(MPR) \
153 $(SHELL32) \
154 $(WINSPOOL) \
155 $(OLE32) \
156 $(COMCTL32) \
157 $(UNISCRIBE) \
158 $(USER_LIBS) \
159 $(libc)
160
161 #
162 # Build the executable and dump it.
163 #
164 all: $(ALL)
165
166 #
167 # The dumped executable
168 #
169 emacs: stamp_BLD $(EMACS)
170 $(EMACS): $(DOC) $(TEMACS)
171 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
172 -"$(THISDIR)/$(BLD)/emacs.exe" -batch -f list-load-path-shadows
173
174 #
175 # The undumped executable
176 # Note the extra post-link step to insert a static preload heap section.
177 # If preload runs out of memory, increase the last argument to addsection
178 # (it is the preload heap size in MB).
179 #
180 temacs: stamp_BLD $(TEMACS)
181 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIB2) $(TLASTLIB) $(TOBJ) $(TRES) \
182 ../nt/$(BLD)/addsection.exe $(GNULIB)
183 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
184 "$(THISDIR)/../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP $(HEAPSIZE)
185
186 # These omit firstfile.${O}, but there's no documentation in there
187 # anyways.
188 buildobj.h: $(SRC)/makefile.w32-in
189 $(MAKE) $(MFLAGS) make-buildobj-$(SHELLTYPE)
190
191 # Cannot have blanks between the backslash and the redirection
192 # characters, because CMD's `echo' will put them in buildobj.h.
193 make-buildobj-CMD:
194 echo #define BUILDOBJ ^"\> buildobj.h
195 echo $(OBJ0) \>> buildobj.h
196 echo $(OBJ1) \>> buildobj.h
197 echo $(OBJ2) \>> buildobj.h
198 echo ^">> buildobj.h
199
200 # "
201 # The above line is here to countermand the single quote
202 # on the last "echo" command above, wrt font-lock.
203 make-buildobj-SH:
204 echo '#define BUILDOBJ $(DQUOTE)\' > buildobj.h
205 echo $(OBJ0) '\' >> buildobj.h
206 echo $(OBJ1) '\' >> buildobj.h
207 echo $(OBJ2) '\' >> buildobj.h
208 echo '$(DQUOTE)' >> buildobj.h
209
210 GLOBAL_SOURCES = dosfns.c msdos.c \
211 xterm.c xfns.c xmenu.c xselect.c xrdb.c xsmfns.c fringe.c image.c \
212 fontset.c menu.c dbusbind.c \
213 w32.c w32console.c w32fns.c w32heap.c w32inevt.c \
214 w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c \
215 font.c w32font.c w32uniscribe.c \
216 dispnew.c frame.c scroll.c xdisp.c window.c bidi.c \
217 charset.c coding.c category.c ccl.c character.c chartab.c \
218 cm.c term.c terminal.c xfaces.c \
219 emacs.c keyboard.c macros.c keymap.c sysdep.c \
220 buffer.c filelock.c insdel.c marker.c \
221 minibuf.c fileio.c dired.c \
222 cmds.c casetab.c casefiddle.c indent.c search.c regex.c undo.c \
223 alloc.c data.c doc.c editfns.c callint.c \
224 eval.c floatfns.c fns.c print.c lread.c \
225 syntax.c bytecode.c \
226 process.c callproc.c unexw32.c \
227 region-cache.c sound.c atimer.c \
228 doprnt.c intervals.c textprop.c composite.c \
229 gnutls.c xml.c
230 SOME_MACHINE_OBJECTS = dosfns.o msdos.o \
231 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o dbusbind.o
232 obj = $(GLOBAL_SOURCES:.c=.o)
233
234 globals.h: gl-stamp
235 @cmd /c rem true
236
237 gl-stamp: ../lib-src/$(BLD)/make-docfile.exe $(GLOBAL_SOURCES)
238 - $(DEL) gl-tmp
239 "$(THISDIR)/../lib-src/$(BLD)/make-docfile" -d . -g $(SOME_MACHINE_OBJECTS) $(obj) > gl-tmp
240 cmd /c "fc /b gl-tmp globals.h >nul 2>&1 || $(CP) gl-tmp globals.h"
241 - $(DEL) gl-tmp
242 echo timestamp > $@
243
244 bootstrap: bootstrap-emacs
245
246 #
247 # Build a temacs with a sufficiently large PURESIZE to load the
248 # Lisp files from loadup.el in source form.
249 #
250 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
251 # this can break with GNU Make 3.81 and later if sh.exe is used.
252 bootstrap-temacs-CMD:
253 $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(ESC_CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
254
255 bootstrap-temacs-SH:
256 $(MAKE) $(MFLAGS) $(XMFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
257
258 bootstrap-temacs:
259 $(MAKE) $(MFLAGS) bootstrap-temacs-$(SHELLTYPE)
260
261 #
262 # Dump an Emacs executable named bootstrap-emacs containing the
263 # files from loadup.el in source form.
264 #
265 bootstrap-emacs: bootstrap-temacs
266 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
267 - mkdir "../bin"
268 $(CP) $(EMACS) ../bin
269
270 #
271 # Force recompile of files that depend on PURESIZE
272 #
273 bootstrap-clean:
274 - $(DEL) $(BLD)/alloc.$(O)
275 - $(DEL) $(BLD)/data.$(O)
276 - $(DEL) $(BLD)/intervals.$(O)
277 - $(DEL) $(BLD)/keyboard.$(O)
278 - $(DEL) $(BLD)/keymap.$(O)
279
280 #
281 # The resource file. NT 3.10 requires the use of cvtres; even though
282 # it is not necessary on later versions, it is still ok to use it.
283 #
284 $(TRES): ../nt/emacs.rc stamp_BLD
285 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ ../nt/emacs.rc
286
287 #
288 # Build the library. Split up the build into two phases...otherwise we
289 # run out of command line space.
290 #
291 $(TLIB0): $(OBJ0)
292 - $(DEL) $@
293 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
294 $(TLIB1): $(OBJ1)
295 - $(DEL) $@
296 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
297 $(TLIB2): $(OBJ2)
298 - $(DEL) $@
299 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
300
301 #
302 # Place lastfile.$(O) in its own library so that it can be loaded after
303 # the source libraries but before any system libraries. Doing so defines
304 # the end of Emacs' data section portably across compilers and systems.
305 #
306 $(TLASTLIB): $(BLD)/lastfile.$(O)
307 - $(DEL) $@
308 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
309
310 #
311 # Assuming INSTALL_DIR is defined, build and install emacs in it.
312 #
313 install: $(ALL)
314 - mkdir "$(INSTALL_DIR)/bin"
315 $(CP) $(EMACS) $(INSTALL_DIR)/bin
316
317 #
318 # Maintenance
319 #
320 # We used to delete *~, s/*~, m/*~ here, but that might inadvertently
321 # remove precious files if it happens to match their short 8+3 aliases.
322 clean:
323 - $(DEL) "s/*.h~" "m/*.h~"
324 - $(DEL) $(COMPILER_TEMP_FILES)
325 - $(DEL_TREE) $(OBJDIR)
326 - $(DEL) stamp_BLD gl-stamp globals.h
327 - $(DEL) buildobj.h
328
329 distclean: cleanall
330 - $(DEL) config.h epaths.h Makefile
331
332 maintainer-clean: distclean
333 - $(DEL) TAGS
334
335 cleanall: clean
336 - $(DEL_TREE) obj
337 - $(DEL_TREE) obj-spd
338 - $(DEL_TREE) oo
339 - $(DEL_TREE) oo-spd
340
341 ## Arrange to make a tags table TAGS-LISP for ../lisp,
342 ## plus TAGS for the C files, which includes ../lisp/TAGS by reference.
343 ##
344 ## This works only with GNU Make.
345
346 TAGS: $(OBJ0) $(OBJ1) $(OBJ2) $(CURDIR)/s/ms-w32.h
347 $(MAKE) $(MFLAGS) TAGS-$(MAKETYPE)
348
349 TAGS-LISP: $(OBJ0) $(OBJ1) $(OBJ2)
350 $(MAKE) $(MFLAGS) TAGS-LISP-$(MAKETYPE)
351
352 TAGS-gmake:
353 ../lib-src/$(BLD)/etags.exe --include=TAGS-LISP --include=../nt/TAGS \
354 --regex=@../nt/emacs-src.tags \
355 $(OBJ0_c)
356 ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
357 $(OBJ1_c)
358 ../lib-src/$(BLD)/etags.exe -a --regex=@../nt/emacs-src.tags \
359 $(OBJ2_c) \
360 $(CURDIR)/*.h $(CURDIR)/s/ms-w32.h
361
362 TAGS-nmake:
363 echo This target is not supported with NMake
364 exit -1
365
366 frc:
367 TAGS-LISP-gmake: frc
368 $(MAKE) $(MFLAGS) -C ../lisp TAGS-LISP DEST=../src
369
370 TAGS-LISP-nmake:
371 echo This target is not supported with NMake
372 exit -1
373
374 ../nt/TAGS: frc
375 $(MAKE) $(MFLAGS) nt-TAGS-$(MAKETYPE)
376
377 nt-TAGS-gmake:
378 $(MAKE) $(MFLAGS) -C ../nt TAGS
379
380 nt-TAGS-nmake:
381 echo This target is not supported with NMake
382 exit -1
383
384 full-tags: TAGS TAGS-LISP ../nt/TAGS
385 .PHONY: full-tags
386
387 ### DEPENDENCIES ###
388
389 EMACS_ROOT = ..
390 GNU_LIB = $(EMACS_ROOT)/lib
391 NT_INC = $(EMACS_ROOT)/nt/inc
392
393 SYSTIME_H = $(SRC)/systime.h \
394 $(NT_INC)/sys/time.h
395 ATIMER_H = $(SRC)/atimer.h \
396 $(SYSTIME_H)
397 BLOCKINPUT_H = $(SRC)/blockinput.h \
398 $(ATIMER_H)
399 CAREADLINKAT_H = $(GNU_LIB)/careadlinkat.h \
400 $(NT_INC)/unistd.h
401 CHARACTER_H = $(SRC)/character.h \
402 $(GNU_LIB)/verify.h
403 CHARSET_H = $(SRC)/charset.h \
404 $(GNU_LIB)/verify.h
405 CODING_H = $(SRC)/coding.h \
406 $(SRC)/composite.h
407 MS_W32_H = $(SRC)/s/ms-w32.h \
408 $(NT_INC)/sys/stat.h
409 CONFIG_H = $(SRC)/config.h \
410 $(MS_W32_H)
411 DIR_H = $(NT_INC)/sys/dir.h \
412 $(SRC)/ndir.h
413 W32GUI_H = $(SRC)/w32gui.h \
414 $(SYSTIME_H)
415 DISPEXTERN_H = $(SRC)/dispextern.h \
416 $(W32GUI_H)
417 FILEMODE_H = $(GNU_LIB)/filemode.h \
418 $(NT_INC)/sys/stat.h
419 FONT_H = $(SRC)/font.h \
420 $(SRC)/ccl.h
421 FRAME_H = $(SRC)/frame.h \
422 $(DISPEXTERN_H)
423 FTOASTR_H = $(GNU_LIB)/ftoastr.h \
424 $(GNU_LIB)/intprops.h
425 GRP_H = $(NT_INC)/grp.h \
426 $(NT_INC)/pwd.h
427 INTERVALS_H = $(SRC)/intervals.h \
428 $(SRC)/composite.h \
429 $(DISPEXTERN_H)
430 INTTYPES_H = $(NT_INC)/inttypes.h \
431 $(NT_INC)/stdint.h
432 KEYBOARD_H = $(SRC)/keyboard.h \
433 $(CODING_H) \
434 $(SYSTIME_H)
435 LANGINFO_H = $(NT_INC)/langinfo.h \
436 $(NT_INC)/nl_types.h
437 LISP_H = $(SRC)/lisp.h \
438 $(SRC)/globals.h \
439 $(GNU_LIB)/intprops.h \
440 $(INTTYPES_H)
441 MD5_H = $(GNU_LIB)/md5.h \
442 $(NT_INC)/stdint.h
443 MENU_H = $(SRC)/menu.h \
444 $(SYSTIME_H)
445 PROCESS_H = $(SRC)/process.h \
446 $(SRC)/gnutls.h \
447 $(NT_INC)/unistd.h
448 SHA1_H = $(GNU_LIB)/sha1.h \
449 $(NT_INC)/stdint.h
450 SHA256_H = $(GNU_LIB)/sha256.h \
451 $(NT_INC)/stdint.h
452 U64_H = $(GNU_LIB)/u64.h \
453 $(NT_INC)/stdint.h
454 SHA512_H = $(GNU_LIB)/sha512.h \
455 $(U64_H)
456 SOCKET_H = $(NT_INC)/sys/socket.h \
457 $(SRC)/w32.h
458 SYSTTY_H = $(SRC)/systty.h \
459 $(NT_INC)/sys/ioctl.h \
460 $(NT_INC)/unistd.h
461 TERMHOOKS_H = $(SRC)/termhooks.h \
462 $(SYSTIME_H)
463 W32TERM_H = $(SRC)/w32term.h \
464 $(W32GUI_H)
465 WINDOW_H = $(SRC)/window.h \
466 $(DISPEXTERN_H)
467
468 $(BLD)/alloc.$(O) : \
469 $(SRC)/alloc.c \
470 $(SRC)/buffer.h \
471 $(SRC)/puresize.h \
472 $(SRC)/syssignal.h \
473 $(SRC)/w32.h \
474 $(NT_INC)/unistd.h \
475 $(GNU_LIB)/verify.h \
476 $(BLOCKINPUT_H) \
477 $(CHARACTER_H) \
478 $(CONFIG_H) \
479 $(FRAME_H) \
480 $(INTERVALS_H) \
481 $(KEYBOARD_H) \
482 $(LISP_H) \
483 $(PROCESS_H) \
484 $(TERMHOOKS_H) \
485 $(WINDOW_H)
486
487 $(BLD)/atimer.$(O) : \
488 $(SRC)/atimer.c \
489 $(SRC)/syssignal.h \
490 $(NT_INC)/sys/time.h \
491 $(NT_INC)/unistd.h \
492 $(ATIMER_H) \
493 $(BLOCKINPUT_H) \
494 $(CONFIG_H) \
495 $(LISP_H) \
496 $(SYSTIME_H)
497
498 $(BLD)/bidi.$(O) : \
499 $(SRC)/bidi.c \
500 $(SRC)/buffer.h \
501 $(CHARACTER_H) \
502 $(CONFIG_H) \
503 $(DISPEXTERN_H) \
504 $(LISP_H)
505
506 $(BLD)/buffer.$(O) : \
507 $(SRC)/buffer.c \
508 $(SRC)/buffer.h \
509 $(SRC)/commands.h \
510 $(SRC)/indent.h \
511 $(SRC)/keymap.h \
512 $(SRC)/region-cache.h \
513 $(NT_INC)/sys/param.h \
514 $(NT_INC)/sys/stat.h \
515 $(NT_INC)/unistd.h \
516 $(GNU_LIB)/verify.h \
517 $(BLOCKINPUT_H) \
518 $(CHARACTER_H) \
519 $(CONFIG_H) \
520 $(FRAME_H) \
521 $(INTERVALS_H) \
522 $(KEYBOARD_H) \
523 $(LISP_H) \
524 $(WINDOW_H)
525
526 $(BLD)/bytecode.$(O) : \
527 $(SRC)/bytecode.c \
528 $(SRC)/buffer.h \
529 $(SRC)/syntax.h \
530 $(CHARACTER_H) \
531 $(CONFIG_H) \
532 $(LISP_H) \
533 $(WINDOW_H)
534
535 $(BLD)/callint.$(O) : \
536 $(SRC)/callint.c \
537 $(SRC)/buffer.h \
538 $(SRC)/commands.h \
539 $(SRC)/keymap.h \
540 $(CHARACTER_H) \
541 $(CONFIG_H) \
542 $(KEYBOARD_H) \
543 $(LISP_H) \
544 $(WINDOW_H)
545
546 $(BLD)/callproc.$(O) : \
547 $(SRC)/callproc.c \
548 $(SRC)/buffer.h \
549 $(SRC)/ccl.h \
550 $(SRC)/commands.h \
551 $(SRC)/composite.h \
552 $(SRC)/epaths.h \
553 $(SRC)/syssignal.h \
554 $(SRC)/w32.h \
555 $(NT_INC)/sys/file.h \
556 $(NT_INC)/unistd.h \
557 $(BLOCKINPUT_H) \
558 $(CHARACTER_H) \
559 $(CODING_H) \
560 $(CONFIG_H) \
561 $(FRAME_H) \
562 $(LISP_H) \
563 $(PROCESS_H) \
564 $(SYSTTY_H) \
565 $(TERMHOOKS_H)
566
567 $(BLD)/casefiddle.$(O) : \
568 $(SRC)/casefiddle.c \
569 $(SRC)/buffer.h \
570 $(SRC)/commands.h \
571 $(SRC)/composite.h \
572 $(SRC)/keymap.h \
573 $(SRC)/syntax.h \
574 $(CHARACTER_H) \
575 $(CONFIG_H) \
576 $(LISP_H)
577
578 $(BLD)/casetab.$(O) : \
579 $(SRC)/casetab.c \
580 $(SRC)/buffer.h \
581 $(CHARACTER_H) \
582 $(CONFIG_H) \
583 $(LISP_H)
584
585 $(BLD)/category.$(O) : \
586 $(SRC)/category.c \
587 $(SRC)/buffer.h \
588 $(SRC)/category.h \
589 $(SRC)/keymap.h \
590 $(CHARACTER_H) \
591 $(CHARSET_H) \
592 $(CONFIG_H) \
593 $(LISP_H)
594
595 $(BLD)/ccl.$(O) : \
596 $(SRC)/ccl.c \
597 $(SRC)/ccl.h \
598 $(CHARACTER_H) \
599 $(CHARSET_H) \
600 $(CODING_H) \
601 $(CONFIG_H) \
602 $(LISP_H)
603
604 $(BLD)/character.$(O) : \
605 $(SRC)/character.c \
606 $(SRC)/buffer.h \
607 $(SRC)/composite.h \
608 $(SRC)/disptab.h \
609 $(GNU_LIB)/intprops.h \
610 $(CHARACTER_H) \
611 $(CHARSET_H) \
612 $(CONFIG_H) \
613 $(LISP_H)
614
615 $(BLD)/charset.$(O) : \
616 $(SRC)/charset.c \
617 $(SRC)/buffer.h \
618 $(SRC)/disptab.h \
619 $(NT_INC)/unistd.h \
620 $(CHARACTER_H) \
621 $(CHARSET_H) \
622 $(CODING_H) \
623 $(CONFIG_H) \
624 $(LISP_H)
625
626 $(BLD)/chartab.$(O) : \
627 $(SRC)/chartab.c \
628 $(SRC)/ccl.h \
629 $(CHARACTER_H) \
630 $(CHARSET_H) \
631 $(CONFIG_H) \
632 $(LISP_H)
633
634 $(BLD)/cmds.$(O) : \
635 $(SRC)/cmds.c \
636 $(SRC)/buffer.h \
637 $(SRC)/commands.h \
638 $(SRC)/keymap.h \
639 $(SRC)/syntax.h \
640 $(CHARACTER_H) \
641 $(CONFIG_H) \
642 $(DISPEXTERN_H) \
643 $(FRAME_H) \
644 $(KEYBOARD_H) \
645 $(LISP_H) \
646 $(WINDOW_H)
647
648 $(BLD)/coding.$(O) : \
649 $(SRC)/coding.c \
650 $(SRC)/buffer.h \
651 $(SRC)/ccl.h \
652 $(SRC)/composite.h \
653 $(CHARACTER_H) \
654 $(CHARSET_H) \
655 $(CODING_H) \
656 $(CONFIG_H) \
657 $(FRAME_H) \
658 $(LISP_H) \
659 $(TERMHOOKS_H) \
660 $(WINDOW_H)
661
662 $(BLD)/composite.$(O) : \
663 $(SRC)/composite.c \
664 $(SRC)/buffer.h \
665 $(CHARACTER_H) \
666 $(CODING_H) \
667 $(CONFIG_H) \
668 $(DISPEXTERN_H) \
669 $(FONT_H) \
670 $(FRAME_H) \
671 $(INTERVALS_H) \
672 $(LISP_H) \
673 $(TERMHOOKS_H) \
674 $(WINDOW_H)
675
676 $(BLD)/data.$(O) : \
677 $(SRC)/data.c \
678 $(SRC)/buffer.h \
679 $(SRC)/keymap.h \
680 $(SRC)/puresize.h \
681 $(SRC)/syssignal.h \
682 $(GNU_LIB)/intprops.h \
683 $(CHARACTER_H) \
684 $(CONFIG_H) \
685 $(FONT_H) \
686 $(FRAME_H) \
687 $(KEYBOARD_H) \
688 $(LISP_H) \
689 $(TERMHOOKS_H)
690
691 $(BLD)/dired.$(O) : \
692 $(SRC)/dired.c \
693 $(SRC)/buffer.h \
694 $(SRC)/commands.h \
695 $(SRC)/regex.h \
696 $(NT_INC)/pwd.h \
697 $(NT_INC)/sys/stat.h \
698 $(NT_INC)/unistd.h \
699 $(BLOCKINPUT_H) \
700 $(CHARACTER_H) \
701 $(CHARSET_H) \
702 $(CODING_H) \
703 $(CONFIG_H) \
704 $(DIR_H) \
705 $(FILEMODE_H) \
706 $(GRP_H) \
707 $(LISP_H) \
708 $(SYSTIME_H)
709
710 $(BLD)/dispnew.$(O) : \
711 $(SRC)/dispnew.c \
712 $(SRC)/buffer.h \
713 $(SRC)/cm.h \
714 $(SRC)/commands.h \
715 $(SRC)/disptab.h \
716 $(SRC)/indent.h \
717 $(SRC)/syssignal.h \
718 $(SRC)/termchar.h \
719 $(SRC)/termopts.h \
720 $(NT_INC)/unistd.h \
721 $(BLOCKINPUT_H) \
722 $(CHARACTER_H) \
723 $(CONFIG_H) \
724 $(DISPEXTERN_H) \
725 $(FRAME_H) \
726 $(INTERVALS_H) \
727 $(KEYBOARD_H) \
728 $(LISP_H) \
729 $(PROCESS_H) \
730 $(SYSTIME_H) \
731 $(TERMHOOKS_H) \
732 $(W32TERM_H) \
733 $(WINDOW_H)
734
735 $(BLD)/doc.$(O) : \
736 $(SRC)/doc.c \
737 $(SRC)/buffer.h \
738 $(SRC)/buildobj.h \
739 $(SRC)/keymap.h \
740 $(NT_INC)/sys/file.h \
741 $(NT_INC)/unistd.h \
742 $(CHARACTER_H) \
743 $(CONFIG_H) \
744 $(KEYBOARD_H) \
745 $(LISP_H)
746
747 $(BLD)/doprnt.$(O) : \
748 $(SRC)/doprnt.c \
749 $(NT_INC)/unistd.h \
750 $(CHARACTER_H) \
751 $(CONFIG_H) \
752 $(LISP_H)
753
754 $(BLD)/editfns.$(O) : \
755 $(SRC)/editfns.c \
756 $(SRC)/buffer.h \
757 $(NT_INC)/pwd.h \
758 $(NT_INC)/unistd.h \
759 $(GNU_LIB)/intprops.h \
760 $(GNU_LIB)/strftime.h \
761 $(GNU_LIB)/verify.h \
762 $(BLOCKINPUT_H) \
763 $(CHARACTER_H) \
764 $(CODING_H) \
765 $(CONFIG_H) \
766 $(FRAME_H) \
767 $(INTERVALS_H) \
768 $(LISP_H) \
769 $(SYSTIME_H) \
770 $(WINDOW_H)
771
772 $(BLD)/emacs.$(O) : \
773 $(SRC)/emacs.c \
774 $(SRC)/buffer.h \
775 $(SRC)/commands.h \
776 $(SRC)/gnutls.h \
777 $(SRC)/keymap.h \
778 $(SRC)/syssignal.h \
779 $(SRC)/unexec.h \
780 $(SRC)/w32.h \
781 $(SRC)/w32heap.h \
782 $(NT_INC)/sys/file.h \
783 $(NT_INC)/unistd.h \
784 $(BLOCKINPUT_H) \
785 $(CHARACTER_H) \
786 $(CONFIG_H) \
787 $(FRAME_H) \
788 $(INTERVALS_H) \
789 $(KEYBOARD_H) \
790 $(LISP_H) \
791 $(PROCESS_H) \
792 $(SYSTTY_H) \
793 $(TERMHOOKS_H) \
794 $(WINDOW_H)
795
796 $(BLD)/eval.$(O) : \
797 $(SRC)/eval.c \
798 $(SRC)/commands.h \
799 $(BLOCKINPUT_H) \
800 $(CONFIG_H) \
801 $(DISPEXTERN_H) \
802 $(FRAME_H) \
803 $(KEYBOARD_H) \
804 $(LISP_H)
805
806 $(BLD)/fileio.$(O) : \
807 $(SRC)/fileio.c \
808 $(SRC)/buffer.h \
809 $(SRC)/commands.h \
810 $(NT_INC)/pwd.h \
811 $(NT_INC)/sys/stat.h \
812 $(NT_INC)/unistd.h \
813 $(BLOCKINPUT_H) \
814 $(CHARACTER_H) \
815 $(CODING_H) \
816 $(CONFIG_H) \
817 $(DISPEXTERN_H) \
818 $(FRAME_H) \
819 $(INTERVALS_H) \
820 $(LISP_H) \
821 $(SYSTIME_H) \
822 $(WINDOW_H)
823
824 $(BLD)/filelock.$(O) : \
825 $(SRC)/filelock.c \
826 $(SRC)/buffer.h \
827 $(NT_INC)/pwd.h \
828 $(NT_INC)/sys/file.h \
829 $(NT_INC)/sys/stat.h \
830 $(NT_INC)/unistd.h \
831 $(CHARACTER_H) \
832 $(CODING_H) \
833 $(CONFIG_H) \
834 $(LISP_H) \
835 $(SYSTIME_H)
836
837 $(BLD)/firstfile.$(O) : \
838 $(SRC)/firstfile.c \
839 $(CONFIG_H)
840
841 $(BLD)/floatfns.$(O) : \
842 $(SRC)/floatfns.c \
843 $(SRC)/syssignal.h \
844 $(CONFIG_H) \
845 $(LISP_H)
846
847 $(BLD)/fns.$(O) : \
848 $(SRC)/fns.c \
849 $(SRC)/buffer.h \
850 $(SRC)/commands.h \
851 $(SRC)/keymap.h \
852 $(NT_INC)/unistd.h \
853 $(GNU_LIB)/intprops.h \
854 $(BLOCKINPUT_H) \
855 $(CHARACTER_H) \
856 $(CODING_H) \
857 $(CONFIG_H) \
858 $(FRAME_H) \
859 $(INTERVALS_H) \
860 $(KEYBOARD_H) \
861 $(LANGINFO_H) \
862 $(LISP_H) \
863 $(MD5_H) \
864 $(SHA1_H) \
865 $(SHA256_H) \
866 $(SHA512_H) \
867 $(WINDOW_H)
868
869 $(BLD)/font.$(O) : \
870 $(SRC)/font.c \
871 $(SRC)/buffer.h \
872 $(SRC)/composite.h \
873 $(SRC)/fontset.h \
874 $(CHARACTER_H) \
875 $(CHARSET_H) \
876 $(CONFIG_H) \
877 $(DISPEXTERN_H) \
878 $(FONT_H) \
879 $(FRAME_H) \
880 $(LISP_H) \
881 $(W32TERM_H) \
882 $(WINDOW_H)
883
884 $(BLD)/fontset.$(O) : \
885 $(SRC)/fontset.c \
886 $(SRC)/buffer.h \
887 $(SRC)/ccl.h \
888 $(SRC)/fontset.h \
889 $(BLOCKINPUT_H) \
890 $(CHARACTER_H) \
891 $(CHARSET_H) \
892 $(CONFIG_H) \
893 $(DISPEXTERN_H) \
894 $(FONT_H) \
895 $(FRAME_H) \
896 $(INTERVALS_H) \
897 $(KEYBOARD_H) \
898 $(LISP_H) \
899 $(TERMHOOKS_H) \
900 $(W32TERM_H) \
901 $(WINDOW_H)
902
903 $(BLD)/frame.$(O) : \
904 $(SRC)/frame.c \
905 $(SRC)/buffer.h \
906 $(SRC)/commands.h \
907 $(SRC)/fontset.h \
908 $(SRC)/termchar.h \
909 $(BLOCKINPUT_H) \
910 $(CHARACTER_H) \
911 $(CONFIG_H) \
912 $(DISPEXTERN_H) \
913 $(FONT_H) \
914 $(FRAME_H) \
915 $(KEYBOARD_H) \
916 $(LISP_H) \
917 $(TERMHOOKS_H) \
918 $(W32TERM_H) \
919 $(WINDOW_H)
920
921 $(BLD)/fringe.$(O) : \
922 $(SRC)/fringe.c \
923 $(SRC)/buffer.h \
924 $(BLOCKINPUT_H) \
925 $(CHARACTER_H) \
926 $(CONFIG_H) \
927 $(DISPEXTERN_H) \
928 $(FRAME_H) \
929 $(LISP_H) \
930 $(TERMHOOKS_H) \
931 $(WINDOW_H)
932
933 $(BLD)/gmalloc.$(O) : \
934 $(SRC)/gmalloc.c \
935 $(NT_INC)/stdint.h \
936 $(NT_INC)/unistd.h \
937 $(CONFIG_H)
938
939 $(BLD)/gnutls.$(O) : \
940 $(SRC)/gnutls.c \
941 $(SRC)/w32.h \
942 $(CONFIG_H) \
943 $(LISP_H) \
944 $(PROCESS_H)
945
946 $(BLD)/xml.$(O) : \
947 $(SRC)/xml.c \
948 $(SRC)/buffer.h \
949 $(SRC)/w32.h \
950 $(CHARACTER_H) \
951 $(CONFIG_H) \
952 $(LISP_H)
953
954 $(BLD)/image.$(O) : \
955 $(SRC)/image.c \
956 $(SRC)/epaths.h \
957 $(SRC)/w32.h \
958 $(NT_INC)/unistd.h \
959 $(BLOCKINPUT_H) \
960 $(CHARACTER_H) \
961 $(CODING_H) \
962 $(CONFIG_H) \
963 $(DISPEXTERN_H) \
964 $(FONT_H) \
965 $(FRAME_H) \
966 $(LISP_H) \
967 $(SYSTIME_H) \
968 $(TERMHOOKS_H) \
969 $(W32TERM_H) \
970 $(WINDOW_H)
971
972 $(BLD)/indent.$(O) : \
973 $(SRC)/indent.c \
974 $(SRC)/buffer.h \
975 $(SRC)/category.h \
976 $(SRC)/composite.h \
977 $(SRC)/disptab.h \
978 $(SRC)/indent.h \
979 $(SRC)/region-cache.h \
980 $(SRC)/termchar.h \
981 $(SRC)/termopts.h \
982 $(CHARACTER_H) \
983 $(CONFIG_H) \
984 $(DISPEXTERN_H) \
985 $(FRAME_H) \
986 $(INTERVALS_H) \
987 $(KEYBOARD_H) \
988 $(LISP_H) \
989 $(WINDOW_H)
990
991 $(BLD)/insdel.$(O) : \
992 $(SRC)/insdel.c \
993 $(SRC)/buffer.h \
994 $(SRC)/region-cache.h \
995 $(GNU_LIB)/intprops.h \
996 $(BLOCKINPUT_H) \
997 $(CHARACTER_H) \
998 $(CONFIG_H) \
999 $(INTERVALS_H) \
1000 $(LISP_H) \
1001 $(WINDOW_H)
1002
1003 $(BLD)/intervals.$(O) : \
1004 $(SRC)/intervals.c \
1005 $(SRC)/buffer.h \
1006 $(SRC)/keymap.h \
1007 $(SRC)/puresize.h \
1008 $(GNU_LIB)/intprops.h \
1009 $(CHARACTER_H) \
1010 $(CONFIG_H) \
1011 $(INTERVALS_H) \
1012 $(KEYBOARD_H) \
1013 $(LISP_H)
1014
1015 $(BLD)/keyboard.$(O) : \
1016 $(SRC)/keyboard.c \
1017 $(SRC)/buffer.h \
1018 $(SRC)/commands.h \
1019 $(SRC)/disptab.h \
1020 $(SRC)/keymap.h \
1021 $(SRC)/macros.h \
1022 $(SRC)/puresize.h \
1023 $(SRC)/syntax.h \
1024 $(SRC)/syssignal.h \
1025 $(SRC)/termchar.h \
1026 $(SRC)/termopts.h \
1027 $(NT_INC)/sys/ioctl.h \
1028 $(NT_INC)/unistd.h \
1029 $(ATIMER_H) \
1030 $(BLOCKINPUT_H) \
1031 $(CHARACTER_H) \
1032 $(CONFIG_H) \
1033 $(DISPEXTERN_H) \
1034 $(FRAME_H) \
1035 $(INTERVALS_H) \
1036 $(KEYBOARD_H) \
1037 $(LISP_H) \
1038 $(PROCESS_H) \
1039 $(SYSTIME_H) \
1040 $(TERMHOOKS_H) \
1041 $(W32TERM_H) \
1042 $(WINDOW_H)
1043
1044 $(BLD)/keymap.$(O) : \
1045 $(SRC)/keymap.c \
1046 $(SRC)/buffer.h \
1047 $(SRC)/commands.h \
1048 $(SRC)/keymap.h \
1049 $(SRC)/puresize.h \
1050 $(BLOCKINPUT_H) \
1051 $(CHARACTER_H) \
1052 $(CHARSET_H) \
1053 $(CONFIG_H) \
1054 $(FRAME_H) \
1055 $(INTERVALS_H) \
1056 $(KEYBOARD_H) \
1057 $(LISP_H) \
1058 $(TERMHOOKS_H) \
1059 $(WINDOW_H)
1060
1061 $(BLD)/lastfile.$(O) : \
1062 $(SRC)/lastfile.c \
1063 $(CONFIG_H)
1064
1065 $(BLD)/lread.$(O) : \
1066 $(SRC)/lread.c \
1067 $(SRC)/buffer.h \
1068 $(SRC)/commands.h \
1069 $(SRC)/epaths.h \
1070 $(NT_INC)/sys/file.h \
1071 $(NT_INC)/sys/stat.h \
1072 $(NT_INC)/unistd.h \
1073 $(BLOCKINPUT_H) \
1074 $(CHARACTER_H) \
1075 $(CHARSET_H) \
1076 $(CODING_H) \
1077 $(CONFIG_H) \
1078 $(FRAME_H) \
1079 $(INTERVALS_H) \
1080 $(KEYBOARD_H) \
1081 $(LISP_H) \
1082 $(TERMHOOKS_H)
1083
1084 $(BLD)/macros.$(O) : \
1085 $(SRC)/macros.c \
1086 $(SRC)/buffer.h \
1087 $(SRC)/commands.h \
1088 $(SRC)/macros.h \
1089 $(CHARACTER_H) \
1090 $(CONFIG_H) \
1091 $(KEYBOARD_H) \
1092 $(LISP_H) \
1093 $(WINDOW_H)
1094
1095 $(BLD)/marker.$(O) : \
1096 $(SRC)/marker.c \
1097 $(SRC)/buffer.h \
1098 $(CHARACTER_H) \
1099 $(CONFIG_H) \
1100 $(LISP_H)
1101
1102 $(BLD)/menu.$(O) : \
1103 $(SRC)/menu.c \
1104 $(SRC)/keymap.h \
1105 $(BLOCKINPUT_H) \
1106 $(CONFIG_H) \
1107 $(DISPEXTERN_H) \
1108 $(FRAME_H) \
1109 $(KEYBOARD_H) \
1110 $(LISP_H) \
1111 $(MENU_H) \
1112 $(TERMHOOKS_H) \
1113 $(W32TERM_H) \
1114 $(WINDOW_H)
1115
1116 $(BLD)/minibuf.$(O) : \
1117 $(SRC)/minibuf.c \
1118 $(SRC)/buffer.h \
1119 $(SRC)/commands.h \
1120 $(SRC)/keymap.h \
1121 $(SRC)/syntax.h \
1122 $(CHARACTER_H) \
1123 $(CONFIG_H) \
1124 $(DISPEXTERN_H) \
1125 $(FRAME_H) \
1126 $(INTERVALS_H) \
1127 $(KEYBOARD_H) \
1128 $(LISP_H) \
1129 $(TERMHOOKS_H) \
1130 $(WINDOW_H)
1131
1132 $(BLD)/w32.$(O) : \
1133 $(SRC)/w32.c \
1134 $(SRC)/ndir.h \
1135 $(SRC)/w32.h \
1136 $(SRC)/w32heap.h \
1137 $(NT_INC)/pwd.h \
1138 $(NT_INC)/sys/file.h \
1139 $(NT_INC)/sys/time.h \
1140 $(GNU_LIB)/allocator.h \
1141 $(CAREADLINKAT_H) \
1142 $(CODING_H) \
1143 $(CONFIG_H) \
1144 $(DISPEXTERN_H) \
1145 $(GRP_H) \
1146 $(LISP_H) \
1147 $(PROCESS_H) \
1148 $(SOCKET_H) \
1149 $(SYSTIME_H)
1150
1151 $(BLD)/w32heap.$(O) : \
1152 $(SRC)/w32heap.c \
1153 $(SRC)/w32heap.h \
1154 $(CONFIG_H) \
1155 $(LISP_H)
1156
1157 $(BLD)/w32inevt.$(O) : \
1158 $(SRC)/w32inevt.c \
1159 $(SRC)/termchar.h \
1160 $(SRC)/w32heap.h \
1161 $(BLOCKINPUT_H) \
1162 $(CONFIG_H) \
1163 $(DISPEXTERN_H) \
1164 $(FRAME_H) \
1165 $(KEYBOARD_H) \
1166 $(LISP_H) \
1167 $(TERMHOOKS_H) \
1168 $(W32TERM_H) \
1169 $(WINDOW_H)
1170
1171 $(BLD)/w32proc.$(O) : \
1172 $(SRC)/w32proc.c \
1173 $(SRC)/syssignal.h \
1174 $(SRC)/syswait.h \
1175 $(SRC)/w32.h \
1176 $(SRC)/w32heap.h \
1177 $(NT_INC)/nl_types.h \
1178 $(NT_INC)/sys/file.h \
1179 $(CODING_H) \
1180 $(CONFIG_H) \
1181 $(DISPEXTERN_H) \
1182 $(LANGINFO_H) \
1183 $(LISP_H) \
1184 $(PROCESS_H) \
1185 $(SYSTIME_H) \
1186 $(W32TERM_H)
1187
1188 $(BLD)/w32console.$(O) : \
1189 $(SRC)/w32console.c \
1190 $(SRC)/disptab.h \
1191 $(SRC)/termchar.h \
1192 $(SRC)/w32inevt.h \
1193 $(CHARACTER_H) \
1194 $(CODING_H) \
1195 $(CONFIG_H) \
1196 $(DISPEXTERN_H) \
1197 $(FRAME_H) \
1198 $(LISP_H) \
1199 $(TERMHOOKS_H) \
1200 $(WINDOW_H)
1201
1202 $(BLD)/print.$(O) : \
1203 $(SRC)/print.c \
1204 $(SRC)/buffer.h \
1205 $(SRC)/termchar.h \
1206 $(BLOCKINPUT_H) \
1207 $(CHARACTER_H) \
1208 $(CHARSET_H) \
1209 $(CONFIG_H) \
1210 $(DISPEXTERN_H) \
1211 $(FONT_H) \
1212 $(FRAME_H) \
1213 $(FTOASTR_H) \
1214 $(INTERVALS_H) \
1215 $(KEYBOARD_H) \
1216 $(LISP_H) \
1217 $(PROCESS_H) \
1218 $(TERMHOOKS_H) \
1219 $(WINDOW_H)
1220
1221 $(BLD)/process.$(O) : \
1222 $(SRC)/process.c \
1223 $(SRC)/buffer.h \
1224 $(SRC)/commands.h \
1225 $(SRC)/composite.h \
1226 $(SRC)/gnutls.h \
1227 $(SRC)/sysselect.h \
1228 $(SRC)/syssignal.h \
1229 $(SRC)/syswait.h \
1230 $(SRC)/termopts.h \
1231 $(NT_INC)/arpa/inet.h \
1232 $(NT_INC)/netdb.h \
1233 $(NT_INC)/netinet/in.h \
1234 $(NT_INC)/sys/file.h \
1235 $(NT_INC)/sys/ioctl.h \
1236 $(NT_INC)/sys/stat.h \
1237 $(NT_INC)/unistd.h \
1238 $(ATIMER_H) \
1239 $(BLOCKINPUT_H) \
1240 $(CHARACTER_H) \
1241 $(CODING_H) \
1242 $(CONFIG_H) \
1243 $(DISPEXTERN_H) \
1244 $(FRAME_H) \
1245 $(KEYBOARD_H) \
1246 $(LISP_H) \
1247 $(PROCESS_H) \
1248 $(SOCKET_H) \
1249 $(SYSTIME_H) \
1250 $(SYSTTY_H) \
1251 $(TERMHOOKS_H) \
1252 $(WINDOW_H)
1253
1254 $(BLD)/ralloc.$(O) : \
1255 $(SRC)/ralloc.c \
1256 $(SRC)/getpagesize.h \
1257 $(NT_INC)/unistd.h \
1258 $(BLOCKINPUT_H) \
1259 $(CONFIG_H) \
1260 $(LISP_H)
1261
1262 $(BLD)/regex.$(O) : \
1263 $(SRC)/regex.c \
1264 $(SRC)/buffer.h \
1265 $(SRC)/category.h \
1266 $(SRC)/regex.h \
1267 $(SRC)/syntax.h \
1268 $(CHARACTER_H) \
1269 $(CONFIG_H) \
1270 $(LISP_H)
1271
1272 $(BLD)/region-cache.$(O) : \
1273 $(SRC)/region-cache.c \
1274 $(SRC)/buffer.h \
1275 $(SRC)/region-cache.h \
1276 $(CHARACTER_H) \
1277 $(CONFIG_H) \
1278 $(LISP_H)
1279
1280 $(BLD)/scroll.$(O) : \
1281 $(SRC)/scroll.c \
1282 $(SRC)/termchar.h \
1283 $(CONFIG_H) \
1284 $(DISPEXTERN_H) \
1285 $(FRAME_H) \
1286 $(KEYBOARD_H) \
1287 $(LISP_H) \
1288 $(TERMHOOKS_H) \
1289 $(WINDOW_H)
1290
1291 $(BLD)/search.$(O) : \
1292 $(SRC)/search.c \
1293 $(SRC)/buffer.h \
1294 $(SRC)/category.h \
1295 $(SRC)/commands.h \
1296 $(SRC)/regex.h \
1297 $(SRC)/region-cache.h \
1298 $(SRC)/syntax.h \
1299 $(BLOCKINPUT_H) \
1300 $(CHARACTER_H) \
1301 $(CHARSET_H) \
1302 $(CONFIG_H) \
1303 $(INTERVALS_H) \
1304 $(LISP_H)
1305
1306 $(BLD)/sound.$(O) : \
1307 $(SRC)/sound.c \
1308 $(SRC)/syssignal.h \
1309 $(NT_INC)/unistd.h \
1310 $(ATIMER_H) \
1311 $(CONFIG_H) \
1312 $(DISPEXTERN_H) \
1313 $(LISP_H)
1314
1315 $(BLD)/syntax.$(O) : \
1316 $(SRC)/syntax.c \
1317 $(SRC)/buffer.h \
1318 $(SRC)/category.h \
1319 $(SRC)/commands.h \
1320 $(SRC)/keymap.h \
1321 $(SRC)/regex.h \
1322 $(SRC)/syntax.h \
1323 $(CHARACTER_H) \
1324 $(CONFIG_H) \
1325 $(INTERVALS_H) \
1326 $(LISP_H)
1327
1328 $(BLD)/sysdep.$(O) : \
1329 $(SRC)/sysdep.c \
1330 $(SRC)/cm.h \
1331 $(SRC)/sysselect.h \
1332 $(SRC)/syssignal.h \
1333 $(SRC)/syswait.h \
1334 $(SRC)/termchar.h \
1335 $(SRC)/termopts.h \
1336 $(NT_INC)/netdb.h \
1337 $(NT_INC)/pwd.h \
1338 $(NT_INC)/sys/file.h \
1339 $(NT_INC)/sys/stat.h \
1340 $(NT_INC)/unistd.h \
1341 $(GNU_LIB)/allocator.h \
1342 $(GNU_LIB)/ignore-value.h \
1343 $(BLOCKINPUT_H) \
1344 $(CAREADLINKAT_H) \
1345 $(CONFIG_H) \
1346 $(DISPEXTERN_H) \
1347 $(FRAME_H) \
1348 $(GRP_H) \
1349 $(KEYBOARD_H) \
1350 $(LISP_H) \
1351 $(PROCESS_H) \
1352 $(SOCKET_H) \
1353 $(SYSTIME_H) \
1354 $(SYSTTY_H) \
1355 $(TERMHOOKS_H) \
1356 $(WINDOW_H)
1357
1358 $(BLD)/term.$(O) : \
1359 $(SRC)/term.c \
1360 $(SRC)/buffer.h \
1361 $(SRC)/cm.h \
1362 $(SRC)/composite.h \
1363 $(SRC)/disptab.h \
1364 $(SRC)/keymap.h \
1365 $(SRC)/syssignal.h \
1366 $(SRC)/termchar.h \
1367 $(SRC)/termopts.h \
1368 $(SRC)/tparam.h \
1369 $(NT_INC)/sys/file.h \
1370 $(NT_INC)/unistd.h \
1371 $(BLOCKINPUT_H) \
1372 $(CHARACTER_H) \
1373 $(CHARSET_H) \
1374 $(CODING_H) \
1375 $(CONFIG_H) \
1376 $(DISPEXTERN_H) \
1377 $(FRAME_H) \
1378 $(INTERVALS_H) \
1379 $(KEYBOARD_H) \
1380 $(LISP_H) \
1381 $(SYSTTY_H) \
1382 $(TERMHOOKS_H) \
1383 $(WINDOW_H)
1384
1385 $(BLD)/terminal.$(O) : \
1386 $(SRC)/terminal.c \
1387 $(SRC)/termchar.h \
1388 $(CHARSET_H) \
1389 $(CODING_H) \
1390 $(CONFIG_H) \
1391 $(FRAME_H) \
1392 $(KEYBOARD_H) \
1393 $(LISP_H) \
1394 $(TERMHOOKS_H)
1395
1396 $(BLD)/textprop.$(O) : \
1397 $(SRC)/textprop.c \
1398 $(SRC)/buffer.h \
1399 $(CHARACTER_H) \
1400 $(CONFIG_H) \
1401 $(INTERVALS_H) \
1402 $(LISP_H) \
1403 $(WINDOW_H)
1404
1405 $(BLD)/tparam.$(O) : \
1406 $(SRC)/tparam.c \
1407 $(SRC)/tparam.h \
1408 $(CONFIG_H) \
1409 $(LISP_H)
1410
1411 $(BLD)/undo.$(O) : \
1412 $(SRC)/undo.c \
1413 $(SRC)/buffer.h \
1414 $(SRC)/commands.h \
1415 $(CHARACTER_H) \
1416 $(CONFIG_H) \
1417 $(LISP_H) \
1418 $(WINDOW_H)
1419
1420 $(BLD)/unexw32.$(O) : \
1421 $(SRC)/unexw32.c \
1422 $(SRC)/unexec.h \
1423 $(SRC)/w32heap.h \
1424 $(CONFIG_H)
1425
1426 $(BLD)/vm-limit.$(O) : \
1427 $(SRC)/vm-limit.c \
1428 $(SRC)/mem-limits.h \
1429 $(CONFIG_H) \
1430 $(LISP_H)
1431
1432 $(BLD)/window.$(O) : \
1433 $(SRC)/window.c \
1434 $(SRC)/buffer.h \
1435 $(SRC)/commands.h \
1436 $(SRC)/disptab.h \
1437 $(SRC)/indent.h \
1438 $(SRC)/keymap.h \
1439 $(SRC)/termchar.h \
1440 $(BLOCKINPUT_H) \
1441 $(CHARACTER_H) \
1442 $(CONFIG_H) \
1443 $(DISPEXTERN_H) \
1444 $(FRAME_H) \
1445 $(INTERVALS_H) \
1446 $(KEYBOARD_H) \
1447 $(LISP_H) \
1448 $(TERMHOOKS_H) \
1449 $(W32TERM_H) \
1450 $(WINDOW_H)
1451
1452 $(BLD)/xdisp.$(O) : \
1453 $(SRC)/xdisp.c \
1454 $(SRC)/buffer.h \
1455 $(SRC)/commands.h \
1456 $(SRC)/disptab.h \
1457 $(SRC)/fontset.h \
1458 $(SRC)/indent.h \
1459 $(SRC)/keymap.h \
1460 $(SRC)/macros.h \
1461 $(SRC)/region-cache.h \
1462 $(SRC)/termchar.h \
1463 $(SRC)/termopts.h \
1464 $(BLOCKINPUT_H) \
1465 $(CHARACTER_H) \
1466 $(CHARSET_H) \
1467 $(CODING_H) \
1468 $(CONFIG_H) \
1469 $(DISPEXTERN_H) \
1470 $(FONT_H) \
1471 $(FRAME_H) \
1472 $(INTERVALS_H) \
1473 $(KEYBOARD_H) \
1474 $(LISP_H) \
1475 $(PROCESS_H) \
1476 $(TERMHOOKS_H) \
1477 $(W32TERM_H) \
1478 $(WINDOW_H)
1479
1480 $(BLD)/xfaces.$(O) : \
1481 $(SRC)/xfaces.c \
1482 $(SRC)/buffer.h \
1483 $(SRC)/fontset.h \
1484 $(SRC)/termchar.h \
1485 $(NT_INC)/sys/stat.h \
1486 $(BLOCKINPUT_H) \
1487 $(CHARACTER_H) \
1488 $(CHARSET_H) \
1489 $(CONFIG_H) \
1490 $(DISPEXTERN_H) \
1491 $(FONT_H) \
1492 $(FRAME_H) \
1493 $(INTERVALS_H) \
1494 $(KEYBOARD_H) \
1495 $(LISP_H) \
1496 $(TERMHOOKS_H) \
1497 $(W32TERM_H) \
1498 $(WINDOW_H)
1499
1500 $(BLD)/w32fns.$(O) : \
1501 $(SRC)/w32fns.c \
1502 $(SRC)/buffer.h \
1503 $(SRC)/ccl.h \
1504 $(SRC)/epaths.h \
1505 $(SRC)/fontset.h \
1506 $(SRC)/w32.h \
1507 $(SRC)/w32font.h \
1508 $(SRC)/w32heap.h \
1509 $(BLOCKINPUT_H) \
1510 $(CHARACTER_H) \
1511 $(CHARSET_H) \
1512 $(CODING_H) \
1513 $(CONFIG_H) \
1514 $(DISPEXTERN_H) \
1515 $(FONT_H) \
1516 $(FRAME_H) \
1517 $(INTERVALS_H) \
1518 $(KEYBOARD_H) \
1519 $(LISP_H) \
1520 $(SYSTIME_H) \
1521 $(TERMHOOKS_H) \
1522 $(W32TERM_H) \
1523 $(WINDOW_H)
1524
1525 $(BLD)/w32menu.$(O) : \
1526 $(SRC)/w32menu.c \
1527 $(SRC)/buffer.h \
1528 $(SRC)/keymap.h \
1529 $(SRC)/w32heap.h \
1530 $(BLOCKINPUT_H) \
1531 $(CHARACTER_H) \
1532 $(CHARSET_H) \
1533 $(CODING_H) \
1534 $(CONFIG_H) \
1535 $(DISPEXTERN_H) \
1536 $(FRAME_H) \
1537 $(KEYBOARD_H) \
1538 $(LISP_H) \
1539 $(MENU_H) \
1540 $(TERMHOOKS_H) \
1541 $(W32TERM_H) \
1542 $(WINDOW_H)
1543
1544 $(BLD)/w32term.$(O) : \
1545 $(SRC)/w32term.c \
1546 $(SRC)/buffer.h \
1547 $(SRC)/ccl.h \
1548 $(SRC)/disptab.h \
1549 $(SRC)/fontset.h \
1550 $(SRC)/keymap.h \
1551 $(SRC)/termchar.h \
1552 $(SRC)/termopts.h \
1553 $(SRC)/w32font.h \
1554 $(SRC)/w32heap.h \
1555 $(NT_INC)/sys/stat.h \
1556 $(ATIMER_H) \
1557 $(BLOCKINPUT_H) \
1558 $(CHARACTER_H) \
1559 $(CHARSET_H) \
1560 $(CODING_H) \
1561 $(CONFIG_H) \
1562 $(DISPEXTERN_H) \
1563 $(FONT_H) \
1564 $(FRAME_H) \
1565 $(INTERVALS_H) \
1566 $(KEYBOARD_H) \
1567 $(LISP_H) \
1568 $(PROCESS_H) \
1569 $(SYSTIME_H) \
1570 $(SYSTTY_H) \
1571 $(TERMHOOKS_H) \
1572 $(W32TERM_H) \
1573 $(WINDOW_H)
1574
1575 $(BLD)/w32select.$(O) : \
1576 $(SRC)/w32select.c \
1577 $(SRC)/composite.h \
1578 $(SRC)/w32heap.h \
1579 $(BLOCKINPUT_H) \
1580 $(CHARSET_H) \
1581 $(CODING_H) \
1582 $(CONFIG_H) \
1583 $(LISP_H) \
1584 $(W32TERM_H)
1585
1586 $(BLD)/w32reg.$(O) : \
1587 $(SRC)/w32reg.c \
1588 $(BLOCKINPUT_H) \
1589 $(CONFIG_H) \
1590 $(LISP_H) \
1591 $(W32TERM_H)
1592
1593 $(BLD)/w32xfns.$(O) : \
1594 $(SRC)/w32xfns.c \
1595 $(SRC)/fontset.h \
1596 $(BLOCKINPUT_H) \
1597 $(CHARSET_H) \
1598 $(CONFIG_H) \
1599 $(FRAME_H) \
1600 $(KEYBOARD_H) \
1601 $(LISP_H) \
1602 $(W32TERM_H)
1603
1604 $(BLD)/w32font.$(O) : \
1605 $(SRC)/w32font.c \
1606 $(SRC)/fontset.h \
1607 $(SRC)/w32font.h \
1608 $(CHARACTER_H) \
1609 $(CHARSET_H) \
1610 $(CODING_H) \
1611 $(CONFIG_H) \
1612 $(DISPEXTERN_H) \
1613 $(FONT_H) \
1614 $(FRAME_H) \
1615 $(LISP_H) \
1616 $(W32TERM_H)
1617
1618 $(BLD)/w32uniscribe.$(O) : \
1619 $(SRC)/w32uniscribe.c \
1620 $(SRC)/composite.h \
1621 $(SRC)/fontset.h \
1622 $(SRC)/w32font.h \
1623 $(CHARACTER_H) \
1624 $(CHARSET_H) \
1625 $(CONFIG_H) \
1626 $(DISPEXTERN_H) \
1627 $(FONT_H) \
1628 $(FRAME_H) \
1629 $(LISP_H) \
1630 $(W32TERM_H)
1631
1632 # Each object file depends on stamp_BLD, because in parallel builds we must
1633 # make sure $(BLD) exists before starting compilations.
1634 #
1635 $(OBJ0) $(OBJ1) $(OBJ2) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD