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) \
101 $(BLD)/termcap.$(O) \
104 $(BLD)/unexw32.$(O) \
107 $(BLD)/casetab.$(O) \
108 $(BLD)/floatfns.$(O) \
110 $(BLD)/gmalloc.$(O) \
111 $(BLD)/intervals.$(O) \
112 $(BLD)/composite.$(O) \
114 $(BLD)/textprop.$(O) \
115 $(BLD)/vm-limit.$(O) \
116 $(BLD)/region-cache.$(O) \
117 $(BLD)/strftime.$(O) \
118 $(BLD)/charset.$(O) \
120 $(BLD)/category.$(O) \
124 WIN32OBJ = $(BLD)/w32term.$(O) \
125 $(BLD)/w32xfns.$(O) \
128 $(BLD)/w32select.$(O) \
129 $(BLD)/w32menu.$(O) \
147 # Build the executable and dump it.
152 # The dumped executable
154 emacs: $(BLD) $(EMACS)
155 $(EMACS): $(DOC) $(TEMACS)
156 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
157 -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
160 # The undumped executable
161 # Note the extra post-link step to insert a static preload heap section.
162 # If preload runs out of memory, increase the last argument to addsection
163 # (it is the preload heap size in MB).
165 temacs: $(BLD) $(TEMACS)
166 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
167 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
168 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
170 bootstrap: bootstrap-emacs
173 # Build a temacs with a sufficiently large PURESIZE to load the
174 # Lisp files from loadup.el in source form.
177 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
180 # Dump an Emacs executable named bootstrap-emacs containing the
181 # files from loadup.el in source form.
183 bootstrap-emacs: bootstrap-temacs
184 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
186 $(CP) $(EMACS) ../bin
189 # Force recompile of files that depend on PURESIZE
192 - $(DEL) $(BLD)/alloc.$(O)
193 - $(DEL) $(BLD)/data.$(O)
194 - $(DEL) $(BLD)/intervals.$(O)
195 - $(DEL) $(BLD)/keyboard.$(O)
196 - $(DEL) $(BLD)/keymap.$(O)
199 # The resource file. NT 3.10 requires the use of cvtres; even though
200 # it is not necessary on later versions, it is still ok to use it.
202 $(TRES): ../nt/emacs.rc
203 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
206 # Build the library. Split up the build into two phases...otherwise we
207 # run out of command line space.
211 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
214 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
215 $(TLIBW32): $(WIN32OBJ)
217 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
220 # Place lastfile.$(O) in its own library so that it can be loaded after
221 # the source libraries but before any system libraries. Doing so defines
222 # the end of Emacs' data section portably across compilers and systems.
224 $(TLASTLIB): $(BLD)/lastfile.$(O)
226 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
229 # Assuming INSTALL_DIR is defined, build and install emacs in it.
232 - mkdir "$(INSTALL_DIR)/bin"
233 $(CP) $(EMACS) $(INSTALL_DIR)/bin
239 - $(DEL) *~ "s/*~" "m/*~"
240 - $(DEL) $(COMPILER_TEMP_FILES)
241 - $(DEL_TREE) $(OBJDIR)
244 - $(DEL) config.h epaths.h
248 - $(DEL_TREE) obj-spd
257 $(BLD)/abbrev.$(O) : \
259 $(EMACS_ROOT)/src/s/ms-w32.h \
260 $(EMACS_ROOT)/src/m/intel386.h \
261 $(EMACS_ROOT)/src/config.h \
265 $(SRC)/dispextern.h \
271 $(BLD)/alloc.$(O) : \
273 $(EMACS_ROOT)/src/s/ms-w32.h \
274 $(EMACS_ROOT)/src/m/intel386.h \
275 $(EMACS_ROOT)/src/config.h \
276 $(SRC)/blockinput.h \
280 $(SRC)/dispextern.h \
291 $(BLD)/alloca.$(O) : \
293 $(EMACS_ROOT)/src/s/ms-w32.h \
294 $(EMACS_ROOT)/src/m/intel386.h \
295 $(EMACS_ROOT)/src/config.h \
297 $(SRC)/m/intel386.h \
300 $(SRC)/blockinput.h \
303 $(BLD)/atimer.$(O) : \
305 $(EMACS_ROOT)/src/s/ms-w32.h \
306 $(EMACS_ROOT)/src/m/intel386.h \
307 $(EMACS_ROOT)/src/config.h \
309 $(SRC)/m/intel386.h \
312 $(SRC)/blockinput.h \
316 $(BLD)/buffer.$(O) : \
318 $(EMACS_ROOT)/nt/inc/sys/param.h \
319 $(EMACS_ROOT)/src/s/ms-w32.h \
320 $(EMACS_ROOT)/src/m/intel386.h \
321 $(EMACS_ROOT)/src/config.h \
322 $(SRC)/blockinput.h \
327 $(SRC)/dispextern.h \
333 $(SRC)/region-cache.h \
338 $(BLD)/bytecode.$(O) : \
340 $(EMACS_ROOT)/src/s/ms-w32.h \
341 $(EMACS_ROOT)/src/m/intel386.h \
342 $(EMACS_ROOT)/src/config.h \
347 $(BLD)/callint.$(O) : \
349 $(EMACS_ROOT)/src/s/ms-w32.h \
350 $(EMACS_ROOT)/src/m/intel386.h \
351 $(EMACS_ROOT)/src/config.h \
354 $(SRC)/dispextern.h \
361 $(BLD)/callproc.$(O) : \
363 $(EMACS_ROOT)/src/s/ms-w32.h \
364 $(EMACS_ROOT)/src/m/intel386.h \
365 $(EMACS_ROOT)/src/config.h \
366 $(EMACS_ROOT)/nt/inc/sys/param.h \
367 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
368 $(EMACS_ROOT)/nt/inc/sys/file.h \
381 $(BLD)/casefiddle.$(O) : \
382 $(SRC)/casefiddle.c \
383 $(EMACS_ROOT)/src/s/ms-w32.h \
384 $(EMACS_ROOT)/src/m/intel386.h \
385 $(EMACS_ROOT)/src/config.h \
393 $(BLD)/casetab.$(O) : \
395 $(EMACS_ROOT)/src/s/ms-w32.h \
396 $(EMACS_ROOT)/src/m/intel386.h \
397 $(EMACS_ROOT)/src/config.h \
401 $(BLD)/category.$(O) : \
403 $(EMACS_ROOT)/src/s/ms-w32.h \
404 $(EMACS_ROOT)/src/m/intel386.h \
405 $(EMACS_ROOT)/src/config.h \
413 $(EMACS_ROOT)/src/s/ms-w32.h \
414 $(EMACS_ROOT)/src/m/intel386.h \
415 $(EMACS_ROOT)/src/config.h \
420 $(BLD)/charset.$(O) : \
422 $(EMACS_ROOT)/src/s/ms-w32.h \
423 $(EMACS_ROOT)/src/m/intel386.h \
424 $(EMACS_ROOT)/src/config.h \
434 $(EMACS_ROOT)/src/s/ms-w32.h \
435 $(EMACS_ROOT)/src/m/intel386.h \
436 $(EMACS_ROOT)/src/config.h \
442 $(EMACS_ROOT)/src/s/ms-w32.h \
443 $(EMACS_ROOT)/src/m/intel386.h \
444 $(EMACS_ROOT)/src/config.h \
448 $(SRC)/dispextern.h \
456 $(BLD)/coding.$(O) : \
458 $(EMACS_ROOT)/src/s/ms-w32.h \
459 $(EMACS_ROOT)/src/m/intel386.h \
460 $(EMACS_ROOT)/src/config.h \
466 $(SRC)/dispextern.h \
471 $(BLD)/composite.$(O) : \
473 $(EMACS_ROOT)/src/s/ms-w32.h \
474 $(EMACS_ROOT)/src/m/intel386.h \
475 $(EMACS_ROOT)/src/config.h \
479 $(SRC)/dispextern.h \
486 $(EMACS_ROOT)/src/s/ms-w32.h \
487 $(EMACS_ROOT)/src/m/intel386.h \
488 $(EMACS_ROOT)/src/config.h \
496 $(BLD)/dired.$(O) : \
498 $(EMACS_ROOT)/src/s/ms-w32.h \
499 $(EMACS_ROOT)/src/m/intel386.h \
500 $(EMACS_ROOT)/src/config.h \
510 $(BLD)/dispnew.$(O) : \
512 $(EMACS_ROOT)/src/s/ms-w32.h \
513 $(EMACS_ROOT)/src/m/intel386.h \
514 $(EMACS_ROOT)/src/config.h \
515 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
516 $(EMACS_ROOT)/nt/inc/sys/file.h \
518 $(SRC)/blockinput.h \
524 $(SRC)/dispextern.h \
543 $(EMACS_ROOT)/src/s/ms-w32.h \
544 $(EMACS_ROOT)/src/m/intel386.h \
545 $(EMACS_ROOT)/src/config.h \
546 $(EMACS_ROOT)/nt/inc/sys/file.h \
552 $(BLD)/doprnt.$(O) : \
554 $(EMACS_ROOT)/src/s/ms-w32.h \
555 $(EMACS_ROOT)/src/m/intel386.h \
556 $(EMACS_ROOT)/src/config.h \
559 $(BLD)/editfns.$(O) : \
561 $(EMACS_ROOT)/src/s/ms-w32.h \
562 $(EMACS_ROOT)/src/m/intel386.h \
563 $(EMACS_ROOT)/src/config.h \
564 $(EMACS_ROOT)/nt/inc/pwd.h \
570 $(SRC)/dispextern.h \
578 $(BLD)/emacs.$(O) : \
580 $(EMACS_ROOT)/src/s/ms-w32.h \
581 $(EMACS_ROOT)/src/m/intel386.h \
582 $(EMACS_ROOT)/src/config.h \
583 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
584 $(EMACS_ROOT)/nt/inc/sys/file.h \
586 $(SRC)/blockinput.h \
590 $(SRC)/dispextern.h \
604 $(EMACS_ROOT)/src/s/ms-w32.h \
605 $(EMACS_ROOT)/src/m/intel386.h \
606 $(EMACS_ROOT)/src/config.h \
608 $(SRC)/blockinput.h \
610 $(SRC)/dispextern.h \
616 $(BLD)/fileio.$(O) : \
618 $(EMACS_ROOT)/src/s/ms-w32.h \
619 $(EMACS_ROOT)/src/m/intel386.h \
620 $(EMACS_ROOT)/src/config.h \
621 $(EMACS_ROOT)/nt/inc/pwd.h \
622 $(EMACS_ROOT)/nt/inc/sys/param.h \
623 $(EMACS_ROOT)/nt/inc/sys/file.h \
630 $(SRC)/dispextern.h \
637 $(BLD)/filelock.$(O) : \
639 $(EMACS_ROOT)/src/s/ms-w32.h \
640 $(EMACS_ROOT)/src/m/intel386.h \
641 $(EMACS_ROOT)/src/config.h \
642 $(EMACS_ROOT)/nt/inc/pwd.h \
643 $(EMACS_ROOT)/nt/inc/sys/file.h \
644 $(EMACS_ROOT)/src/epaths.h \
651 $(BLD)/filemode.$(O) : \
653 $(EMACS_ROOT)/src/s/ms-w32.h \
654 $(EMACS_ROOT)/src/m/intel386.h \
655 $(EMACS_ROOT)/src/config.h \
657 $(SRC)/m/intel386.h \
660 $(BLD)/firstfile.$(O) : \
662 $(EMACS_ROOT)/src/s/ms-w32.h \
663 $(EMACS_ROOT)/src/m/intel386.h \
664 $(EMACS_ROOT)/src/config.h
666 $(BLD)/floatfns.$(O) : \
668 $(EMACS_ROOT)/src/s/ms-w32.h \
669 $(EMACS_ROOT)/src/m/intel386.h \
670 $(EMACS_ROOT)/src/config.h \
675 $(EMACS_ROOT)/src/s/ms-w32.h \
676 $(EMACS_ROOT)/src/m/intel386.h \
677 $(EMACS_ROOT)/src/config.h \
679 $(SRC)/blockinput.h \
686 $(SRC)/dispextern.h \
697 $(BLD)/fontset.$(O) : \
699 $(EMACS_ROOT)/src/s/ms-w32.h \
700 $(EMACS_ROOT)/src/m/intel386.h \
701 $(EMACS_ROOT)/src/config.h \
705 $(SRC)/dispextern.h \
713 $(BLD)/frame.$(O) : \
715 $(EMACS_ROOT)/src/s/ms-w32.h \
716 $(EMACS_ROOT)/src/m/intel386.h \
717 $(EMACS_ROOT)/src/config.h \
719 $(SRC)/blockinput.h \
723 $(SRC)/dispextern.h \
734 $(BLD)/gmalloc.$(O) : \
736 $(EMACS_ROOT)/src/s/ms-w32.h \
737 $(EMACS_ROOT)/src/m/intel386.h \
738 $(EMACS_ROOT)/src/config.h \
739 $(EMACS_ROOT)/nt/inc/sys/param.h \
742 $(BLD)/indent.$(O) : \
744 $(EMACS_ROOT)/src/s/ms-w32.h \
745 $(EMACS_ROOT)/src/m/intel386.h \
746 $(EMACS_ROOT)/src/config.h \
751 $(SRC)/dispextern.h \
757 $(SRC)/region-cache.h \
764 $(BLD)/insdel.$(O) : \
766 $(EMACS_ROOT)/src/s/ms-w32.h \
767 $(EMACS_ROOT)/src/m/intel386.h \
768 $(EMACS_ROOT)/src/config.h \
770 $(SRC)/blockinput.h \
774 $(SRC)/dispextern.h \
776 $(SRC)/region-cache.h \
782 $(BLD)/intervals.$(O) : \
784 $(EMACS_ROOT)/src/s/ms-w32.h \
785 $(EMACS_ROOT)/src/m/intel386.h \
786 $(EMACS_ROOT)/src/config.h \
789 $(SRC)/dispextern.h \
797 $(BLD)/keyboard.$(O) : \
799 $(EMACS_ROOT)/src/s/ms-w32.h \
800 $(EMACS_ROOT)/src/m/intel386.h \
801 $(EMACS_ROOT)/src/config.h \
802 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
803 $(EMACS_ROOT)/nt/inc/sys/file.h \
805 $(SRC)/blockinput.h \
810 $(SRC)/dispextern.h \
830 $(BLD)/keymap.$(O) : \
832 $(EMACS_ROOT)/src/s/ms-w32.h \
833 $(EMACS_ROOT)/src/m/intel386.h \
834 $(EMACS_ROOT)/src/config.h \
836 $(SRC)/blockinput.h \
841 $(SRC)/dispextern.h \
851 $(BLD)/lastfile.$(O) : \
853 $(EMACS_ROOT)/src/s/ms-w32.h \
854 $(EMACS_ROOT)/src/m/intel386.h \
855 $(EMACS_ROOT)/src/config.h
857 $(BLD)/lread.$(O) : \
859 $(EMACS_ROOT)/src/s/ms-w32.h \
860 $(EMACS_ROOT)/src/m/intel386.h \
861 $(EMACS_ROOT)/src/config.h \
862 $(EMACS_ROOT)/nt/inc/sys/file.h \
863 $(EMACS_ROOT)/src/epaths.h \
870 $(SRC)/dispextern.h \
877 $(BLD)/macros.$(O) : \
879 $(EMACS_ROOT)/src/s/ms-w32.h \
880 $(EMACS_ROOT)/src/m/intel386.h \
881 $(EMACS_ROOT)/src/config.h \
884 $(SRC)/dispextern.h \
891 $(BLD)/marker.$(O) : \
893 $(EMACS_ROOT)/src/s/ms-w32.h \
894 $(EMACS_ROOT)/src/m/intel386.h \
895 $(EMACS_ROOT)/src/config.h \
903 $(BLD)/minibuf.$(O) : \
905 $(EMACS_ROOT)/src/s/ms-w32.h \
906 $(EMACS_ROOT)/src/m/intel386.h \
907 $(EMACS_ROOT)/src/config.h \
912 $(SRC)/dispextern.h \
924 $(EMACS_ROOT)/nt/inc/pwd.h \
926 $(SRC)/m/intel386.h \
933 $(BLD)/w32heap.$(O) : \
936 $(SRC)/m/intel386.h \
940 $(BLD)/w32inevt.$(O) : \
943 $(SRC)/m/intel386.h \
946 $(SRC)/blockinput.h \
956 $(BLD)/w32proc.$(O) : \
959 $(SRC)/m/intel386.h \
971 $(BLD)/w32console.$(O) : \
972 $(SRC)/w32console.c \
974 $(SRC)/m/intel386.h \
979 $(SRC)/dispextern.h \
987 $(BLD)/print.$(O) : \
989 $(EMACS_ROOT)/src/s/ms-w32.h \
990 $(EMACS_ROOT)/src/m/intel386.h \
991 $(EMACS_ROOT)/src/config.h \
995 $(SRC)/dispextern.h \
1005 $(BLD)/process.$(O) : \
1007 $(EMACS_ROOT)/src/s/ms-w32.h \
1008 $(EMACS_ROOT)/src/m/intel386.h \
1009 $(EMACS_ROOT)/src/config.h \
1010 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1011 $(EMACS_ROOT)/nt/inc/sys/file.h \
1013 $(SRC)/blockinput.h \
1019 $(SRC)/composite.h \
1020 $(SRC)/dispextern.h \
1024 $(SRC)/sysselect.h \
1025 $(SRC)/syssignal.h \
1029 $(SRC)/termhooks.h \
1035 $(BLD)/ralloc.$(O) : \
1037 $(EMACS_ROOT)/src/s/ms-w32.h \
1038 $(EMACS_ROOT)/src/m/intel386.h \
1039 $(EMACS_ROOT)/src/config.h \
1040 $(EMACS_ROOT)/nt/inc/sys/param.h \
1042 $(SRC)/m/intel386.h \
1044 $(SRC)/getpagesize.h
1046 $(BLD)/regex.$(O) : \
1048 $(EMACS_ROOT)/src/s/ms-w32.h \
1049 $(EMACS_ROOT)/src/m/intel386.h \
1050 $(EMACS_ROOT)/src/config.h \
1052 $(SRC)/m/intel386.h \
1060 $(BLD)/region-cache.$(O) : \
1061 $(SRC)/region-cache.c \
1062 $(EMACS_ROOT)/src/s/ms-w32.h \
1063 $(EMACS_ROOT)/src/m/intel386.h \
1064 $(EMACS_ROOT)/src/config.h \
1066 $(SRC)/region-cache.h
1068 $(BLD)/scroll.$(O) : \
1070 $(EMACS_ROOT)/src/s/ms-w32.h \
1071 $(EMACS_ROOT)/src/m/intel386.h \
1072 $(EMACS_ROOT)/src/config.h \
1073 $(SRC)/dispextern.h \
1081 $(BLD)/search.$(O) : \
1083 $(EMACS_ROOT)/src/s/ms-w32.h \
1084 $(EMACS_ROOT)/src/m/intel386.h \
1085 $(EMACS_ROOT)/src/config.h \
1087 $(SRC)/blockinput.h \
1092 $(SRC)/composite.h \
1093 $(SRC)/dispextern.h \
1094 $(SRC)/intervals.h \
1096 $(SRC)/region-cache.h \
1102 $(BLD)/sound.$(O) : \
1105 $(SRC)/dispextern.h \
1109 $(BLD)/strftime.$(O) : \
1111 $(EMACS_ROOT)/src/s/ms-w32.h \
1112 $(EMACS_ROOT)/src/m/intel386.h \
1113 $(EMACS_ROOT)/src/config.h
1115 $(BLD)/syntax.$(O) : \
1117 $(EMACS_ROOT)/src/s/ms-w32.h \
1118 $(EMACS_ROOT)/src/m/intel386.h \
1119 $(EMACS_ROOT)/src/config.h \
1124 $(SRC)/composite.h \
1125 $(SRC)/dispextern.h \
1126 $(SRC)/intervals.h \
1132 $(BLD)/sysdep.$(O) : \
1134 $(EMACS_ROOT)/src/s/ms-w32.h \
1135 $(EMACS_ROOT)/src/m/intel386.h \
1136 $(EMACS_ROOT)/src/config.h \
1137 $(EMACS_ROOT)/nt/inc/sys/param.h \
1138 $(EMACS_ROOT)/nt/inc/sys/file.h \
1139 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1140 $(EMACS_ROOT)/nt/inc/sys/file.h \
1142 $(SRC)/blockinput.h \
1143 $(SRC)/dispextern.h \
1148 $(SRC)/sysselect.h \
1149 $(SRC)/syssignal.h \
1154 $(SRC)/termhooks.h \
1160 $(BLD)/term.$(O) : \
1162 $(EMACS_ROOT)/src/s/ms-w32.h \
1163 $(EMACS_ROOT)/src/m/intel386.h \
1164 $(EMACS_ROOT)/src/config.h \
1169 $(SRC)/dispextern.h \
1175 $(SRC)/termhooks.h \
1181 $(BLD)/termcap.$(O) : \
1183 $(EMACS_ROOT)/src/s/ms-w32.h \
1184 $(EMACS_ROOT)/src/m/intel386.h \
1185 $(EMACS_ROOT)/src/config.h \
1186 $(EMACS_ROOT)/nt/inc/sys/file.h
1188 $(BLD)/textprop.$(O) : \
1190 $(EMACS_ROOT)/src/s/ms-w32.h \
1191 $(EMACS_ROOT)/src/m/intel386.h \
1192 $(EMACS_ROOT)/src/config.h \
1194 $(SRC)/composite.h \
1195 $(SRC)/dispextern.h \
1196 $(SRC)/intervals.h \
1201 $(BLD)/tparam.$(O) : \
1203 $(EMACS_ROOT)/src/s/ms-w32.h \
1204 $(EMACS_ROOT)/src/m/intel386.h \
1205 $(EMACS_ROOT)/src/config.h
1207 $(BLD)/undo.$(O) : \
1209 $(EMACS_ROOT)/src/s/ms-w32.h \
1210 $(EMACS_ROOT)/src/m/intel386.h \
1211 $(EMACS_ROOT)/src/config.h \
1215 $(BLD)/unexw32.$(O) : \
1217 $(EMACS_ROOT)/src/s/ms-w32.h \
1218 $(EMACS_ROOT)/src/m/intel386.h \
1219 $(EMACS_ROOT)/src/config.h \
1222 $(BLD)/vm-limit.$(O) : \
1224 $(EMACS_ROOT)/src/s/ms-w32.h \
1225 $(EMACS_ROOT)/src/m/intel386.h \
1226 $(EMACS_ROOT)/src/config.h \
1229 $(BLD)/window.$(O) : \
1231 $(EMACS_ROOT)/src/s/ms-w32.h \
1232 $(EMACS_ROOT)/src/m/intel386.h \
1233 $(EMACS_ROOT)/src/config.h \
1235 $(SRC)/blockinput.h \
1238 $(SRC)/composite.h \
1239 $(SRC)/dispextern.h \
1243 $(SRC)/intervals.h \
1253 $(BLD)/xdisp.$(O) : \
1255 $(EMACS_ROOT)/src/s/ms-w32.h \
1256 $(EMACS_ROOT)/src/m/intel386.h \
1257 $(EMACS_ROOT)/src/config.h \
1259 $(SRC)/blockinput.h \
1265 $(SRC)/composite.h \
1266 $(SRC)/dispextern.h \
1271 $(SRC)/intervals.h \
1276 $(SRC)/region-cache.h \
1279 $(SRC)/termhooks.h \
1285 $(BLD)/xfaces.$(O): \
1287 $(EMACS_ROOT)/src/s/ms-w32.h \
1288 $(EMACS_ROOT)/src/m/intel386.h \
1289 $(EMACS_ROOT)/src/config.h \
1291 $(SRC)/blockinput.h \
1294 $(SRC)/composite.h \
1295 $(SRC)/dispextern.h \
1298 $(SRC)/intervals.h \
1306 $(BLD)/w32fns.$(O): \
1308 $(EMACS_ROOT)/src/s/ms-w32.h \
1309 $(EMACS_ROOT)/src/m/intel386.h \
1310 $(EMACS_ROOT)/src/config.h \
1312 $(SRC)/blockinput.h \
1317 $(SRC)/composite.h \
1318 $(SRC)/dispextern.h \
1322 $(SRC)/intervals.h \
1325 $(SRC)/termhooks.h \
1332 $(BLD)/w32menu.$(O): \
1334 $(EMACS_ROOT)/src/s/ms-w32.h \
1335 $(EMACS_ROOT)/src/m/intel386.h \
1336 $(EMACS_ROOT)/src/config.h \
1338 $(SRC)/blockinput.h \
1342 $(SRC)/dispextern.h \
1347 $(SRC)/termhooks.h \
1353 $(BLD)/w32term.$(O): \
1355 $(EMACS_ROOT)/src/s/ms-w32.h \
1356 $(EMACS_ROOT)/src/m/intel386.h \
1357 $(EMACS_ROOT)/src/config.h \
1359 $(SRC)/blockinput.h \
1364 $(SRC)/composite.h \
1365 $(SRC)/dispextern.h \
1370 $(SRC)/intervals.h \
1376 $(SRC)/termhooks.h \
1384 $(BLD)/w32select.$(O): \
1385 $(SRC)/w32select.c \
1386 $(EMACS_ROOT)/src/s/ms-w32.h \
1387 $(EMACS_ROOT)/src/m/intel386.h \
1388 $(EMACS_ROOT)/src/config.h \
1390 $(SRC)/blockinput.h \
1395 $(SRC)/composite.h \
1396 $(SRC)/dispextern.h \
1404 $(BLD)/w32reg.$(O): \
1406 $(EMACS_ROOT)/src/s/ms-w32.h \
1407 $(EMACS_ROOT)/src/m/intel386.h \
1408 $(EMACS_ROOT)/src/config.h \
1410 $(SRC)/blockinput.h \
1416 $(BLD)/w32xfns.$(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 \
1432 $(BLD)/w32bdf.$(O): \
1434 $(EMACS_ROOT)/src/s/ms-w32.h \
1435 $(EMACS_ROOT)/src/m/intel386.h \
1436 $(EMACS_ROOT)/src/config.h \
1438 $(SRC)/blockinput.h \
1440 $(SRC)/dispextern.h \