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.
26 # Set EMACSLOADPATH correctly (in case already defined in environment).
27 EMACSLOADPATH=$(CURDIR)/../lisp
30 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
31 # the emacs source tree.
33 LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
35 EMACS = $(BLD)/emacs.exe
36 TEMACS = $(BLD)/temacs.exe
37 TEMACS_TMP = $(BLD)/temacs.bin
38 TLIB0 = $(BLD)/temacs0.$(A)
39 TLIB1 = $(BLD)/temacs1.$(A)
40 TLIBW32 = $(BLD)/temacw32.$(A)
41 TOBJ = $(BLD)/firstfile.$(O)
42 TRES = $(BLD)/emacs.res
43 TLASTLIB = $(BLD)/lastfile.$(A)
45 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
48 # Split up the objects into two sets so that we don't run out of
49 # command line space when we link them into a library.
51 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
52 # as the "main" object file when linking.
54 OBJ0 = $(BLD)/emacs.$(O)
56 OBJ1 = $(BLD)/abbrev.$(O) \
61 $(BLD)/bytecode.$(O) \
63 $(BLD)/callproc.$(O) \
64 $(BLD)/casefiddle.$(O) \
75 $(BLD)/filelock.$(O) \
76 $(BLD)/filemode.$(O) \
80 $(BLD)/keyboard.$(O) \
89 $(BLD)/w32inevt.$(O) \
91 $(BLD)/w32console.$(O) \
100 $(BLD)/termcap.$(O) \
103 $(BLD)/unexw32.$(O) \
106 $(BLD)/casetab.$(O) \
107 $(BLD)/floatfns.$(O) \
109 $(BLD)/gmalloc.$(O) \
110 $(BLD)/intervals.$(O) \
111 $(BLD)/composite.$(O) \
113 $(BLD)/textprop.$(O) \
114 $(BLD)/vm-limit.$(O) \
115 $(BLD)/region-cache.$(O) \
116 $(BLD)/strftime.$(O) \
117 $(BLD)/charset.$(O) \
119 $(BLD)/category.$(O) \
123 WIN32OBJ = $(BLD)/w32term.$(O) \
124 $(BLD)/w32xfns.$(O) \
127 $(BLD)/w32select.$(O) \
128 $(BLD)/w32menu.$(O) \
145 # Build the executable and dump it.
150 # The dumped executable
152 emacs: $(BLD) $(EMACS)
153 $(EMACS): $(DOC) $(TEMACS)
154 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
155 -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
158 # The undumped executable
159 # Note the extra post-link step to insert a static preload heap section.
160 # If preload runs out of memory, increase the last argument to addsection
161 # (it is the preload heap size in MB).
163 temacs: $(BLD) $(TEMACS)
164 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
165 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
166 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
168 bootstrap: bootstrap-emacs
171 # Build a temacs with a sufficiently large PURESIZE to load the
172 # Lisp files from loadup.el in source form.
175 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
178 # Dump an Emacs executable named bootstrap-emacs containing the
179 # files from loadup.el in source form.
181 bootstrap-emacs: bootstrap-temacs
182 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
184 $(CP) $(EMACS) ../bin
187 # Force recompile of files that depend on PURESIZE
190 - $(DEL) $(BLD)/alloc.$(O)
191 - $(DEL) $(BLD)/data.$(O)
192 - $(DEL) $(BLD)/intervals.$(O)
193 - $(DEL) $(BLD)/keyboard.$(O)
194 - $(DEL) $(BLD)/keymap.$(O)
197 # The resource file. NT 3.10 requires the use of cvtres; even though
198 # it is not necessary on later versions, it is still ok to use it.
200 $(TRES): ../nt/emacs.rc
201 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
204 # Build the library. Split up the build into two phases...otherwise we
205 # run out of command line space.
209 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
212 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
213 $(TLIBW32): $(WIN32OBJ)
215 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
218 # Place lastfile.$(O) in its own library so that it can be loaded after
219 # the source libraries but before any system libraries. Doing so defines
220 # the end of Emacs' data section portably across compilers and systems.
222 $(TLASTLIB): $(BLD)/lastfile.$(O)
224 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
227 # Assuming INSTALL_DIR is defined, build and install emacs in it.
230 - mkdir "$(INSTALL_DIR)/bin"
231 $(CP) $(EMACS) $(INSTALL_DIR)/bin
237 - $(DEL) *~ "s/*~" "m/*~"
238 - $(DEL) $(COMPILER_TEMP_FILES)
239 - $(DEL_TREE) $(OBJDIR)
242 - $(DEL) config.h epaths.h
246 - $(DEL_TREE) obj-spd
255 $(BLD)/abbrev.$(O) : \
257 $(EMACS_ROOT)/src/s/ms-w32.h \
258 $(EMACS_ROOT)/src/m/intel386.h \
259 $(EMACS_ROOT)/src/config.h \
263 $(SRC)/dispextern.h \
269 $(BLD)/alloc.$(O) : \
271 $(EMACS_ROOT)/src/s/ms-w32.h \
272 $(EMACS_ROOT)/src/m/intel386.h \
273 $(EMACS_ROOT)/src/config.h \
274 $(SRC)/blockinput.h \
278 $(SRC)/dispextern.h \
289 $(BLD)/alloca.$(O) : \
291 $(EMACS_ROOT)/src/s/ms-w32.h \
292 $(EMACS_ROOT)/src/m/intel386.h \
293 $(EMACS_ROOT)/src/config.h \
295 $(SRC)/m/intel386.h \
298 $(SRC)/blockinput.h \
301 $(BLD)/atimer.$(O) : \
303 $(EMACS_ROOT)/src/s/ms-w32.h \
304 $(EMACS_ROOT)/src/m/intel386.h \
305 $(EMACS_ROOT)/src/config.h \
307 $(SRC)/m/intel386.h \
310 $(SRC)/blockinput.h \
314 $(BLD)/buffer.$(O) : \
316 $(EMACS_ROOT)/nt/inc/sys/param.h \
317 $(EMACS_ROOT)/src/s/ms-w32.h \
318 $(EMACS_ROOT)/src/m/intel386.h \
319 $(EMACS_ROOT)/src/config.h \
320 $(SRC)/blockinput.h \
325 $(SRC)/dispextern.h \
331 $(SRC)/region-cache.h \
336 $(BLD)/bytecode.$(O) : \
338 $(EMACS_ROOT)/src/s/ms-w32.h \
339 $(EMACS_ROOT)/src/m/intel386.h \
340 $(EMACS_ROOT)/src/config.h \
345 $(BLD)/callint.$(O) : \
347 $(EMACS_ROOT)/src/s/ms-w32.h \
348 $(EMACS_ROOT)/src/m/intel386.h \
349 $(EMACS_ROOT)/src/config.h \
352 $(SRC)/dispextern.h \
359 $(BLD)/callproc.$(O) : \
361 $(EMACS_ROOT)/src/s/ms-w32.h \
362 $(EMACS_ROOT)/src/m/intel386.h \
363 $(EMACS_ROOT)/src/config.h \
364 $(EMACS_ROOT)/nt/inc/sys/param.h \
365 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
366 $(EMACS_ROOT)/nt/inc/sys/file.h \
379 $(BLD)/casefiddle.$(O) : \
380 $(SRC)/casefiddle.c \
381 $(EMACS_ROOT)/src/s/ms-w32.h \
382 $(EMACS_ROOT)/src/m/intel386.h \
383 $(EMACS_ROOT)/src/config.h \
391 $(BLD)/casetab.$(O) : \
393 $(EMACS_ROOT)/src/s/ms-w32.h \
394 $(EMACS_ROOT)/src/m/intel386.h \
395 $(EMACS_ROOT)/src/config.h \
399 $(BLD)/category.$(O) : \
401 $(EMACS_ROOT)/src/s/ms-w32.h \
402 $(EMACS_ROOT)/src/m/intel386.h \
403 $(EMACS_ROOT)/src/config.h \
411 $(EMACS_ROOT)/src/s/ms-w32.h \
412 $(EMACS_ROOT)/src/m/intel386.h \
413 $(EMACS_ROOT)/src/config.h \
418 $(BLD)/charset.$(O) : \
420 $(EMACS_ROOT)/src/s/ms-w32.h \
421 $(EMACS_ROOT)/src/m/intel386.h \
422 $(EMACS_ROOT)/src/config.h \
432 $(EMACS_ROOT)/src/s/ms-w32.h \
433 $(EMACS_ROOT)/src/m/intel386.h \
434 $(EMACS_ROOT)/src/config.h \
440 $(EMACS_ROOT)/src/s/ms-w32.h \
441 $(EMACS_ROOT)/src/m/intel386.h \
442 $(EMACS_ROOT)/src/config.h \
446 $(SRC)/dispextern.h \
454 $(BLD)/coding.$(O) : \
456 $(EMACS_ROOT)/src/s/ms-w32.h \
457 $(EMACS_ROOT)/src/m/intel386.h \
458 $(EMACS_ROOT)/src/config.h \
464 $(SRC)/dispextern.h \
469 $(BLD)/composite.$(O) : \
471 $(EMACS_ROOT)/src/s/ms-w32.h \
472 $(EMACS_ROOT)/src/m/intel386.h \
473 $(EMACS_ROOT)/src/config.h \
477 $(SRC)/dispextern.h \
484 $(EMACS_ROOT)/src/s/ms-w32.h \
485 $(EMACS_ROOT)/src/m/intel386.h \
486 $(EMACS_ROOT)/src/config.h \
494 $(BLD)/dired.$(O) : \
496 $(EMACS_ROOT)/src/s/ms-w32.h \
497 $(EMACS_ROOT)/src/m/intel386.h \
498 $(EMACS_ROOT)/src/config.h \
508 $(BLD)/dispnew.$(O) : \
510 $(EMACS_ROOT)/src/s/ms-w32.h \
511 $(EMACS_ROOT)/src/m/intel386.h \
512 $(EMACS_ROOT)/src/config.h \
513 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
514 $(EMACS_ROOT)/nt/inc/sys/file.h \
516 $(SRC)/blockinput.h \
522 $(SRC)/dispextern.h \
541 $(EMACS_ROOT)/src/s/ms-w32.h \
542 $(EMACS_ROOT)/src/m/intel386.h \
543 $(EMACS_ROOT)/src/config.h \
544 $(EMACS_ROOT)/nt/inc/sys/file.h \
550 $(BLD)/doprnt.$(O) : \
552 $(EMACS_ROOT)/src/s/ms-w32.h \
553 $(EMACS_ROOT)/src/m/intel386.h \
554 $(EMACS_ROOT)/src/config.h \
557 $(BLD)/editfns.$(O) : \
559 $(EMACS_ROOT)/src/s/ms-w32.h \
560 $(EMACS_ROOT)/src/m/intel386.h \
561 $(EMACS_ROOT)/src/config.h \
562 $(EMACS_ROOT)/nt/inc/pwd.h \
568 $(SRC)/dispextern.h \
576 $(BLD)/emacs.$(O) : \
578 $(EMACS_ROOT)/src/s/ms-w32.h \
579 $(EMACS_ROOT)/src/m/intel386.h \
580 $(EMACS_ROOT)/src/config.h \
581 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
582 $(EMACS_ROOT)/nt/inc/sys/file.h \
584 $(SRC)/blockinput.h \
588 $(SRC)/dispextern.h \
602 $(EMACS_ROOT)/src/s/ms-w32.h \
603 $(EMACS_ROOT)/src/m/intel386.h \
604 $(EMACS_ROOT)/src/config.h \
606 $(SRC)/blockinput.h \
608 $(SRC)/dispextern.h \
614 $(BLD)/fileio.$(O) : \
616 $(EMACS_ROOT)/src/s/ms-w32.h \
617 $(EMACS_ROOT)/src/m/intel386.h \
618 $(EMACS_ROOT)/src/config.h \
619 $(EMACS_ROOT)/nt/inc/pwd.h \
620 $(EMACS_ROOT)/nt/inc/sys/param.h \
621 $(EMACS_ROOT)/nt/inc/sys/file.h \
628 $(SRC)/dispextern.h \
635 $(BLD)/filelock.$(O) : \
637 $(EMACS_ROOT)/src/s/ms-w32.h \
638 $(EMACS_ROOT)/src/m/intel386.h \
639 $(EMACS_ROOT)/src/config.h \
640 $(EMACS_ROOT)/nt/inc/pwd.h \
641 $(EMACS_ROOT)/nt/inc/sys/file.h \
642 $(EMACS_ROOT)/src/epaths.h \
649 $(BLD)/filemode.$(O) : \
651 $(EMACS_ROOT)/src/s/ms-w32.h \
652 $(EMACS_ROOT)/src/m/intel386.h \
653 $(EMACS_ROOT)/src/config.h \
655 $(SRC)/m/intel386.h \
658 $(BLD)/firstfile.$(O) : \
660 $(EMACS_ROOT)/src/s/ms-w32.h \
661 $(EMACS_ROOT)/src/m/intel386.h \
662 $(EMACS_ROOT)/src/config.h
664 $(BLD)/floatfns.$(O) : \
666 $(EMACS_ROOT)/src/s/ms-w32.h \
667 $(EMACS_ROOT)/src/m/intel386.h \
668 $(EMACS_ROOT)/src/config.h \
673 $(EMACS_ROOT)/src/s/ms-w32.h \
674 $(EMACS_ROOT)/src/m/intel386.h \
675 $(EMACS_ROOT)/src/config.h \
677 $(SRC)/blockinput.h \
684 $(SRC)/dispextern.h \
695 $(BLD)/fontset.$(O) : \
697 $(EMACS_ROOT)/src/s/ms-w32.h \
698 $(EMACS_ROOT)/src/m/intel386.h \
699 $(EMACS_ROOT)/src/config.h \
703 $(SRC)/dispextern.h \
711 $(BLD)/frame.$(O) : \
713 $(EMACS_ROOT)/src/s/ms-w32.h \
714 $(EMACS_ROOT)/src/m/intel386.h \
715 $(EMACS_ROOT)/src/config.h \
719 $(SRC)/dispextern.h \
729 $(BLD)/gmalloc.$(O) : \
731 $(EMACS_ROOT)/src/s/ms-w32.h \
732 $(EMACS_ROOT)/src/m/intel386.h \
733 $(EMACS_ROOT)/src/config.h \
734 $(EMACS_ROOT)/nt/inc/sys/param.h \
737 $(BLD)/indent.$(O) : \
739 $(EMACS_ROOT)/src/s/ms-w32.h \
740 $(EMACS_ROOT)/src/m/intel386.h \
741 $(EMACS_ROOT)/src/config.h \
746 $(SRC)/dispextern.h \
752 $(SRC)/region-cache.h \
759 $(BLD)/insdel.$(O) : \
761 $(EMACS_ROOT)/src/s/ms-w32.h \
762 $(EMACS_ROOT)/src/m/intel386.h \
763 $(EMACS_ROOT)/src/config.h \
765 $(SRC)/blockinput.h \
769 $(SRC)/dispextern.h \
771 $(SRC)/region-cache.h \
777 $(BLD)/intervals.$(O) : \
779 $(EMACS_ROOT)/src/s/ms-w32.h \
780 $(EMACS_ROOT)/src/m/intel386.h \
781 $(EMACS_ROOT)/src/config.h \
784 $(SRC)/dispextern.h \
792 $(BLD)/keyboard.$(O) : \
794 $(EMACS_ROOT)/src/s/ms-w32.h \
795 $(EMACS_ROOT)/src/m/intel386.h \
796 $(EMACS_ROOT)/src/config.h \
797 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
798 $(EMACS_ROOT)/nt/inc/sys/file.h \
800 $(SRC)/blockinput.h \
805 $(SRC)/dispextern.h \
825 $(BLD)/keymap.$(O) : \
827 $(EMACS_ROOT)/src/s/ms-w32.h \
828 $(EMACS_ROOT)/src/m/intel386.h \
829 $(EMACS_ROOT)/src/config.h \
831 $(SRC)/blockinput.h \
836 $(SRC)/dispextern.h \
846 $(BLD)/lastfile.$(O) : \
848 $(EMACS_ROOT)/src/s/ms-w32.h \
849 $(EMACS_ROOT)/src/m/intel386.h \
850 $(EMACS_ROOT)/src/config.h
852 $(BLD)/lread.$(O) : \
854 $(EMACS_ROOT)/src/s/ms-w32.h \
855 $(EMACS_ROOT)/src/m/intel386.h \
856 $(EMACS_ROOT)/src/config.h \
857 $(EMACS_ROOT)/nt/inc/sys/file.h \
858 $(EMACS_ROOT)/src/epaths.h \
865 $(SRC)/dispextern.h \
872 $(BLD)/macros.$(O) : \
874 $(EMACS_ROOT)/src/s/ms-w32.h \
875 $(EMACS_ROOT)/src/m/intel386.h \
876 $(EMACS_ROOT)/src/config.h \
879 $(SRC)/dispextern.h \
886 $(BLD)/marker.$(O) : \
888 $(EMACS_ROOT)/src/s/ms-w32.h \
889 $(EMACS_ROOT)/src/m/intel386.h \
890 $(EMACS_ROOT)/src/config.h \
898 $(BLD)/minibuf.$(O) : \
900 $(EMACS_ROOT)/src/s/ms-w32.h \
901 $(EMACS_ROOT)/src/m/intel386.h \
902 $(EMACS_ROOT)/src/config.h \
907 $(SRC)/dispextern.h \
919 $(EMACS_ROOT)/nt/inc/pwd.h \
921 $(SRC)/m/intel386.h \
928 $(BLD)/w32heap.$(O) : \
931 $(SRC)/m/intel386.h \
935 $(BLD)/w32inevt.$(O) : \
938 $(SRC)/m/intel386.h \
941 $(SRC)/blockinput.h \
951 $(BLD)/w32proc.$(O) : \
954 $(SRC)/m/intel386.h \
966 $(BLD)/w32console.$(O) : \
967 $(SRC)/w32console.c \
969 $(SRC)/m/intel386.h \
974 $(SRC)/dispextern.h \
982 $(BLD)/print.$(O) : \
984 $(EMACS_ROOT)/src/s/ms-w32.h \
985 $(EMACS_ROOT)/src/m/intel386.h \
986 $(EMACS_ROOT)/src/config.h \
990 $(SRC)/dispextern.h \
1000 $(BLD)/process.$(O) : \
1002 $(EMACS_ROOT)/src/s/ms-w32.h \
1003 $(EMACS_ROOT)/src/m/intel386.h \
1004 $(EMACS_ROOT)/src/config.h \
1005 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1006 $(EMACS_ROOT)/nt/inc/sys/file.h \
1008 $(SRC)/blockinput.h \
1014 $(SRC)/composite.h \
1015 $(SRC)/dispextern.h \
1019 $(SRC)/sysselect.h \
1020 $(SRC)/syssignal.h \
1024 $(SRC)/termhooks.h \
1030 $(BLD)/ralloc.$(O) : \
1032 $(EMACS_ROOT)/src/s/ms-w32.h \
1033 $(EMACS_ROOT)/src/m/intel386.h \
1034 $(EMACS_ROOT)/src/config.h \
1035 $(EMACS_ROOT)/nt/inc/sys/param.h \
1037 $(SRC)/m/intel386.h \
1039 $(SRC)/getpagesize.h
1041 $(BLD)/regex.$(O) : \
1043 $(EMACS_ROOT)/src/s/ms-w32.h \
1044 $(EMACS_ROOT)/src/m/intel386.h \
1045 $(EMACS_ROOT)/src/config.h \
1047 $(SRC)/m/intel386.h \
1055 $(BLD)/region-cache.$(O) : \
1056 $(SRC)/region-cache.c \
1057 $(EMACS_ROOT)/src/s/ms-w32.h \
1058 $(EMACS_ROOT)/src/m/intel386.h \
1059 $(EMACS_ROOT)/src/config.h \
1061 $(SRC)/region-cache.h
1063 $(BLD)/scroll.$(O) : \
1065 $(EMACS_ROOT)/src/s/ms-w32.h \
1066 $(EMACS_ROOT)/src/m/intel386.h \
1067 $(EMACS_ROOT)/src/config.h \
1068 $(SRC)/dispextern.h \
1076 $(BLD)/search.$(O) : \
1078 $(EMACS_ROOT)/src/s/ms-w32.h \
1079 $(EMACS_ROOT)/src/m/intel386.h \
1080 $(EMACS_ROOT)/src/config.h \
1082 $(SRC)/blockinput.h \
1087 $(SRC)/composite.h \
1088 $(SRC)/dispextern.h \
1089 $(SRC)/intervals.h \
1091 $(SRC)/region-cache.h \
1097 $(BLD)/strftime.$(O) : \
1099 $(EMACS_ROOT)/src/s/ms-w32.h \
1100 $(EMACS_ROOT)/src/m/intel386.h \
1101 $(EMACS_ROOT)/src/config.h
1103 $(BLD)/syntax.$(O) : \
1105 $(EMACS_ROOT)/src/s/ms-w32.h \
1106 $(EMACS_ROOT)/src/m/intel386.h \
1107 $(EMACS_ROOT)/src/config.h \
1112 $(SRC)/composite.h \
1113 $(SRC)/dispextern.h \
1114 $(SRC)/intervals.h \
1120 $(BLD)/sysdep.$(O) : \
1122 $(EMACS_ROOT)/src/s/ms-w32.h \
1123 $(EMACS_ROOT)/src/m/intel386.h \
1124 $(EMACS_ROOT)/src/config.h \
1125 $(EMACS_ROOT)/nt/inc/sys/param.h \
1126 $(EMACS_ROOT)/nt/inc/sys/file.h \
1127 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1128 $(EMACS_ROOT)/nt/inc/sys/file.h \
1130 $(SRC)/blockinput.h \
1131 $(SRC)/dispextern.h \
1136 $(SRC)/sysselect.h \
1137 $(SRC)/syssignal.h \
1142 $(SRC)/termhooks.h \
1148 $(BLD)/term.$(O) : \
1150 $(EMACS_ROOT)/src/s/ms-w32.h \
1151 $(EMACS_ROOT)/src/m/intel386.h \
1152 $(EMACS_ROOT)/src/config.h \
1157 $(SRC)/dispextern.h \
1163 $(SRC)/termhooks.h \
1169 $(BLD)/termcap.$(O) : \
1171 $(EMACS_ROOT)/src/s/ms-w32.h \
1172 $(EMACS_ROOT)/src/m/intel386.h \
1173 $(EMACS_ROOT)/src/config.h \
1174 $(EMACS_ROOT)/nt/inc/sys/file.h
1176 $(BLD)/textprop.$(O) : \
1178 $(EMACS_ROOT)/src/s/ms-w32.h \
1179 $(EMACS_ROOT)/src/m/intel386.h \
1180 $(EMACS_ROOT)/src/config.h \
1182 $(SRC)/composite.h \
1183 $(SRC)/dispextern.h \
1184 $(SRC)/intervals.h \
1189 $(BLD)/tparam.$(O) : \
1191 $(EMACS_ROOT)/src/s/ms-w32.h \
1192 $(EMACS_ROOT)/src/m/intel386.h \
1193 $(EMACS_ROOT)/src/config.h
1195 $(BLD)/undo.$(O) : \
1197 $(EMACS_ROOT)/src/s/ms-w32.h \
1198 $(EMACS_ROOT)/src/m/intel386.h \
1199 $(EMACS_ROOT)/src/config.h \
1203 $(BLD)/unexw32.$(O) : \
1205 $(EMACS_ROOT)/src/s/ms-w32.h \
1206 $(EMACS_ROOT)/src/m/intel386.h \
1207 $(EMACS_ROOT)/src/config.h \
1210 $(BLD)/vm-limit.$(O) : \
1212 $(EMACS_ROOT)/src/s/ms-w32.h \
1213 $(EMACS_ROOT)/src/m/intel386.h \
1214 $(EMACS_ROOT)/src/config.h \
1217 $(BLD)/window.$(O) : \
1219 $(EMACS_ROOT)/src/s/ms-w32.h \
1220 $(EMACS_ROOT)/src/m/intel386.h \
1221 $(EMACS_ROOT)/src/config.h \
1223 $(SRC)/blockinput.h \
1226 $(SRC)/composite.h \
1227 $(SRC)/dispextern.h \
1231 $(SRC)/intervals.h \
1241 $(BLD)/xdisp.$(O) : \
1243 $(EMACS_ROOT)/src/s/ms-w32.h \
1244 $(EMACS_ROOT)/src/m/intel386.h \
1245 $(EMACS_ROOT)/src/config.h \
1251 $(SRC)/composite.h \
1252 $(SRC)/dispextern.h \
1257 $(SRC)/intervals.h \
1261 $(SRC)/region-cache.h \
1263 $(SRC)/termhooks.h \
1269 $(BLD)/xfaces.$(O): \
1271 $(EMACS_ROOT)/src/s/ms-w32.h \
1272 $(EMACS_ROOT)/src/m/intel386.h \
1273 $(EMACS_ROOT)/src/config.h \
1275 $(SRC)/blockinput.h \
1278 $(SRC)/composite.h \
1279 $(SRC)/dispextern.h \
1282 $(SRC)/intervals.h \
1290 $(BLD)/w32fns.$(O): \
1292 $(EMACS_ROOT)/src/s/ms-w32.h \
1293 $(EMACS_ROOT)/src/m/intel386.h \
1294 $(EMACS_ROOT)/src/config.h \
1296 $(SRC)/blockinput.h \
1301 $(SRC)/composite.h \
1302 $(SRC)/dispextern.h \
1306 $(SRC)/intervals.h \
1309 $(SRC)/termhooks.h \
1316 $(BLD)/w32menu.$(O): \
1318 $(EMACS_ROOT)/src/s/ms-w32.h \
1319 $(EMACS_ROOT)/src/m/intel386.h \
1320 $(EMACS_ROOT)/src/config.h \
1322 $(SRC)/blockinput.h \
1326 $(SRC)/dispextern.h \
1331 $(SRC)/termhooks.h \
1337 $(BLD)/w32term.$(O): \
1339 $(EMACS_ROOT)/src/s/ms-w32.h \
1340 $(EMACS_ROOT)/src/m/intel386.h \
1341 $(EMACS_ROOT)/src/config.h \
1343 $(SRC)/blockinput.h \
1348 $(SRC)/composite.h \
1349 $(SRC)/dispextern.h \
1354 $(SRC)/intervals.h \
1360 $(SRC)/termhooks.h \
1368 $(BLD)/w32select.$(O): \
1369 $(SRC)/w32select.c \
1370 $(EMACS_ROOT)/src/s/ms-w32.h \
1371 $(EMACS_ROOT)/src/m/intel386.h \
1372 $(EMACS_ROOT)/src/config.h \
1374 $(SRC)/blockinput.h \
1379 $(SRC)/composite.h \
1380 $(SRC)/dispextern.h \
1388 $(BLD)/w32reg.$(O): \
1390 $(EMACS_ROOT)/src/s/ms-w32.h \
1391 $(EMACS_ROOT)/src/m/intel386.h \
1392 $(EMACS_ROOT)/src/config.h \
1394 $(SRC)/blockinput.h \
1400 $(BLD)/w32xfns.$(O): \
1402 $(EMACS_ROOT)/src/s/ms-w32.h \
1403 $(EMACS_ROOT)/src/m/intel386.h \
1404 $(EMACS_ROOT)/src/config.h \
1406 $(SRC)/blockinput.h \
1416 $(BLD)/w32bdf.$(O): \
1418 $(EMACS_ROOT)/src/s/ms-w32.h \
1419 $(EMACS_ROOT)/src/m/intel386.h \
1420 $(EMACS_ROOT)/src/config.h \
1422 $(SRC)/blockinput.h \
1424 $(SRC)/dispextern.h \