1 # Makefile for GNU Emacs on the Microsoft W32 API.
2 # Copyright (c) 2000-2001 Free Software Foundation, Inc.
4 # This file is part of GNU Emacs.
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 2, or (at your option)
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.
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Emacs; see the file COPYING. If not, write to the
18 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
27 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
28 # the emacs source tree.
30 LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
32 EMACS = $(BLD)/emacs.exe
33 TEMACS = $(BLD)/temacs.exe
34 TEMACS_TMP = $(BLD)/temacs.bin
35 TLIB0 = $(BLD)/temacs0.$(A)
36 TLIB1 = $(BLD)/temacs1.$(A)
37 TLIBW32 = $(BLD)/temacw32.$(A)
38 TOBJ = $(BLD)/firstfile.$(O)
39 TRES = $(BLD)/emacs.res
40 TLASTLIB = $(BLD)/lastfile.$(A)
42 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
45 # Split up the objects into two sets so that we don't run out of
46 # command line space when we link them into a library.
48 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
49 # as the "main" object file when linking.
51 OBJ0 = $(BLD)/emacs.$(O)
53 OBJ1 = $(BLD)/abbrev.$(O) \
58 $(BLD)/bytecode.$(O) \
60 $(BLD)/callproc.$(O) \
61 $(BLD)/casefiddle.$(O) \
72 $(BLD)/filelock.$(O) \
73 $(BLD)/filemode.$(O) \
77 $(BLD)/keyboard.$(O) \
84 $(BLD)/mocklisp.$(O) \
87 $(BLD)/w32inevt.$(O) \
89 $(BLD)/w32console.$(O) \
101 $(BLD)/unexw32.$(O) \
104 $(BLD)/casetab.$(O) \
105 $(BLD)/floatfns.$(O) \
107 $(BLD)/gmalloc.$(O) \
108 $(BLD)/intervals.$(O) \
109 $(BLD)/composite.$(O) \
111 $(BLD)/textprop.$(O) \
112 $(BLD)/vm-limit.$(O) \
113 $(BLD)/region-cache.$(O) \
114 $(BLD)/strftime.$(O) \
115 $(BLD)/charset.$(O) \
117 $(BLD)/category.$(O) \
121 WIN32OBJ = $(BLD)/w32term.$(O) \
122 $(BLD)/w32xfns.$(O) \
125 $(BLD)/w32select.$(O) \
126 $(BLD)/w32menu.$(O) \
143 # Build the executable and dump it.
148 # The dumped executable
150 emacs: $(BLD) $(EMACS)
151 $(EMACS): $(DOC) $(TEMACS)
152 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
155 # The undumped executable
156 # Note the extra post-link step to insert a static preload heap section.
157 # If preload runs out of memory, increase the last argument to addsection
158 # (it is the preload heap size in MB).
160 temacs: $(BLD) $(TEMACS)
161 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
162 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
163 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
165 bootstrap: bootstrap-emacs
168 # Build a temacs with a sufficiently large PURESIZE to load the
169 # Lisp files from loadup.el in source form.
171 bootstrap-temacs: bootstrap-clean
172 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
175 # Dump an Emacs executable named bootstrap-emacs containing the
176 # files from loadup.el in source form.
178 bootstrap-emacs: bootstrap-temacs
179 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
181 $(CP) $(EMACS) ../bin
184 # Force recompile of files that depend on PURESIZE
187 - $(DEL) $(BLD)/alloc.$(O)
188 - $(DEL) $(BLD)/data.$(O)
189 - $(DEL) $(BLD)/intervals.$(O)
190 - $(DEL) $(BLD)/keyboard.$(O)
191 - $(DEL) $(BLD)/keymap.$(O)
194 # The resource file. NT 3.10 requires the use of cvtres; even though
195 # it is not necessary on later versions, it is still ok to use it.
197 $(TRES): ../nt/emacs.rc
198 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
201 # Build the library. Split up the build into two phases...otherwise we
202 # run out of command line space.
206 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
209 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
210 $(TLIBW32): $(WIN32OBJ)
212 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
215 # Place lastfile.$(O) in its own library so that it can be loaded after
216 # the source libraries but before any system libraries. Doing so defines
217 # the end of Emacs' data section portably across compilers and systems.
219 $(TLASTLIB): $(BLD)/lastfile.$(O)
221 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
224 # Assuming INSTALL_DIR is defined, build and install emacs in it.
227 - mkdir "$(INSTALL_DIR)/bin"
228 $(CP) $(EMACS) $(INSTALL_DIR)/bin
234 - $(DEL) *~ "s/*~" "m/*~"
235 - $(DEL) $(COMPILER_TEMP_FILES)
236 - $(DEL_TREE) $(OBJDIR)
239 - $(DEL) config.h epaths.h
243 - $(DEL_TREE) obj-spd
252 $(BLD)/abbrev.$(O) : \
254 $(EMACS_ROOT)/src/s/ms-w32.h \
255 $(EMACS_ROOT)/src/m/intel386.h \
256 $(EMACS_ROOT)/src/config.h \
261 $(BLD)/alloc.$(O) : \
263 $(EMACS_ROOT)/src/s/ms-w32.h \
264 $(EMACS_ROOT)/src/m/intel386.h \
265 $(EMACS_ROOT)/src/config.h \
266 $(SRC)/dispextern.h \
274 $(SRC)/blockinput.h \
277 $(BLD)/alloca.$(O) : \
279 $(EMACS_ROOT)/src/s/ms-w32.h \
280 $(EMACS_ROOT)/src/m/intel386.h \
281 $(EMACS_ROOT)/src/config.h \
283 $(SRC)/m/intel386.h \
287 $(BLD)/atimer.$(O) : \
289 $(EMACS_ROOT)/src/s/ms-w32.h \
290 $(EMACS_ROOT)/src/m/intel386.h \
291 $(EMACS_ROOT)/src/config.h \
293 $(SRC)/m/intel386.h \
300 $(BLD)/buffer.$(O) : \
302 $(EMACS_ROOT)/nt/inc/sys/param.h \
303 $(EMACS_ROOT)/src/s/ms-w32.h \
304 $(EMACS_ROOT)/src/m/intel386.h \
305 $(EMACS_ROOT)/src/config.h \
306 $(SRC)/dispextern.h \
315 $(SRC)/blockinput.h \
316 $(SRC)/region-cache.h
318 $(BLD)/bytecode.$(O) : \
320 $(EMACS_ROOT)/src/s/ms-w32.h \
321 $(EMACS_ROOT)/src/m/intel386.h \
322 $(EMACS_ROOT)/src/config.h \
326 $(BLD)/callint.$(O) : \
328 $(EMACS_ROOT)/src/s/ms-w32.h \
329 $(EMACS_ROOT)/src/m/intel386.h \
330 $(EMACS_ROOT)/src/config.h \
337 $(BLD)/callproc.$(O) : \
339 $(EMACS_ROOT)/src/s/ms-w32.h \
340 $(EMACS_ROOT)/src/m/intel386.h \
341 $(EMACS_ROOT)/src/config.h \
343 $(EMACS_ROOT)/nt/inc/sys/param.h \
348 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
349 $(EMACS_ROOT)/nt/inc/sys/file.h \
352 $(BLD)/casefiddle.$(O) : \
353 $(SRC)/casefiddle.c \
354 $(EMACS_ROOT)/src/s/ms-w32.h \
355 $(EMACS_ROOT)/src/m/intel386.h \
356 $(EMACS_ROOT)/src/config.h \
361 $(BLD)/casetab.$(O) : \
363 $(EMACS_ROOT)/src/s/ms-w32.h \
364 $(EMACS_ROOT)/src/m/intel386.h \
365 $(EMACS_ROOT)/src/config.h \
370 $(EMACS_ROOT)/src/s/ms-w32.h \
371 $(EMACS_ROOT)/src/m/intel386.h \
372 $(EMACS_ROOT)/src/config.h \
378 $(EMACS_ROOT)/src/s/ms-w32.h \
379 $(EMACS_ROOT)/src/m/intel386.h \
380 $(EMACS_ROOT)/src/config.h \
385 $(BLD)/composite.$(O) : \
391 $(EMACS_ROOT)/src/s/ms-w32.h \
392 $(EMACS_ROOT)/src/m/intel386.h \
393 $(EMACS_ROOT)/src/config.h
397 $(EMACS_ROOT)/src/s/ms-w32.h \
398 $(EMACS_ROOT)/src/m/intel386.h \
399 $(EMACS_ROOT)/src/config.h \
404 $(BLD)/dired.$(O) : \
406 $(EMACS_ROOT)/src/s/ms-w32.h \
407 $(EMACS_ROOT)/src/m/intel386.h \
408 $(EMACS_ROOT)/src/config.h \
414 $(BLD)/dispnew.$(O) : \
416 $(EMACS_ROOT)/src/s/ms-w32.h \
417 $(EMACS_ROOT)/src/m/intel386.h \
418 $(EMACS_ROOT)/src/config.h \
429 $(SRC)/dispextern.h \
432 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
433 $(EMACS_ROOT)/nt/inc/sys/file.h \
442 $(EMACS_ROOT)/src/s/ms-w32.h \
443 $(EMACS_ROOT)/src/m/intel386.h \
444 $(EMACS_ROOT)/src/config.h \
445 $(EMACS_ROOT)/nt/inc/sys/file.h \
449 $(BLD)/doprnt.$(O) : \
451 $(EMACS_ROOT)/src/s/ms-w32.h \
452 $(EMACS_ROOT)/src/m/intel386.h \
453 $(EMACS_ROOT)/src/config.h
455 $(BLD)/dosfns.$(O) : \
457 $(EMACS_ROOT)/src/s/ms-w32.h \
458 $(EMACS_ROOT)/src/m/intel386.h \
459 $(EMACS_ROOT)/src/config.h \
467 $(BLD)/editfns.$(O) : \
469 $(EMACS_ROOT)/src/s/ms-w32.h \
470 $(EMACS_ROOT)/src/m/intel386.h \
471 $(EMACS_ROOT)/src/config.h \
473 $(EMACS_ROOT)/nt/inc/pwd.h \
474 $(SRC)/dispextern.h \
482 $(BLD)/emacs.$(O) : \
484 $(EMACS_ROOT)/src/s/ms-w32.h \
485 $(EMACS_ROOT)/src/m/intel386.h \
486 $(EMACS_ROOT)/src/config.h \
488 $(SRC)/dispextern.h \
492 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
493 $(EMACS_ROOT)/nt/inc/sys/file.h \
500 $(EMACS_ROOT)/src/s/ms-w32.h \
501 $(EMACS_ROOT)/src/m/intel386.h \
502 $(EMACS_ROOT)/src/config.h \
503 $(SRC)/blockinput.h \
507 $(BLD)/fileio.$(O) : \
509 $(EMACS_ROOT)/src/s/ms-w32.h \
510 $(EMACS_ROOT)/src/m/intel386.h \
511 $(EMACS_ROOT)/src/config.h \
513 $(EMACS_ROOT)/nt/inc/pwd.h \
515 $(EMACS_ROOT)/nt/inc/sys/param.h \
516 $(SRC)/dispextern.h \
522 $(EMACS_ROOT)/nt/inc/sys/file.h \
525 $(BLD)/filelock.$(O) : \
527 $(EMACS_ROOT)/src/s/ms-w32.h \
528 $(EMACS_ROOT)/src/m/intel386.h \
529 $(EMACS_ROOT)/src/config.h \
531 $(EMACS_ROOT)/nt/inc/pwd.h \
532 $(EMACS_ROOT)/nt/inc/sys/file.h \
533 $(EMACS_ROOT)/src/epaths.h \
537 $(BLD)/filemode.$(O) : \
539 $(EMACS_ROOT)/src/s/ms-w32.h \
540 $(EMACS_ROOT)/src/m/intel386.h \
541 $(EMACS_ROOT)/src/config.h \
543 $(SRC)/m/intel386.h \
546 $(BLD)/firstfile.$(O) : \
548 $(EMACS_ROOT)/src/s/ms-w32.h \
549 $(EMACS_ROOT)/src/m/intel386.h \
550 $(EMACS_ROOT)/src/config.h
552 $(BLD)/floatfns.$(O) : \
554 $(EMACS_ROOT)/src/s/ms-w32.h \
555 $(EMACS_ROOT)/src/m/intel386.h \
556 $(EMACS_ROOT)/src/config.h \
561 $(EMACS_ROOT)/src/s/ms-w32.h \
562 $(EMACS_ROOT)/src/m/intel386.h \
563 $(EMACS_ROOT)/src/config.h \
567 $(SRC)/dispextern.h \
573 $(BLD)/frame.$(O) : \
575 $(EMACS_ROOT)/src/s/ms-w32.h \
576 $(EMACS_ROOT)/src/m/intel386.h \
577 $(EMACS_ROOT)/src/config.h \
585 $(BLD)/getloadavg.$(O) : \
586 $(SRC)/getloadavg.c \
587 $(EMACS_ROOT)/nt/inc/sys/param.h \
588 $(EMACS_ROOT)/src/s/ms-w32.h \
589 $(EMACS_ROOT)/src/m/intel386.h \
590 $(EMACS_ROOT)/src/config.h \
592 $(SRC)/m/intel386.h \
594 $(EMACS_ROOT)/nt/inc/sys/file.h
596 $(BLD)/gmalloc.$(O) : \
598 $(EMACS_ROOT)/src/s/ms-w32.h \
599 $(EMACS_ROOT)/src/m/intel386.h \
600 $(EMACS_ROOT)/src/config.h \
601 $(EMACS_ROOT)/nt/inc/sys/param.h \
604 $(BLD)/hftctl.$(O) : \
606 $(EMACS_ROOT)/src/s/ms-w32.h \
607 $(EMACS_ROOT)/src/m/intel386.h \
608 $(EMACS_ROOT)/src/config.h \
609 $(EMACS_ROOT)/nt/inc/sys/ioctl.h
611 $(BLD)/indent.$(O) : \
613 $(EMACS_ROOT)/src/s/ms-w32.h \
614 $(EMACS_ROOT)/src/m/intel386.h \
615 $(EMACS_ROOT)/src/config.h \
623 $(SRC)/dispextern.h \
626 $(SRC)/region-cache.h \
629 $(BLD)/insdel.$(O) : \
631 $(EMACS_ROOT)/src/s/ms-w32.h \
632 $(EMACS_ROOT)/src/m/intel386.h \
633 $(EMACS_ROOT)/src/config.h \
634 $(SRC)/dispextern.h \
642 $(BLD)/intervals.$(O) : \
644 $(EMACS_ROOT)/src/s/ms-w32.h \
645 $(EMACS_ROOT)/src/m/intel386.h \
646 $(EMACS_ROOT)/src/config.h \
647 $(SRC)/dispextern.h \
655 $(BLD)/keyboard.$(O) : \
657 $(EMACS_ROOT)/src/s/ms-w32.h \
658 $(EMACS_ROOT)/src/m/intel386.h \
659 $(EMACS_ROOT)/src/config.h \
670 $(SRC)/dispextern.h \
673 $(SRC)/blockinput.h \
676 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
677 $(EMACS_ROOT)/nt/inc/sys/file.h \
685 $(BLD)/keymap.$(O) : \
687 $(EMACS_ROOT)/src/s/ms-w32.h \
688 $(EMACS_ROOT)/src/m/intel386.h \
689 $(EMACS_ROOT)/src/config.h \
696 $(BLD)/lastfile.$(O) : \
698 $(EMACS_ROOT)/src/s/ms-w32.h \
699 $(EMACS_ROOT)/src/m/intel386.h \
700 $(EMACS_ROOT)/src/config.h
702 $(BLD)/lread.$(O) : \
704 $(EMACS_ROOT)/src/s/ms-w32.h \
705 $(EMACS_ROOT)/src/m/intel386.h \
706 $(EMACS_ROOT)/src/config.h \
707 $(EMACS_ROOT)/nt/inc/sys/file.h \
709 $(EMACS_ROOT)/src/epaths.h \
715 $(BLD)/macros.$(O) : \
717 $(EMACS_ROOT)/src/s/ms-w32.h \
718 $(EMACS_ROOT)/src/m/intel386.h \
719 $(EMACS_ROOT)/src/config.h \
725 $(BLD)/marker.$(O) : \
727 $(EMACS_ROOT)/src/s/ms-w32.h \
728 $(EMACS_ROOT)/src/m/intel386.h \
729 $(EMACS_ROOT)/src/config.h \
736 $(BLD)/minibuf.$(O) : \
738 $(EMACS_ROOT)/src/s/ms-w32.h \
739 $(EMACS_ROOT)/src/m/intel386.h \
740 $(EMACS_ROOT)/src/config.h \
743 $(SRC)/dispextern.h \
749 $(BLD)/mocklisp.$(O) : \
751 $(EMACS_ROOT)/src/s/ms-w32.h \
752 $(EMACS_ROOT)/src/m/intel386.h \
753 $(EMACS_ROOT)/src/config.h \
760 $(SRC)/m/intel386.h \
762 $(EMACS_ROOT)/nt/inc/pwd.h \
765 $(BLD)/w32heap.$(O) : \
769 $(SRC)/m/intel386.h \
772 $(BLD)/w32inevt.$(O) : \
775 $(SRC)/m/intel386.h \
778 $(SRC)/blockinput.h \
784 $(BLD)/w32proc.$(O) : \
787 $(SRC)/m/intel386.h \
793 $(BLD)/w32console.$(O) : \
794 $(SRC)/w32console.c \
796 $(SRC)/m/intel386.h \
803 $(BLD)/prefix-args.$(O) : \
806 $(BLD)/print.$(O) : \
808 $(EMACS_ROOT)/src/s/ms-w32.h \
809 $(EMACS_ROOT)/src/m/intel386.h \
810 $(EMACS_ROOT)/src/config.h \
816 $(SRC)/dispextern.h \
821 $(BLD)/process.$(O) : \
823 $(EMACS_ROOT)/src/s/ms-w32.h \
824 $(EMACS_ROOT)/src/m/intel386.h \
825 $(EMACS_ROOT)/src/config.h \
826 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
827 $(EMACS_ROOT)/nt/inc/sys/file.h \
842 $(BLD)/ralloc.$(O) : \
844 $(EMACS_ROOT)/src/s/ms-w32.h \
845 $(EMACS_ROOT)/src/m/intel386.h \
846 $(EMACS_ROOT)/src/config.h \
848 $(SRC)/m/intel386.h \
850 $(EMACS_ROOT)/nt/inc/sys/param.h \
853 $(BLD)/regex.$(O) : \
855 $(EMACS_ROOT)/src/s/ms-w32.h \
856 $(EMACS_ROOT)/src/m/intel386.h \
857 $(EMACS_ROOT)/src/config.h \
859 $(SRC)/m/intel386.h \
865 $(BLD)/region-cache.$(O) : \
866 $(SRC)/region-cache.c \
867 $(EMACS_ROOT)/src/s/ms-w32.h \
868 $(EMACS_ROOT)/src/m/intel386.h \
869 $(EMACS_ROOT)/src/config.h \
871 $(SRC)/region-cache.h
873 $(BLD)/scroll.$(O) : \
875 $(EMACS_ROOT)/src/s/ms-w32.h \
876 $(EMACS_ROOT)/src/m/intel386.h \
877 $(EMACS_ROOT)/src/config.h \
879 $(SRC)/dispextern.h \
883 $(BLD)/search.$(O) : \
885 $(EMACS_ROOT)/src/s/ms-w32.h \
886 $(EMACS_ROOT)/src/m/intel386.h \
887 $(EMACS_ROOT)/src/config.h \
891 $(SRC)/blockinput.h \
893 $(SRC)/region-cache.h \
896 $(BLD)/strftime.$(O) : \
898 $(EMACS_ROOT)/src/s/ms-w32.h \
899 $(EMACS_ROOT)/src/m/intel386.h \
900 $(EMACS_ROOT)/src/config.h
902 $(BLD)/syntax.$(O) : \
904 $(EMACS_ROOT)/src/s/ms-w32.h \
905 $(EMACS_ROOT)/src/m/intel386.h \
906 $(EMACS_ROOT)/src/config.h \
912 $(BLD)/sysdep.$(O) : \
914 $(EMACS_ROOT)/src/s/ms-w32.h \
915 $(EMACS_ROOT)/src/m/intel386.h \
916 $(EMACS_ROOT)/src/config.h \
917 $(SRC)/blockinput.h \
920 $(EMACS_ROOT)/nt/inc/sys/param.h \
921 $(EMACS_ROOT)/nt/inc/sys/file.h \
922 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
923 $(EMACS_ROOT)/nt/inc/sys/file.h \
931 $(SRC)/dispextern.h \
938 $(EMACS_ROOT)/src/acldef.h \
939 $(EMACS_ROOT)/src/chpdef.h
943 $(EMACS_ROOT)/src/s/ms-w32.h \
944 $(EMACS_ROOT)/src/m/intel386.h \
945 $(EMACS_ROOT)/src/config.h \
951 $(SRC)/dispextern.h \
955 $(BLD)/termcap.$(O) : \
957 $(EMACS_ROOT)/src/s/ms-w32.h \
958 $(EMACS_ROOT)/src/m/intel386.h \
959 $(EMACS_ROOT)/src/config.h \
960 $(EMACS_ROOT)/nt/inc/sys/file.h
962 $(BLD)/terminfo.$(O) : \
965 $(BLD)/textprop.$(O) : \
967 $(EMACS_ROOT)/src/s/ms-w32.h \
968 $(EMACS_ROOT)/src/m/intel386.h \
969 $(EMACS_ROOT)/src/config.h \
970 $(SRC)/dispextern.h \
977 $(BLD)/tparam.$(O) : \
979 $(EMACS_ROOT)/src/s/ms-w32.h \
980 $(EMACS_ROOT)/src/m/intel386.h \
981 $(EMACS_ROOT)/src/config.h
985 $(EMACS_ROOT)/src/s/ms-w32.h \
986 $(EMACS_ROOT)/src/m/intel386.h \
987 $(EMACS_ROOT)/src/config.h \
991 $(BLD)/unexw32.$(O) : \
993 $(EMACS_ROOT)/src/s/ms-w32.h \
994 $(EMACS_ROOT)/src/m/intel386.h \
995 $(EMACS_ROOT)/src/config.h \
998 $(BLD)/vm-limit.$(O) : \
1000 $(EMACS_ROOT)/src/s/ms-w32.h \
1001 $(EMACS_ROOT)/src/m/intel386.h \
1002 $(EMACS_ROOT)/src/config.h \
1005 $(BLD)/widget.$(O) : \
1007 $(EMACS_ROOT)/src/s/ms-w32.h \
1008 $(EMACS_ROOT)/src/m/intel386.h \
1009 $(EMACS_ROOT)/src/config.h \
1012 $(SRC)/dispextern.h \
1017 $(BLD)/window.$(O) : \
1019 $(EMACS_ROOT)/src/s/ms-w32.h \
1020 $(EMACS_ROOT)/src/m/intel386.h \
1021 $(EMACS_ROOT)/src/config.h \
1032 $(BLD)/xdisp.$(O) : \
1034 $(EMACS_ROOT)/src/s/ms-w32.h \
1035 $(EMACS_ROOT)/src/m/intel386.h \
1036 $(EMACS_ROOT)/src/config.h \
1045 $(SRC)/termhooks.h \
1046 $(SRC)/dispextern.h \
1048 $(SRC)/intervals.h \
1051 $(BLD)/xfaces.$(O): \
1052 $(EMACS_ROOT)/src/s/ms-w32.h \
1053 $(EMACS_ROOT)/src/m/intel386.h \
1054 $(EMACS_ROOT)/src/config.h \
1061 $(SRC)/dispextern.h \
1063 $(SRC)/blockinput.h \
1065 $(SRC)/intervals.h \
1068 $(BLD)/w32fns.$(O): \
1069 $(EMACS_ROOT)/src/s/ms-w32.h \
1070 $(EMACS_ROOT)/src/m/intel386.h \
1071 $(EMACS_ROOT)/src/config.h \
1080 $(SRC)/dispextern.h \
1082 $(SRC)/blockinput.h \
1087 $(BLD)/w32menu.$(O): \
1088 $(EMACS_ROOT)/src/s/ms-w32.h \
1089 $(EMACS_ROOT)/src/m/intel386.h \
1090 $(EMACS_ROOT)/src/config.h \
1092 $(SRC)/termhooks.h \
1096 $(SRC)/blockinput.h \
1101 $(BLD)/w32term.$(O): \
1102 $(EMACS_ROOT)/src/s/ms-w32.h \
1103 $(EMACS_ROOT)/src/m/intel386.h \
1104 $(EMACS_ROOT)/src/config.h \
1106 $(SRC)/blockinput.h \
1113 $(SRC)/dispextern.h \
1114 $(SRC)/termhooks.h \
1122 $(SRC)/intervals.h \
1123 $(SRC)/composite.h \
1126 $(BLD)/w32select.$(O): \
1127 $(EMACS_ROOT)/src/s/ms-w32.h \
1128 $(EMACS_ROOT)/src/m/intel386.h \
1129 $(EMACS_ROOT)/src/config.h \
1130 $(SRC)/w32select.c \
1133 $(SRC)/dispextern.h \
1137 $(BLD)/w32reg.$(O): \
1138 $(EMACS_ROOT)/src/s/ms-w32.h \
1139 $(EMACS_ROOT)/src/m/intel386.h \
1140 $(EMACS_ROOT)/src/config.h \
1146 $(BLD)/w32xfns.$(O): \
1147 $(EMACS_ROOT)/src/s/ms-w32.h \
1148 $(EMACS_ROOT)/src/m/intel386.h \
1149 $(EMACS_ROOT)/src/config.h \
1152 $(BLD)/w32bdf.$(O): \
1153 $(EMACS_ROOT)/src/s/ms-w32.h \
1154 $(EMACS_ROOT)/src/m/intel386.h \
1155 $(EMACS_ROOT)/src/config.h \
1159 $(SRC)/dispextern.h \
1161 $(SRC)/blockinput.h \