1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 # 2005 Free Software Foundation, Inc.
5 # This file is part of GNU Emacs.
7 # GNU Emacs is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
12 # GNU Emacs is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs; see the file COPYING. If not, write to the
19 # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 # Boston, MA 02110-1301, USA.
27 # Set EMACSLOADPATH correctly (in case already defined in environment).
28 EMACSLOADPATH=$(CURDIR)/../lisp
31 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
32 # the emacs source tree.
34 LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 $(EMACS_EXTRA_C_FLAGS)
36 EMACS = $(BLD)/emacs.exe
37 TEMACS = $(BLD)/temacs.exe
38 TEMACS_TMP = $(BLD)/temacs.bin
39 TLIB0 = $(BLD)/temacs0.$(A)
40 TLIB1 = $(BLD)/temacs1.$(A)
41 TLIBW32 = $(BLD)/temacw32.$(A)
42 TOBJ = $(BLD)/firstfile.$(O)
43 TRES = $(BLD)/emacs.res
44 TLASTLIB = $(BLD)/lastfile.$(A)
46 DOC = $(OBJDIR)/etc/DOC-X
48 FULL_LINK_FLAGS = $(LINK_FLAGS) $(TEMACS_EXTRA_LINK)
51 # Split up the objects into two sets so that we don't run out of
52 # command line space when we link them into a library.
54 # Put emacs.$(O) in a separate lib, since we need to have firstfile.$(O)
55 # as the "main" object file when linking.
57 OBJ0 = $(BLD)/emacs.$(O)
59 OBJ1 = $(BLD)/abbrev.$(O) \
63 $(BLD)/bytecode.$(O) \
65 $(BLD)/callproc.$(O) \
66 $(BLD)/casefiddle.$(O) \
77 $(BLD)/filelock.$(O) \
78 $(BLD)/filemode.$(O) \
82 $(BLD)/keyboard.$(O) \
91 $(BLD)/w32inevt.$(O) \
93 $(BLD)/w32console.$(O) \
103 $(BLD)/termcap.$(O) \
106 $(BLD)/unexw32.$(O) \
109 $(BLD)/casetab.$(O) \
110 $(BLD)/floatfns.$(O) \
112 $(BLD)/gmalloc.$(O) \
113 $(BLD)/intervals.$(O) \
114 $(BLD)/composite.$(O) \
116 $(BLD)/textprop.$(O) \
117 $(BLD)/vm-limit.$(O) \
118 $(BLD)/region-cache.$(O) \
119 $(BLD)/strftime.$(O) \
120 $(BLD)/charset.$(O) \
122 $(BLD)/category.$(O) \
124 $(BLD)/fontset.$(O) \
128 WIN32OBJ = $(BLD)/w32term.$(O) \
129 $(BLD)/w32xfns.$(O) \
132 $(BLD)/w32select.$(O) \
133 $(BLD)/w32menu.$(O) \
152 # Build the executable and dump it.
157 # The dumped executable
159 emacs: $(BLD) $(EMACS)
160 $(EMACS): $(DOC) $(TEMACS)
161 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
162 -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
165 # The undumped executable
166 # Note the extra post-link step to insert a static preload heap section.
167 # If preload runs out of memory, increase the last argument to addsection
168 # (it is the preload heap size in MB).
170 temacs: $(BLD) $(TEMACS)
171 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) \
172 ../nt/$(BLD)/addsection.exe
173 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
174 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
175 echo $(OBJ0) > $(BLD)/buildobj.lst
176 echo $(OBJ1) >> $(BLD)/buildobj.lst
177 echo $(WIN32OBJ) >> $(BLD)/buildobj.lst
179 bootstrap: bootstrap-emacs
182 # Build a temacs with a sufficiently large PURESIZE to load the
183 # Lisp files from loadup.el in source form.
186 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
189 # Dump an Emacs executable named bootstrap-emacs containing the
190 # files from loadup.el in source form.
192 bootstrap-emacs: bootstrap-temacs
193 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
195 $(CP) $(EMACS) ../bin
198 # Force recompile of files that depend on PURESIZE
201 - $(DEL) $(BLD)/alloc.$(O)
202 - $(DEL) $(BLD)/data.$(O)
203 - $(DEL) $(BLD)/intervals.$(O)
204 - $(DEL) $(BLD)/keyboard.$(O)
205 - $(DEL) $(BLD)/keymap.$(O)
208 # The resource file. NT 3.10 requires the use of cvtres; even though
209 # it is not necessary on later versions, it is still ok to use it.
211 $(TRES): ../nt/emacs.rc
212 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
215 # Build the library. Split up the build into two phases...otherwise we
216 # run out of command line space.
220 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
223 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
224 $(TLIBW32): $(WIN32OBJ)
226 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
229 # Place lastfile.$(O) in its own library so that it can be loaded after
230 # the source libraries but before any system libraries. Doing so defines
231 # the end of Emacs' data section portably across compilers and systems.
233 $(TLASTLIB): $(BLD)/lastfile.$(O)
235 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
238 # Assuming INSTALL_DIR is defined, build and install emacs in it.
241 - mkdir "$(INSTALL_DIR)/bin"
242 $(CP) $(EMACS) $(INSTALL_DIR)/bin
248 - $(DEL) *~ "s/*~" "m/*~"
249 - $(DEL) $(COMPILER_TEMP_FILES)
250 - $(DEL_TREE) $(OBJDIR)
253 - $(DEL) config.h epaths.h
257 - $(DEL_TREE) obj-spd
266 $(BLD)/abbrev.$(O) : \
268 $(EMACS_ROOT)/src/s/ms-w32.h \
269 $(EMACS_ROOT)/src/m/intel386.h \
270 $(EMACS_ROOT)/src/config.h \
274 $(SRC)/dispextern.h \
280 $(BLD)/alloc.$(O) : \
282 $(EMACS_ROOT)/src/s/ms-w32.h \
283 $(EMACS_ROOT)/src/m/intel386.h \
284 $(EMACS_ROOT)/src/config.h \
285 $(SRC)/blockinput.h \
289 $(SRC)/dispextern.h \
300 $(BLD)/atimer.$(O) : \
302 $(EMACS_ROOT)/src/s/ms-w32.h \
303 $(EMACS_ROOT)/src/m/intel386.h \
304 $(EMACS_ROOT)/src/config.h \
306 $(SRC)/m/intel386.h \
309 $(SRC)/blockinput.h \
313 $(BLD)/buffer.$(O) : \
315 $(EMACS_ROOT)/nt/inc/sys/param.h \
316 $(EMACS_ROOT)/src/s/ms-w32.h \
317 $(EMACS_ROOT)/src/m/intel386.h \
318 $(EMACS_ROOT)/src/config.h \
319 $(SRC)/blockinput.h \
324 $(SRC)/dispextern.h \
330 $(SRC)/region-cache.h \
335 $(BLD)/bytecode.$(O) : \
337 $(EMACS_ROOT)/src/s/ms-w32.h \
338 $(EMACS_ROOT)/src/m/intel386.h \
339 $(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 \
470 $(BLD)/composite.$(O) : \
472 $(EMACS_ROOT)/src/s/ms-w32.h \
473 $(EMACS_ROOT)/src/m/intel386.h \
474 $(EMACS_ROOT)/src/config.h \
478 $(SRC)/dispextern.h \
485 $(EMACS_ROOT)/src/s/ms-w32.h \
486 $(EMACS_ROOT)/src/m/intel386.h \
487 $(EMACS_ROOT)/src/config.h \
495 $(BLD)/dired.$(O) : \
497 $(EMACS_ROOT)/src/s/ms-w32.h \
498 $(EMACS_ROOT)/src/m/intel386.h \
499 $(EMACS_ROOT)/src/config.h \
509 $(BLD)/dispnew.$(O) : \
511 $(EMACS_ROOT)/src/s/ms-w32.h \
512 $(EMACS_ROOT)/src/m/intel386.h \
513 $(EMACS_ROOT)/src/config.h \
514 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
515 $(EMACS_ROOT)/nt/inc/sys/file.h \
517 $(SRC)/blockinput.h \
523 $(SRC)/dispextern.h \
542 $(EMACS_ROOT)/src/s/ms-w32.h \
543 $(EMACS_ROOT)/src/m/intel386.h \
544 $(EMACS_ROOT)/src/config.h \
545 $(EMACS_ROOT)/nt/inc/sys/file.h \
551 $(BLD)/doprnt.$(O) : \
553 $(EMACS_ROOT)/src/s/ms-w32.h \
554 $(EMACS_ROOT)/src/m/intel386.h \
555 $(EMACS_ROOT)/src/config.h \
558 $(BLD)/editfns.$(O) : \
560 $(EMACS_ROOT)/src/s/ms-w32.h \
561 $(EMACS_ROOT)/src/m/intel386.h \
562 $(EMACS_ROOT)/src/config.h \
563 $(EMACS_ROOT)/nt/inc/pwd.h \
569 $(SRC)/dispextern.h \
577 $(BLD)/emacs.$(O) : \
579 $(EMACS_ROOT)/src/s/ms-w32.h \
580 $(EMACS_ROOT)/src/m/intel386.h \
581 $(EMACS_ROOT)/src/config.h \
582 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
583 $(EMACS_ROOT)/nt/inc/sys/file.h \
585 $(SRC)/blockinput.h \
589 $(SRC)/dispextern.h \
605 $(EMACS_ROOT)/src/s/ms-w32.h \
606 $(EMACS_ROOT)/src/m/intel386.h \
607 $(EMACS_ROOT)/src/config.h \
609 $(SRC)/blockinput.h \
611 $(SRC)/dispextern.h \
617 $(BLD)/fileio.$(O) : \
619 $(EMACS_ROOT)/src/s/ms-w32.h \
620 $(EMACS_ROOT)/src/m/intel386.h \
621 $(EMACS_ROOT)/src/config.h \
622 $(EMACS_ROOT)/nt/inc/pwd.h \
623 $(EMACS_ROOT)/nt/inc/sys/param.h \
624 $(EMACS_ROOT)/nt/inc/sys/file.h \
631 $(SRC)/dispextern.h \
638 $(BLD)/filelock.$(O) : \
640 $(EMACS_ROOT)/src/s/ms-w32.h \
641 $(EMACS_ROOT)/src/m/intel386.h \
642 $(EMACS_ROOT)/src/config.h \
643 $(EMACS_ROOT)/nt/inc/pwd.h \
644 $(EMACS_ROOT)/nt/inc/sys/file.h \
645 $(EMACS_ROOT)/src/epaths.h \
652 $(BLD)/filemode.$(O) : \
654 $(EMACS_ROOT)/src/s/ms-w32.h \
655 $(EMACS_ROOT)/src/m/intel386.h \
656 $(EMACS_ROOT)/src/config.h \
658 $(SRC)/m/intel386.h \
661 $(BLD)/firstfile.$(O) : \
663 $(EMACS_ROOT)/src/s/ms-w32.h \
664 $(EMACS_ROOT)/src/m/intel386.h \
665 $(EMACS_ROOT)/src/config.h
667 $(BLD)/floatfns.$(O) : \
669 $(EMACS_ROOT)/src/s/ms-w32.h \
670 $(EMACS_ROOT)/src/m/intel386.h \
671 $(EMACS_ROOT)/src/config.h \
676 $(EMACS_ROOT)/src/s/ms-w32.h \
677 $(EMACS_ROOT)/src/m/intel386.h \
678 $(EMACS_ROOT)/src/config.h \
680 $(SRC)/blockinput.h \
687 $(SRC)/dispextern.h \
698 $(BLD)/fontset.$(O) : \
700 $(EMACS_ROOT)/src/s/ms-w32.h \
701 $(EMACS_ROOT)/src/m/intel386.h \
702 $(EMACS_ROOT)/src/config.h \
706 $(SRC)/dispextern.h \
714 $(BLD)/frame.$(O) : \
716 $(EMACS_ROOT)/src/s/ms-w32.h \
717 $(EMACS_ROOT)/src/m/intel386.h \
718 $(EMACS_ROOT)/src/config.h \
720 $(SRC)/blockinput.h \
724 $(SRC)/dispextern.h \
735 $(BLD)/fringe.$(O) : \
737 $(EMACS_ROOT)/src/s/ms-w32.h \
738 $(EMACS_ROOT)/src/m/intel386.h \
739 $(EMACS_ROOT)/src/config.h \
741 $(SRC)/blockinput.h \
743 $(SRC)/dispextern.h \
750 $(BLD)/gmalloc.$(O) : \
752 $(EMACS_ROOT)/src/s/ms-w32.h \
753 $(EMACS_ROOT)/src/m/intel386.h \
754 $(EMACS_ROOT)/src/config.h \
755 $(EMACS_ROOT)/nt/inc/sys/param.h \
760 $(EMACS_ROOT)/src/s/ms-w32.h \
761 $(EMACS_ROOT)/src/m/intel386.h \
762 $(EMACS_ROOT)/src/config.h \
764 $(SRC)/blockinput.h \
765 $(SRC)/dispextern.h \
776 $(BLD)/indent.$(O) : \
778 $(EMACS_ROOT)/src/s/ms-w32.h \
779 $(EMACS_ROOT)/src/m/intel386.h \
780 $(EMACS_ROOT)/src/config.h \
785 $(SRC)/dispextern.h \
791 $(SRC)/region-cache.h \
798 $(BLD)/insdel.$(O) : \
800 $(EMACS_ROOT)/src/s/ms-w32.h \
801 $(EMACS_ROOT)/src/m/intel386.h \
802 $(EMACS_ROOT)/src/config.h \
804 $(SRC)/blockinput.h \
808 $(SRC)/dispextern.h \
810 $(SRC)/region-cache.h \
816 $(BLD)/intervals.$(O) : \
818 $(EMACS_ROOT)/src/s/ms-w32.h \
819 $(EMACS_ROOT)/src/m/intel386.h \
820 $(EMACS_ROOT)/src/config.h \
823 $(SRC)/dispextern.h \
831 $(BLD)/keyboard.$(O) : \
833 $(EMACS_ROOT)/src/s/ms-w32.h \
834 $(EMACS_ROOT)/src/m/intel386.h \
835 $(EMACS_ROOT)/src/config.h \
836 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
837 $(EMACS_ROOT)/nt/inc/sys/file.h \
839 $(SRC)/blockinput.h \
844 $(SRC)/dispextern.h \
864 $(BLD)/keymap.$(O) : \
866 $(EMACS_ROOT)/src/s/ms-w32.h \
867 $(EMACS_ROOT)/src/m/intel386.h \
868 $(EMACS_ROOT)/src/config.h \
870 $(SRC)/blockinput.h \
875 $(SRC)/dispextern.h \
885 $(BLD)/lastfile.$(O) : \
887 $(EMACS_ROOT)/src/s/ms-w32.h \
888 $(EMACS_ROOT)/src/m/intel386.h \
889 $(EMACS_ROOT)/src/config.h
891 $(BLD)/lread.$(O) : \
893 $(EMACS_ROOT)/src/s/ms-w32.h \
894 $(EMACS_ROOT)/src/m/intel386.h \
895 $(EMACS_ROOT)/src/config.h \
896 $(EMACS_ROOT)/nt/inc/sys/file.h \
897 $(EMACS_ROOT)/src/epaths.h \
904 $(SRC)/dispextern.h \
911 $(BLD)/macros.$(O) : \
913 $(EMACS_ROOT)/src/s/ms-w32.h \
914 $(EMACS_ROOT)/src/m/intel386.h \
915 $(EMACS_ROOT)/src/config.h \
918 $(SRC)/dispextern.h \
925 $(BLD)/marker.$(O) : \
927 $(EMACS_ROOT)/src/s/ms-w32.h \
928 $(EMACS_ROOT)/src/m/intel386.h \
929 $(EMACS_ROOT)/src/config.h \
937 $(BLD)/minibuf.$(O) : \
939 $(EMACS_ROOT)/src/s/ms-w32.h \
940 $(EMACS_ROOT)/src/m/intel386.h \
941 $(EMACS_ROOT)/src/config.h \
946 $(SRC)/dispextern.h \
958 $(EMACS_ROOT)/nt/inc/pwd.h \
960 $(SRC)/m/intel386.h \
967 $(BLD)/w32heap.$(O) : \
970 $(SRC)/m/intel386.h \
974 $(BLD)/w32inevt.$(O) : \
977 $(SRC)/m/intel386.h \
980 $(SRC)/blockinput.h \
990 $(BLD)/w32proc.$(O) : \
993 $(SRC)/m/intel386.h \
1005 $(BLD)/w32console.$(O) : \
1006 $(SRC)/w32console.c \
1008 $(SRC)/m/intel386.h \
1013 $(SRC)/dispextern.h \
1016 $(SRC)/termhooks.h \
1021 $(BLD)/print.$(O) : \
1023 $(EMACS_ROOT)/src/s/ms-w32.h \
1024 $(EMACS_ROOT)/src/m/intel386.h \
1025 $(EMACS_ROOT)/src/config.h \
1028 $(SRC)/composite.h \
1029 $(SRC)/dispextern.h \
1031 $(SRC)/intervals.h \
1039 $(BLD)/process.$(O) : \
1041 $(EMACS_ROOT)/src/s/ms-w32.h \
1042 $(EMACS_ROOT)/src/m/intel386.h \
1043 $(EMACS_ROOT)/src/config.h \
1044 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1045 $(EMACS_ROOT)/nt/inc/sys/file.h \
1047 $(SRC)/blockinput.h \
1053 $(SRC)/composite.h \
1054 $(SRC)/dispextern.h \
1058 $(SRC)/sysselect.h \
1059 $(SRC)/syssignal.h \
1063 $(SRC)/termhooks.h \
1069 $(BLD)/ralloc.$(O) : \
1071 $(EMACS_ROOT)/src/s/ms-w32.h \
1072 $(EMACS_ROOT)/src/m/intel386.h \
1073 $(EMACS_ROOT)/src/config.h \
1074 $(EMACS_ROOT)/nt/inc/sys/param.h \
1076 $(SRC)/m/intel386.h \
1078 $(SRC)/getpagesize.h
1080 $(BLD)/regex.$(O) : \
1082 $(EMACS_ROOT)/src/s/ms-w32.h \
1083 $(EMACS_ROOT)/src/m/intel386.h \
1084 $(EMACS_ROOT)/src/config.h \
1086 $(SRC)/m/intel386.h \
1094 $(BLD)/region-cache.$(O) : \
1095 $(SRC)/region-cache.c \
1096 $(EMACS_ROOT)/src/s/ms-w32.h \
1097 $(EMACS_ROOT)/src/m/intel386.h \
1098 $(EMACS_ROOT)/src/config.h \
1100 $(SRC)/region-cache.h
1102 $(BLD)/scroll.$(O) : \
1104 $(EMACS_ROOT)/src/s/ms-w32.h \
1105 $(EMACS_ROOT)/src/m/intel386.h \
1106 $(EMACS_ROOT)/src/config.h \
1107 $(SRC)/dispextern.h \
1115 $(BLD)/search.$(O) : \
1117 $(EMACS_ROOT)/src/s/ms-w32.h \
1118 $(EMACS_ROOT)/src/m/intel386.h \
1119 $(EMACS_ROOT)/src/config.h \
1121 $(SRC)/blockinput.h \
1126 $(SRC)/composite.h \
1127 $(SRC)/dispextern.h \
1128 $(SRC)/intervals.h \
1130 $(SRC)/region-cache.h \
1136 $(BLD)/sound.$(O) : \
1139 $(SRC)/dispextern.h \
1143 $(BLD)/strftime.$(O) : \
1145 $(EMACS_ROOT)/src/s/ms-w32.h \
1146 $(EMACS_ROOT)/src/m/intel386.h \
1147 $(EMACS_ROOT)/src/config.h
1149 $(BLD)/syntax.$(O) : \
1151 $(EMACS_ROOT)/src/s/ms-w32.h \
1152 $(EMACS_ROOT)/src/m/intel386.h \
1153 $(EMACS_ROOT)/src/config.h \
1158 $(SRC)/composite.h \
1159 $(SRC)/dispextern.h \
1160 $(SRC)/intervals.h \
1166 $(BLD)/sysdep.$(O) : \
1168 $(EMACS_ROOT)/src/s/ms-w32.h \
1169 $(EMACS_ROOT)/src/m/intel386.h \
1170 $(EMACS_ROOT)/src/config.h \
1171 $(EMACS_ROOT)/nt/inc/sys/param.h \
1172 $(EMACS_ROOT)/nt/inc/sys/file.h \
1173 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1174 $(EMACS_ROOT)/nt/inc/sys/file.h \
1176 $(SRC)/blockinput.h \
1177 $(SRC)/dispextern.h \
1182 $(SRC)/sysselect.h \
1183 $(SRC)/syssignal.h \
1188 $(SRC)/termhooks.h \
1194 $(BLD)/term.$(O) : \
1196 $(EMACS_ROOT)/src/s/ms-w32.h \
1197 $(EMACS_ROOT)/src/m/intel386.h \
1198 $(EMACS_ROOT)/src/config.h \
1203 $(SRC)/dispextern.h \
1209 $(SRC)/termhooks.h \
1215 $(BLD)/termcap.$(O) : \
1217 $(EMACS_ROOT)/src/s/ms-w32.h \
1218 $(EMACS_ROOT)/src/m/intel386.h \
1219 $(EMACS_ROOT)/src/config.h \
1220 $(EMACS_ROOT)/nt/inc/sys/file.h
1222 $(BLD)/textprop.$(O) : \
1224 $(EMACS_ROOT)/src/s/ms-w32.h \
1225 $(EMACS_ROOT)/src/m/intel386.h \
1226 $(EMACS_ROOT)/src/config.h \
1228 $(SRC)/composite.h \
1229 $(SRC)/dispextern.h \
1230 $(SRC)/intervals.h \
1235 $(BLD)/tparam.$(O) : \
1237 $(EMACS_ROOT)/src/s/ms-w32.h \
1238 $(EMACS_ROOT)/src/m/intel386.h \
1239 $(EMACS_ROOT)/src/config.h
1241 $(BLD)/undo.$(O) : \
1243 $(EMACS_ROOT)/src/s/ms-w32.h \
1244 $(EMACS_ROOT)/src/m/intel386.h \
1245 $(EMACS_ROOT)/src/config.h \
1249 $(BLD)/unexw32.$(O) : \
1251 $(EMACS_ROOT)/src/s/ms-w32.h \
1252 $(EMACS_ROOT)/src/m/intel386.h \
1253 $(EMACS_ROOT)/src/config.h \
1256 $(BLD)/vm-limit.$(O) : \
1258 $(EMACS_ROOT)/src/s/ms-w32.h \
1259 $(EMACS_ROOT)/src/m/intel386.h \
1260 $(EMACS_ROOT)/src/config.h \
1263 $(BLD)/window.$(O) : \
1265 $(EMACS_ROOT)/src/s/ms-w32.h \
1266 $(EMACS_ROOT)/src/m/intel386.h \
1267 $(EMACS_ROOT)/src/config.h \
1269 $(SRC)/blockinput.h \
1272 $(SRC)/composite.h \
1273 $(SRC)/dispextern.h \
1277 $(SRC)/intervals.h \
1287 $(BLD)/xdisp.$(O) : \
1289 $(EMACS_ROOT)/src/s/ms-w32.h \
1290 $(EMACS_ROOT)/src/m/intel386.h \
1291 $(EMACS_ROOT)/src/config.h \
1293 $(SRC)/blockinput.h \
1299 $(SRC)/composite.h \
1300 $(SRC)/dispextern.h \
1305 $(SRC)/intervals.h \
1310 $(SRC)/region-cache.h \
1313 $(SRC)/termhooks.h \
1319 $(BLD)/xfaces.$(O): \
1321 $(EMACS_ROOT)/src/s/ms-w32.h \
1322 $(EMACS_ROOT)/src/m/intel386.h \
1323 $(EMACS_ROOT)/src/config.h \
1325 $(SRC)/blockinput.h \
1328 $(SRC)/composite.h \
1329 $(SRC)/dispextern.h \
1332 $(SRC)/intervals.h \
1340 $(BLD)/w32fns.$(O): \
1342 $(EMACS_ROOT)/src/s/ms-w32.h \
1343 $(EMACS_ROOT)/src/m/intel386.h \
1344 $(EMACS_ROOT)/src/config.h \
1346 $(SRC)/blockinput.h \
1351 $(SRC)/composite.h \
1352 $(SRC)/dispextern.h \
1356 $(SRC)/intervals.h \
1359 $(SRC)/termhooks.h \
1366 $(BLD)/w32menu.$(O): \
1368 $(EMACS_ROOT)/src/s/ms-w32.h \
1369 $(EMACS_ROOT)/src/m/intel386.h \
1370 $(EMACS_ROOT)/src/config.h \
1372 $(SRC)/blockinput.h \
1376 $(SRC)/dispextern.h \
1381 $(SRC)/termhooks.h \
1387 $(BLD)/w32term.$(O): \
1389 $(EMACS_ROOT)/src/s/ms-w32.h \
1390 $(EMACS_ROOT)/src/m/intel386.h \
1391 $(EMACS_ROOT)/src/config.h \
1393 $(SRC)/blockinput.h \
1398 $(SRC)/composite.h \
1399 $(SRC)/dispextern.h \
1404 $(SRC)/intervals.h \
1410 $(SRC)/termhooks.h \
1418 $(BLD)/w32select.$(O): \
1419 $(SRC)/w32select.c \
1420 $(EMACS_ROOT)/src/s/ms-w32.h \
1421 $(EMACS_ROOT)/src/m/intel386.h \
1422 $(EMACS_ROOT)/src/config.h \
1424 $(SRC)/blockinput.h \
1429 $(SRC)/composite.h \
1430 $(SRC)/dispextern.h \
1439 $(BLD)/w32reg.$(O): \
1441 $(EMACS_ROOT)/src/s/ms-w32.h \
1442 $(EMACS_ROOT)/src/m/intel386.h \
1443 $(EMACS_ROOT)/src/config.h \
1445 $(SRC)/blockinput.h \
1451 $(BLD)/w32xfns.$(O): \
1453 $(EMACS_ROOT)/src/s/ms-w32.h \
1454 $(EMACS_ROOT)/src/m/intel386.h \
1455 $(EMACS_ROOT)/src/config.h \
1457 $(SRC)/blockinput.h \
1467 $(BLD)/w32bdf.$(O): \
1469 $(EMACS_ROOT)/src/s/ms-w32.h \
1470 $(EMACS_ROOT)/src/m/intel386.h \
1471 $(EMACS_ROOT)/src/config.h \
1473 $(SRC)/blockinput.h \
1475 $(SRC)/dispextern.h \