1 # Makefile for GNU Emacs on the Microsoft W32 API.
2 # Copyright (c) 1992-2000 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) \
83 $(BLD)/mocklisp.$(O) \
86 $(BLD)/w32inevt.$(O) \
88 $(BLD)/w32console.$(O) \
100 $(BLD)/unexw32.$(O) \
103 $(BLD)/casetab.$(O) \
104 $(BLD)/floatfns.$(O) \
106 $(BLD)/gmalloc.$(O) \
107 $(BLD)/intervals.$(O) \
108 $(BLD)/composite.$(O) \
110 $(BLD)/textprop.$(O) \
111 $(BLD)/vm-limit.$(O) \
112 $(BLD)/region-cache.$(O) \
113 $(BLD)/strftime.$(O) \
114 $(BLD)/charset.$(O) \
116 $(BLD)/category.$(O) \
120 WIN32OBJ = $(BLD)/w32term.$(O) \
121 $(BLD)/w32xfns.$(O) \
124 $(BLD)/w32select.$(O) \
125 $(BLD)/w32menu.$(O) \
142 # Build the executable and dump it.
147 # The dumped executable
149 emacs: $(BLD) $(EMACS)
150 $(EMACS): $(DOC) $(TEMACS)
151 "./$(BLD)/temacs.exe" -batch -l loadup dump
154 # The undumped executable
155 # Note the extra post-link step to insert a static preload heap section.
156 # If preload runs out of memory, increase the last argument to addsection
157 # (it is the preload heap size in MB).
159 temacs: $(BLD) $(TEMACS)
160 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
161 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
162 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
164 bootstrap: bootstrap-emacs
167 # Build a temacs with a sufficiently large PURESIZE to load the
168 # Lisp files from loadup.el in source form.
170 bootstrap-temacs: bootstrap-clean
171 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
174 # Dump an Emacs executable named bootstrap-emacs containing the
175 # files from loadup.el in source form.
177 bootstrap-emacs: bootstrap-temacs
178 "./$(BLD)/temacs.exe" -batch -l loadup bootstrap
180 $(CP) $(EMACS) ../bin
183 # Force recompile of files that depend on PURESIZE
186 - $(DEL) $(BLD)/alloc.$(O)
187 - $(DEL) $(BLD)/data.$(O)
188 - $(DEL) $(BLD)/intervals.$(O)
189 - $(DEL) $(BLD)/keyboard.$(O)
190 - $(DEL) $(BLD)/keymap.$(O)
193 # The resource file. NT 3.10 requires the use of cvtres; even though
194 # it is not necessary on later versions, it is still ok to use it.
196 $(TRES): ../nt/emacs.rc
197 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
200 # Build the library. Split up the build into two phases...otherwise we
201 # run out of command line space.
205 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
208 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
209 $(TLIBW32): $(WIN32OBJ)
211 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
214 # Place lastfile.$(O) in its own library so that it can be loaded after
215 # the source libraries but before any system libraries. Doing so defines
216 # the end of Emacs' data section portably across compilers and systems.
218 $(TLASTLIB): $(BLD)/lastfile.$(O)
220 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
223 # Assuming INSTALL_DIR is defined, build and install emacs in it.
226 - mkdir "$(INSTALL_DIR)/bin"
227 $(CP) $(EMACS) $(INSTALL_DIR)/bin
233 - $(DEL) *~ "s/*~" "m/*~"
235 - $(DEL_TREE) $(OBJDIR)
238 - $(DEL) config.h epaths.h
242 - $(DEL_TREE) obj-spd
251 $(BLD)/abbrev.$(O) : \
253 $(EMACS_ROOT)/src/s/ms-w32.h \
254 $(EMACS_ROOT)/src/m/intel386.h \
255 $(EMACS_ROOT)/src/config.h \
260 $(BLD)/alloc.$(O) : \
262 $(EMACS_ROOT)/src/s/ms-w32.h \
263 $(EMACS_ROOT)/src/m/intel386.h \
264 $(EMACS_ROOT)/src/config.h \
265 $(SRC)/dispextern.h \
273 $(SRC)/blockinput.h \
276 $(BLD)/alloca.$(O) : \
278 $(EMACS_ROOT)/src/s/ms-w32.h \
279 $(EMACS_ROOT)/src/m/intel386.h \
280 $(EMACS_ROOT)/src/config.h \
282 $(SRC)/m/intel386.h \
286 $(BLD)/atimer.$(O) : \
288 $(EMACS_ROOT)/src/s/ms-w32.h \
289 $(EMACS_ROOT)/src/m/intel386.h \
290 $(EMACS_ROOT)/src/config.h \
292 $(SRC)/m/intel386.h \
299 $(BLD)/buffer.$(O) : \
301 $(EMACS_ROOT)/nt/inc/sys/param.h \
302 $(EMACS_ROOT)/src/s/ms-w32.h \
303 $(EMACS_ROOT)/src/m/intel386.h \
304 $(EMACS_ROOT)/src/config.h \
305 $(SRC)/dispextern.h \
314 $(SRC)/blockinput.h \
315 $(SRC)/region-cache.h
317 $(BLD)/bytecode.$(O) : \
319 $(EMACS_ROOT)/src/s/ms-w32.h \
320 $(EMACS_ROOT)/src/m/intel386.h \
321 $(EMACS_ROOT)/src/config.h \
325 $(BLD)/callint.$(O) : \
327 $(EMACS_ROOT)/src/s/ms-w32.h \
328 $(EMACS_ROOT)/src/m/intel386.h \
329 $(EMACS_ROOT)/src/config.h \
336 $(BLD)/callproc.$(O) : \
338 $(EMACS_ROOT)/src/s/ms-w32.h \
339 $(EMACS_ROOT)/src/m/intel386.h \
340 $(EMACS_ROOT)/src/config.h \
342 $(EMACS_ROOT)/nt/inc/sys/param.h \
347 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
348 $(EMACS_ROOT)/nt/inc/sys/file.h \
351 $(BLD)/casefiddle.$(O) : \
352 $(SRC)/casefiddle.c \
353 $(EMACS_ROOT)/src/s/ms-w32.h \
354 $(EMACS_ROOT)/src/m/intel386.h \
355 $(EMACS_ROOT)/src/config.h \
360 $(BLD)/casetab.$(O) : \
362 $(EMACS_ROOT)/src/s/ms-w32.h \
363 $(EMACS_ROOT)/src/m/intel386.h \
364 $(EMACS_ROOT)/src/config.h \
369 $(EMACS_ROOT)/src/s/ms-w32.h \
370 $(EMACS_ROOT)/src/m/intel386.h \
371 $(EMACS_ROOT)/src/config.h \
377 $(EMACS_ROOT)/src/s/ms-w32.h \
378 $(EMACS_ROOT)/src/m/intel386.h \
379 $(EMACS_ROOT)/src/config.h \
384 $(BLD)/composite.$(O) : \
390 $(EMACS_ROOT)/src/s/ms-w32.h \
391 $(EMACS_ROOT)/src/m/intel386.h \
392 $(EMACS_ROOT)/src/config.h
396 $(EMACS_ROOT)/src/s/ms-w32.h \
397 $(EMACS_ROOT)/src/m/intel386.h \
398 $(EMACS_ROOT)/src/config.h \
403 $(BLD)/dired.$(O) : \
405 $(EMACS_ROOT)/src/s/ms-w32.h \
406 $(EMACS_ROOT)/src/m/intel386.h \
407 $(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 \
443 $(EMACS_ROOT)/src/s/ms-w32.h \
444 $(EMACS_ROOT)/src/m/intel386.h \
445 $(EMACS_ROOT)/src/config.h \
446 $(EMACS_ROOT)/nt/inc/sys/file.h \
450 $(BLD)/doprnt.$(O) : \
452 $(EMACS_ROOT)/src/s/ms-w32.h \
453 $(EMACS_ROOT)/src/m/intel386.h \
454 $(EMACS_ROOT)/src/config.h
456 $(BLD)/dosfns.$(O) : \
458 $(EMACS_ROOT)/src/s/ms-w32.h \
459 $(EMACS_ROOT)/src/m/intel386.h \
460 $(EMACS_ROOT)/src/config.h \
468 $(BLD)/editfns.$(O) : \
470 $(EMACS_ROOT)/src/s/ms-w32.h \
471 $(EMACS_ROOT)/src/m/intel386.h \
472 $(EMACS_ROOT)/src/config.h \
475 $(EMACS_ROOT)/nt/inc/pwd.h \
476 $(SRC)/dispextern.h \
485 $(BLD)/emacs.$(O) : \
487 $(EMACS_ROOT)/src/s/ms-w32.h \
488 $(EMACS_ROOT)/src/m/intel386.h \
489 $(EMACS_ROOT)/src/config.h \
491 $(SRC)/dispextern.h \
495 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
496 $(EMACS_ROOT)/nt/inc/sys/file.h \
503 $(EMACS_ROOT)/src/s/ms-w32.h \
504 $(EMACS_ROOT)/src/m/intel386.h \
505 $(EMACS_ROOT)/src/config.h \
506 $(SRC)/blockinput.h \
510 $(BLD)/fileio.$(O) : \
512 $(EMACS_ROOT)/src/s/ms-w32.h \
513 $(EMACS_ROOT)/src/m/intel386.h \
514 $(EMACS_ROOT)/src/config.h \
517 $(EMACS_ROOT)/nt/inc/pwd.h \
519 $(EMACS_ROOT)/nt/inc/sys/param.h \
521 $(SRC)/dispextern.h \
527 $(EMACS_ROOT)/nt/inc/sys/file.h \
531 $(BLD)/filelock.$(O) : \
533 $(EMACS_ROOT)/src/s/ms-w32.h \
534 $(EMACS_ROOT)/src/m/intel386.h \
535 $(EMACS_ROOT)/src/config.h \
538 $(EMACS_ROOT)/nt/inc/pwd.h \
539 $(EMACS_ROOT)/nt/inc/sys/file.h \
540 $(EMACS_ROOT)/src/epaths.h \
545 $(BLD)/filemode.$(O) : \
547 $(EMACS_ROOT)/src/s/ms-w32.h \
548 $(EMACS_ROOT)/src/m/intel386.h \
549 $(EMACS_ROOT)/src/config.h \
551 $(SRC)/m/intel386.h \
554 $(BLD)/firstfile.$(O) : \
556 $(EMACS_ROOT)/src/s/ms-w32.h \
557 $(EMACS_ROOT)/src/m/intel386.h \
558 $(EMACS_ROOT)/src/config.h
560 $(BLD)/floatfns.$(O) : \
562 $(EMACS_ROOT)/src/s/ms-w32.h \
563 $(EMACS_ROOT)/src/m/intel386.h \
564 $(EMACS_ROOT)/src/config.h \
569 $(EMACS_ROOT)/src/s/ms-w32.h \
570 $(EMACS_ROOT)/src/m/intel386.h \
571 $(EMACS_ROOT)/src/config.h \
575 $(SRC)/dispextern.h \
580 $(BLD)/frame.$(O) : \
582 $(EMACS_ROOT)/src/s/ms-w32.h \
583 $(EMACS_ROOT)/src/m/intel386.h \
584 $(EMACS_ROOT)/src/config.h \
592 $(BLD)/getloadavg.$(O) : \
593 $(SRC)/getloadavg.c \
594 $(EMACS_ROOT)/nt/inc/sys/param.h \
595 $(EMACS_ROOT)/src/s/ms-w32.h \
596 $(EMACS_ROOT)/src/m/intel386.h \
597 $(EMACS_ROOT)/src/config.h \
599 $(SRC)/m/intel386.h \
601 $(EMACS_ROOT)/nt/inc/sys/file.h
603 $(BLD)/gmalloc.$(O) : \
605 $(EMACS_ROOT)/src/s/ms-w32.h \
606 $(EMACS_ROOT)/src/m/intel386.h \
607 $(EMACS_ROOT)/src/config.h \
608 $(EMACS_ROOT)/nt/inc/sys/param.h \
611 $(BLD)/hftctl.$(O) : \
613 $(EMACS_ROOT)/src/s/ms-w32.h \
614 $(EMACS_ROOT)/src/m/intel386.h \
615 $(EMACS_ROOT)/src/config.h \
616 $(EMACS_ROOT)/nt/inc/sys/ioctl.h
618 $(BLD)/indent.$(O) : \
620 $(EMACS_ROOT)/src/s/ms-w32.h \
621 $(EMACS_ROOT)/src/m/intel386.h \
622 $(EMACS_ROOT)/src/config.h \
630 $(SRC)/dispextern.h \
633 $(SRC)/region-cache.h \
636 $(BLD)/insdel.$(O) : \
638 $(EMACS_ROOT)/src/s/ms-w32.h \
639 $(EMACS_ROOT)/src/m/intel386.h \
640 $(EMACS_ROOT)/src/config.h \
641 $(SRC)/dispextern.h \
649 $(BLD)/intervals.$(O) : \
651 $(EMACS_ROOT)/src/s/ms-w32.h \
652 $(EMACS_ROOT)/src/m/intel386.h \
653 $(EMACS_ROOT)/src/config.h \
654 $(SRC)/dispextern.h \
662 $(BLD)/keyboard.$(O) : \
664 $(EMACS_ROOT)/src/s/ms-w32.h \
665 $(EMACS_ROOT)/src/m/intel386.h \
666 $(EMACS_ROOT)/src/config.h \
677 $(SRC)/dispextern.h \
680 $(SRC)/blockinput.h \
683 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
684 $(EMACS_ROOT)/nt/inc/sys/file.h \
693 $(BLD)/keymap.$(O) : \
695 $(EMACS_ROOT)/src/s/ms-w32.h \
696 $(EMACS_ROOT)/src/m/intel386.h \
697 $(EMACS_ROOT)/src/config.h \
704 $(BLD)/lastfile.$(O) : \
706 $(EMACS_ROOT)/src/s/ms-w32.h \
707 $(EMACS_ROOT)/src/m/intel386.h \
708 $(EMACS_ROOT)/src/config.h
710 $(BLD)/lread.$(O) : \
712 $(EMACS_ROOT)/src/s/ms-w32.h \
713 $(EMACS_ROOT)/src/m/intel386.h \
714 $(EMACS_ROOT)/src/config.h \
715 $(EMACS_ROOT)/nt/inc/sys/file.h \
717 $(EMACS_ROOT)/src/epaths.h \
723 $(BLD)/macros.$(O) : \
725 $(EMACS_ROOT)/src/s/ms-w32.h \
726 $(EMACS_ROOT)/src/m/intel386.h \
727 $(EMACS_ROOT)/src/config.h \
733 $(BLD)/marker.$(O) : \
735 $(EMACS_ROOT)/src/s/ms-w32.h \
736 $(EMACS_ROOT)/src/m/intel386.h \
737 $(EMACS_ROOT)/src/config.h \
740 $(BLD)/minibuf.$(O) : \
742 $(EMACS_ROOT)/src/s/ms-w32.h \
743 $(EMACS_ROOT)/src/m/intel386.h \
744 $(EMACS_ROOT)/src/config.h \
747 $(SRC)/dispextern.h \
753 $(BLD)/mocklisp.$(O) : \
755 $(EMACS_ROOT)/src/s/ms-w32.h \
756 $(EMACS_ROOT)/src/m/intel386.h \
757 $(EMACS_ROOT)/src/config.h \
764 $(SRC)/m/intel386.h \
766 $(EMACS_ROOT)/nt/inc/pwd.h \
769 $(BLD)/w32heap.$(O) : \
773 $(SRC)/m/intel386.h \
776 $(BLD)/w32inevt.$(O) : \
779 $(SRC)/m/intel386.h \
782 $(SRC)/blockinput.h \
788 $(BLD)/w32proc.$(O) : \
791 $(SRC)/m/intel386.h \
798 $(BLD)/w32console.$(O) : \
799 $(SRC)/w32console.c \
801 $(SRC)/m/intel386.h \
808 $(BLD)/prefix-args.$(O) : \
811 $(BLD)/print.$(O) : \
813 $(EMACS_ROOT)/src/s/ms-w32.h \
814 $(EMACS_ROOT)/src/m/intel386.h \
815 $(EMACS_ROOT)/src/config.h \
821 $(SRC)/dispextern.h \
826 $(BLD)/process.$(O) : \
828 $(EMACS_ROOT)/src/s/ms-w32.h \
829 $(EMACS_ROOT)/src/m/intel386.h \
830 $(EMACS_ROOT)/src/config.h \
831 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
832 $(EMACS_ROOT)/nt/inc/sys/file.h \
849 $(BLD)/ralloc.$(O) : \
851 $(EMACS_ROOT)/src/s/ms-w32.h \
852 $(EMACS_ROOT)/src/m/intel386.h \
853 $(EMACS_ROOT)/src/config.h \
855 $(SRC)/m/intel386.h \
857 $(EMACS_ROOT)/nt/inc/sys/param.h \
860 $(BLD)/regex.$(O) : \
862 $(EMACS_ROOT)/src/s/ms-w32.h \
863 $(EMACS_ROOT)/src/m/intel386.h \
864 $(EMACS_ROOT)/src/config.h \
866 $(SRC)/m/intel386.h \
872 $(BLD)/region-cache.$(O) : \
873 $(SRC)/region-cache.c \
874 $(EMACS_ROOT)/src/s/ms-w32.h \
875 $(EMACS_ROOT)/src/m/intel386.h \
876 $(EMACS_ROOT)/src/config.h \
878 $(SRC)/region-cache.h
880 $(BLD)/scroll.$(O) : \
882 $(EMACS_ROOT)/src/s/ms-w32.h \
883 $(EMACS_ROOT)/src/m/intel386.h \
884 $(EMACS_ROOT)/src/config.h \
886 $(SRC)/dispextern.h \
890 $(BLD)/search.$(O) : \
892 $(EMACS_ROOT)/src/s/ms-w32.h \
893 $(EMACS_ROOT)/src/m/intel386.h \
894 $(EMACS_ROOT)/src/config.h \
898 $(SRC)/blockinput.h \
900 $(SRC)/region-cache.h \
903 $(BLD)/strftime.$(O) : \
905 $(EMACS_ROOT)/src/s/ms-w32.h \
906 $(EMACS_ROOT)/src/m/intel386.h \
907 $(EMACS_ROOT)/src/config.h
909 $(BLD)/sunfns.$(O) : \
911 $(EMACS_ROOT)/src/s/ms-w32.h \
912 $(EMACS_ROOT)/src/m/intel386.h \
913 $(EMACS_ROOT)/src/config.h \
918 $(BLD)/syntax.$(O) : \
920 $(EMACS_ROOT)/src/s/ms-w32.h \
921 $(EMACS_ROOT)/src/m/intel386.h \
922 $(EMACS_ROOT)/src/config.h \
928 $(BLD)/sysdep.$(O) : \
930 $(EMACS_ROOT)/src/s/ms-w32.h \
931 $(EMACS_ROOT)/src/m/intel386.h \
932 $(EMACS_ROOT)/src/config.h \
933 $(SRC)/blockinput.h \
936 $(EMACS_ROOT)/nt/inc/sys/param.h \
937 $(EMACS_ROOT)/nt/inc/sys/file.h \
938 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
939 $(EMACS_ROOT)/nt/inc/sys/file.h \
948 $(SRC)/dispextern.h \
958 $(EMACS_ROOT)/src/acldef.h \
959 $(EMACS_ROOT)/src/chpdef.h
963 $(EMACS_ROOT)/src/s/ms-w32.h \
964 $(EMACS_ROOT)/src/m/intel386.h \
965 $(EMACS_ROOT)/src/config.h \
971 $(SRC)/dispextern.h \
975 $(BLD)/termcap.$(O) : \
977 $(EMACS_ROOT)/src/s/ms-w32.h \
978 $(EMACS_ROOT)/src/m/intel386.h \
979 $(EMACS_ROOT)/src/config.h \
980 $(EMACS_ROOT)/nt/inc/sys/file.h
982 $(BLD)/terminfo.$(O) : \
985 $(BLD)/textprop.$(O) : \
987 $(EMACS_ROOT)/src/s/ms-w32.h \
988 $(EMACS_ROOT)/src/m/intel386.h \
989 $(EMACS_ROOT)/src/config.h \
990 $(SRC)/dispextern.h \
997 $(BLD)/tparam.$(O) : \
999 $(EMACS_ROOT)/src/s/ms-w32.h \
1000 $(EMACS_ROOT)/src/m/intel386.h \
1001 $(EMACS_ROOT)/src/config.h
1003 $(BLD)/undo.$(O) : \
1005 $(EMACS_ROOT)/src/s/ms-w32.h \
1006 $(EMACS_ROOT)/src/m/intel386.h \
1007 $(EMACS_ROOT)/src/config.h \
1011 $(BLD)/unexw32.$(O) : \
1013 $(EMACS_ROOT)/src/s/ms-w32.h \
1014 $(EMACS_ROOT)/src/m/intel386.h \
1015 $(EMACS_ROOT)/src/config.h \
1018 $(BLD)/vm-limit.$(O) : \
1020 $(EMACS_ROOT)/src/s/ms-w32.h \
1021 $(EMACS_ROOT)/src/m/intel386.h \
1022 $(EMACS_ROOT)/src/config.h \
1025 $(BLD)/widget.$(O) : \
1027 $(EMACS_ROOT)/src/s/ms-w32.h \
1028 $(EMACS_ROOT)/src/m/intel386.h \
1029 $(EMACS_ROOT)/src/config.h \
1032 $(SRC)/dispextern.h \
1037 $(BLD)/window.$(O) : \
1039 $(EMACS_ROOT)/src/s/ms-w32.h \
1040 $(EMACS_ROOT)/src/m/intel386.h \
1041 $(EMACS_ROOT)/src/config.h \
1052 $(BLD)/xdisp.$(O) : \
1054 $(EMACS_ROOT)/src/s/ms-w32.h \
1055 $(EMACS_ROOT)/src/m/intel386.h \
1056 $(EMACS_ROOT)/src/config.h \
1065 $(SRC)/termhooks.h \
1066 $(SRC)/dispextern.h \
1068 $(SRC)/intervals.h \
1071 $(BLD)/xfaces.$(O): \
1072 $(EMACS_ROOT)/src/s/ms-w32.h \
1073 $(EMACS_ROOT)/src/m/intel386.h \
1074 $(EMACS_ROOT)/src/config.h \
1081 $(SRC)/dispextern.h \
1083 $(SRC)/blockinput.h \
1085 $(SRC)/intervals.h \
1088 $(BLD)/w32fns.$(O): \
1089 $(EMACS_ROOT)/src/s/ms-w32.h \
1090 $(EMACS_ROOT)/src/m/intel386.h \
1091 $(EMACS_ROOT)/src/config.h \
1093 $(SRC)/x-list-font.c \
1101 $(SRC)/dispextern.h \
1103 $(SRC)/blockinput.h \
1108 $(BLD)/w32menu.$(O): \
1109 $(EMACS_ROOT)/src/s/ms-w32.h \
1110 $(EMACS_ROOT)/src/m/intel386.h \
1111 $(EMACS_ROOT)/src/config.h \
1113 $(SRC)/termhooks.h \
1117 $(SRC)/blockinput.h \
1122 $(BLD)/w32term.$(O): \
1123 $(EMACS_ROOT)/src/s/ms-w32.h \
1124 $(EMACS_ROOT)/src/m/intel386.h \
1125 $(EMACS_ROOT)/src/config.h \
1127 $(SRC)/blockinput.h \
1134 $(SRC)/dispextern.h \
1135 $(SRC)/termhooks.h \
1143 $(SRC)/intervals.h \
1144 $(SRC)/composite.h \
1147 $(BLD)/w32select.$(O): \
1148 $(EMACS_ROOT)/src/s/ms-w32.h \
1149 $(EMACS_ROOT)/src/m/intel386.h \
1150 $(EMACS_ROOT)/src/config.h \
1151 $(SRC)/w32select.c \
1154 $(SRC)/dispextern.h \
1158 $(BLD)/w32reg.$(O): \
1159 $(EMACS_ROOT)/src/s/ms-w32.h \
1160 $(EMACS_ROOT)/src/m/intel386.h \
1161 $(EMACS_ROOT)/src/config.h \
1167 $(BLD)/w32xfns.$(O): \
1168 $(EMACS_ROOT)/src/s/ms-w32.h \
1169 $(EMACS_ROOT)/src/m/intel386.h \
1170 $(EMACS_ROOT)/src/config.h \
1173 $(BLD)/w32bdf.$(O): \
1174 $(EMACS_ROOT)/src/s/ms-w32.h \
1175 $(EMACS_ROOT)/src/m/intel386.h \
1176 $(EMACS_ROOT)/src/config.h \
1180 $(SRC)/dispextern.h \
1182 $(SRC)/blockinput.h \