1 # -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 # Copyright (c) 2000-2001, 2004 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) \
60 $(BLD)/bytecode.$(O) \
62 $(BLD)/callproc.$(O) \
63 $(BLD)/casefiddle.$(O) \
74 $(BLD)/filelock.$(O) \
75 $(BLD)/filemode.$(O) \
79 $(BLD)/keyboard.$(O) \
88 $(BLD)/w32inevt.$(O) \
90 $(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) \
121 $(BLD)/fontset.$(O) \
125 WIN32OBJ = $(BLD)/w32term.$(O) \
126 $(BLD)/w32xfns.$(O) \
129 $(BLD)/w32select.$(O) \
130 $(BLD)/w32menu.$(O) \
149 # Build the executable and dump it.
154 # The dumped executable
156 emacs: $(BLD) $(EMACS)
157 $(EMACS): $(DOC) $(TEMACS)
158 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup dump
159 -"$(THISDIR)/$(BLD)/emacs.exe" -q -batch -f list-load-path-shadows
162 # The undumped executable
163 # Note the extra post-link step to insert a static preload heap section.
164 # If preload runs out of memory, increase the last argument to addsection
165 # (it is the preload heap size in MB).
167 temacs: $(BLD) $(TEMACS)
168 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
169 $(LINK) $(LINK_OUT)$(TEMACS_TMP) $(FULL_LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
170 "../nt/$(BLD)/addsection" "$(TEMACS_TMP)" "$(TEMACS)" EMHEAP 16
172 bootstrap: bootstrap-emacs
175 # Build a temacs with a sufficiently large PURESIZE to load the
176 # Lisp files from loadup.el in source form.
179 $(MAKE) $(MFLAGS) temacs CFLAGS=$(ARGQUOTE)$(CFLAGS) -DPURESIZE=5000000$(ARGQUOTE)
182 # Dump an Emacs executable named bootstrap-emacs containing the
183 # files from loadup.el in source form.
185 bootstrap-emacs: bootstrap-temacs
186 "$(THISDIR)/$(BLD)/temacs.exe" -batch -l loadup bootstrap
188 $(CP) $(EMACS) ../bin
191 # Force recompile of files that depend on PURESIZE
194 - $(DEL) $(BLD)/alloc.$(O)
195 - $(DEL) $(BLD)/data.$(O)
196 - $(DEL) $(BLD)/intervals.$(O)
197 - $(DEL) $(BLD)/keyboard.$(O)
198 - $(DEL) $(BLD)/keymap.$(O)
201 # The resource file. NT 3.10 requires the use of cvtres; even though
202 # it is not necessary on later versions, it is still ok to use it.
204 $(TRES): ../nt/emacs.rc
205 $(RC) $(RC_INCLUDE)../nt $(RC_OUT)$@ $(ALL_DEPS)
208 # Build the library. Split up the build into two phases...otherwise we
209 # run out of command line space.
213 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
216 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
217 $(TLIBW32): $(WIN32OBJ)
219 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
222 # Place lastfile.$(O) in its own library so that it can be loaded after
223 # the source libraries but before any system libraries. Doing so defines
224 # the end of Emacs' data section portably across compilers and systems.
226 $(TLASTLIB): $(BLD)/lastfile.$(O)
228 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
231 # Assuming INSTALL_DIR is defined, build and install emacs in it.
234 - mkdir "$(INSTALL_DIR)/bin"
235 $(CP) $(EMACS) $(INSTALL_DIR)/bin
241 - $(DEL) *~ "s/*~" "m/*~"
242 - $(DEL) $(COMPILER_TEMP_FILES)
243 - $(DEL_TREE) $(OBJDIR)
246 - $(DEL) config.h epaths.h
250 - $(DEL_TREE) obj-spd
259 $(BLD)/abbrev.$(O) : \
261 $(EMACS_ROOT)/src/s/ms-w32.h \
262 $(EMACS_ROOT)/src/m/intel386.h \
263 $(EMACS_ROOT)/src/config.h \
267 $(SRC)/dispextern.h \
273 $(BLD)/alloc.$(O) : \
275 $(EMACS_ROOT)/src/s/ms-w32.h \
276 $(EMACS_ROOT)/src/m/intel386.h \
277 $(EMACS_ROOT)/src/config.h \
278 $(SRC)/blockinput.h \
282 $(SRC)/dispextern.h \
293 $(BLD)/atimer.$(O) : \
295 $(EMACS_ROOT)/src/s/ms-w32.h \
296 $(EMACS_ROOT)/src/m/intel386.h \
297 $(EMACS_ROOT)/src/config.h \
299 $(SRC)/m/intel386.h \
302 $(SRC)/blockinput.h \
306 $(BLD)/buffer.$(O) : \
308 $(EMACS_ROOT)/nt/inc/sys/param.h \
309 $(EMACS_ROOT)/src/s/ms-w32.h \
310 $(EMACS_ROOT)/src/m/intel386.h \
311 $(EMACS_ROOT)/src/config.h \
312 $(SRC)/blockinput.h \
317 $(SRC)/dispextern.h \
323 $(SRC)/region-cache.h \
328 $(BLD)/bytecode.$(O) : \
330 $(EMACS_ROOT)/src/s/ms-w32.h \
331 $(EMACS_ROOT)/src/m/intel386.h \
332 $(EMACS_ROOT)/src/config.h \
338 $(BLD)/callint.$(O) : \
340 $(EMACS_ROOT)/src/s/ms-w32.h \
341 $(EMACS_ROOT)/src/m/intel386.h \
342 $(EMACS_ROOT)/src/config.h \
345 $(SRC)/dispextern.h \
352 $(BLD)/callproc.$(O) : \
354 $(EMACS_ROOT)/src/s/ms-w32.h \
355 $(EMACS_ROOT)/src/m/intel386.h \
356 $(EMACS_ROOT)/src/config.h \
357 $(EMACS_ROOT)/nt/inc/sys/param.h \
358 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
359 $(EMACS_ROOT)/nt/inc/sys/file.h \
372 $(BLD)/casefiddle.$(O) : \
373 $(SRC)/casefiddle.c \
374 $(EMACS_ROOT)/src/s/ms-w32.h \
375 $(EMACS_ROOT)/src/m/intel386.h \
376 $(EMACS_ROOT)/src/config.h \
384 $(BLD)/casetab.$(O) : \
386 $(EMACS_ROOT)/src/s/ms-w32.h \
387 $(EMACS_ROOT)/src/m/intel386.h \
388 $(EMACS_ROOT)/src/config.h \
392 $(BLD)/category.$(O) : \
394 $(EMACS_ROOT)/src/s/ms-w32.h \
395 $(EMACS_ROOT)/src/m/intel386.h \
396 $(EMACS_ROOT)/src/config.h \
404 $(EMACS_ROOT)/src/s/ms-w32.h \
405 $(EMACS_ROOT)/src/m/intel386.h \
406 $(EMACS_ROOT)/src/config.h \
411 $(BLD)/charset.$(O) : \
413 $(EMACS_ROOT)/src/s/ms-w32.h \
414 $(EMACS_ROOT)/src/m/intel386.h \
415 $(EMACS_ROOT)/src/config.h \
425 $(EMACS_ROOT)/src/s/ms-w32.h \
426 $(EMACS_ROOT)/src/m/intel386.h \
427 $(EMACS_ROOT)/src/config.h \
433 $(EMACS_ROOT)/src/s/ms-w32.h \
434 $(EMACS_ROOT)/src/m/intel386.h \
435 $(EMACS_ROOT)/src/config.h \
439 $(SRC)/dispextern.h \
447 $(BLD)/coding.$(O) : \
449 $(EMACS_ROOT)/src/s/ms-w32.h \
450 $(EMACS_ROOT)/src/m/intel386.h \
451 $(EMACS_ROOT)/src/config.h \
457 $(SRC)/dispextern.h \
463 $(BLD)/composite.$(O) : \
465 $(EMACS_ROOT)/src/s/ms-w32.h \
466 $(EMACS_ROOT)/src/m/intel386.h \
467 $(EMACS_ROOT)/src/config.h \
471 $(SRC)/dispextern.h \
478 $(EMACS_ROOT)/src/s/ms-w32.h \
479 $(EMACS_ROOT)/src/m/intel386.h \
480 $(EMACS_ROOT)/src/config.h \
488 $(BLD)/dired.$(O) : \
490 $(EMACS_ROOT)/src/s/ms-w32.h \
491 $(EMACS_ROOT)/src/m/intel386.h \
492 $(EMACS_ROOT)/src/config.h \
502 $(BLD)/dispnew.$(O) : \
504 $(EMACS_ROOT)/src/s/ms-w32.h \
505 $(EMACS_ROOT)/src/m/intel386.h \
506 $(EMACS_ROOT)/src/config.h \
507 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
508 $(EMACS_ROOT)/nt/inc/sys/file.h \
510 $(SRC)/blockinput.h \
516 $(SRC)/dispextern.h \
535 $(EMACS_ROOT)/src/s/ms-w32.h \
536 $(EMACS_ROOT)/src/m/intel386.h \
537 $(EMACS_ROOT)/src/config.h \
538 $(EMACS_ROOT)/nt/inc/sys/file.h \
544 $(BLD)/doprnt.$(O) : \
546 $(EMACS_ROOT)/src/s/ms-w32.h \
547 $(EMACS_ROOT)/src/m/intel386.h \
548 $(EMACS_ROOT)/src/config.h \
551 $(BLD)/editfns.$(O) : \
553 $(EMACS_ROOT)/src/s/ms-w32.h \
554 $(EMACS_ROOT)/src/m/intel386.h \
555 $(EMACS_ROOT)/src/config.h \
556 $(EMACS_ROOT)/nt/inc/pwd.h \
562 $(SRC)/dispextern.h \
570 $(BLD)/emacs.$(O) : \
572 $(EMACS_ROOT)/src/s/ms-w32.h \
573 $(EMACS_ROOT)/src/m/intel386.h \
574 $(EMACS_ROOT)/src/config.h \
575 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
576 $(EMACS_ROOT)/nt/inc/sys/file.h \
578 $(SRC)/blockinput.h \
582 $(SRC)/dispextern.h \
597 $(EMACS_ROOT)/src/s/ms-w32.h \
598 $(EMACS_ROOT)/src/m/intel386.h \
599 $(EMACS_ROOT)/src/config.h \
601 $(SRC)/blockinput.h \
603 $(SRC)/dispextern.h \
609 $(BLD)/fileio.$(O) : \
611 $(EMACS_ROOT)/src/s/ms-w32.h \
612 $(EMACS_ROOT)/src/m/intel386.h \
613 $(EMACS_ROOT)/src/config.h \
614 $(EMACS_ROOT)/nt/inc/pwd.h \
615 $(EMACS_ROOT)/nt/inc/sys/param.h \
616 $(EMACS_ROOT)/nt/inc/sys/file.h \
623 $(SRC)/dispextern.h \
630 $(BLD)/filelock.$(O) : \
632 $(EMACS_ROOT)/src/s/ms-w32.h \
633 $(EMACS_ROOT)/src/m/intel386.h \
634 $(EMACS_ROOT)/src/config.h \
635 $(EMACS_ROOT)/nt/inc/pwd.h \
636 $(EMACS_ROOT)/nt/inc/sys/file.h \
637 $(EMACS_ROOT)/src/epaths.h \
644 $(BLD)/filemode.$(O) : \
646 $(EMACS_ROOT)/src/s/ms-w32.h \
647 $(EMACS_ROOT)/src/m/intel386.h \
648 $(EMACS_ROOT)/src/config.h \
650 $(SRC)/m/intel386.h \
653 $(BLD)/firstfile.$(O) : \
655 $(EMACS_ROOT)/src/s/ms-w32.h \
656 $(EMACS_ROOT)/src/m/intel386.h \
657 $(EMACS_ROOT)/src/config.h
659 $(BLD)/floatfns.$(O) : \
661 $(EMACS_ROOT)/src/s/ms-w32.h \
662 $(EMACS_ROOT)/src/m/intel386.h \
663 $(EMACS_ROOT)/src/config.h \
668 $(EMACS_ROOT)/src/s/ms-w32.h \
669 $(EMACS_ROOT)/src/m/intel386.h \
670 $(EMACS_ROOT)/src/config.h \
672 $(SRC)/blockinput.h \
679 $(SRC)/dispextern.h \
690 $(BLD)/fontset.$(O) : \
692 $(EMACS_ROOT)/src/s/ms-w32.h \
693 $(EMACS_ROOT)/src/m/intel386.h \
694 $(EMACS_ROOT)/src/config.h \
698 $(SRC)/dispextern.h \
706 $(BLD)/frame.$(O) : \
708 $(EMACS_ROOT)/src/s/ms-w32.h \
709 $(EMACS_ROOT)/src/m/intel386.h \
710 $(EMACS_ROOT)/src/config.h \
712 $(SRC)/blockinput.h \
716 $(SRC)/dispextern.h \
727 $(BLD)/fringe.$(O) : \
729 $(EMACS_ROOT)/src/s/ms-w32.h \
730 $(EMACS_ROOT)/src/m/intel386.h \
731 $(EMACS_ROOT)/src/config.h \
733 $(SRC)/blockinput.h \
735 $(SRC)/dispextern.h \
742 $(BLD)/gmalloc.$(O) : \
744 $(EMACS_ROOT)/src/s/ms-w32.h \
745 $(EMACS_ROOT)/src/m/intel386.h \
746 $(EMACS_ROOT)/src/config.h \
747 $(EMACS_ROOT)/nt/inc/sys/param.h \
752 $(EMACS_ROOT)/src/s/ms-w32.h \
753 $(EMACS_ROOT)/src/m/intel386.h \
754 $(EMACS_ROOT)/src/config.h \
756 $(SRC)/blockinput.h \
757 $(SRC)/dispextern.h \
768 $(BLD)/indent.$(O) : \
770 $(EMACS_ROOT)/src/s/ms-w32.h \
771 $(EMACS_ROOT)/src/m/intel386.h \
772 $(EMACS_ROOT)/src/config.h \
777 $(SRC)/dispextern.h \
783 $(SRC)/region-cache.h \
790 $(BLD)/insdel.$(O) : \
792 $(EMACS_ROOT)/src/s/ms-w32.h \
793 $(EMACS_ROOT)/src/m/intel386.h \
794 $(EMACS_ROOT)/src/config.h \
796 $(SRC)/blockinput.h \
800 $(SRC)/dispextern.h \
802 $(SRC)/region-cache.h \
808 $(BLD)/intervals.$(O) : \
810 $(EMACS_ROOT)/src/s/ms-w32.h \
811 $(EMACS_ROOT)/src/m/intel386.h \
812 $(EMACS_ROOT)/src/config.h \
815 $(SRC)/dispextern.h \
823 $(BLD)/keyboard.$(O) : \
825 $(EMACS_ROOT)/src/s/ms-w32.h \
826 $(EMACS_ROOT)/src/m/intel386.h \
827 $(EMACS_ROOT)/src/config.h \
828 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
829 $(EMACS_ROOT)/nt/inc/sys/file.h \
831 $(SRC)/blockinput.h \
836 $(SRC)/dispextern.h \
856 $(BLD)/keymap.$(O) : \
858 $(EMACS_ROOT)/src/s/ms-w32.h \
859 $(EMACS_ROOT)/src/m/intel386.h \
860 $(EMACS_ROOT)/src/config.h \
862 $(SRC)/blockinput.h \
867 $(SRC)/dispextern.h \
877 $(BLD)/lastfile.$(O) : \
879 $(EMACS_ROOT)/src/s/ms-w32.h \
880 $(EMACS_ROOT)/src/m/intel386.h \
881 $(EMACS_ROOT)/src/config.h
883 $(BLD)/lread.$(O) : \
885 $(EMACS_ROOT)/src/s/ms-w32.h \
886 $(EMACS_ROOT)/src/m/intel386.h \
887 $(EMACS_ROOT)/src/config.h \
888 $(EMACS_ROOT)/nt/inc/sys/file.h \
889 $(EMACS_ROOT)/src/epaths.h \
896 $(SRC)/dispextern.h \
903 $(BLD)/macros.$(O) : \
905 $(EMACS_ROOT)/src/s/ms-w32.h \
906 $(EMACS_ROOT)/src/m/intel386.h \
907 $(EMACS_ROOT)/src/config.h \
910 $(SRC)/dispextern.h \
917 $(BLD)/marker.$(O) : \
919 $(EMACS_ROOT)/src/s/ms-w32.h \
920 $(EMACS_ROOT)/src/m/intel386.h \
921 $(EMACS_ROOT)/src/config.h \
929 $(BLD)/minibuf.$(O) : \
931 $(EMACS_ROOT)/src/s/ms-w32.h \
932 $(EMACS_ROOT)/src/m/intel386.h \
933 $(EMACS_ROOT)/src/config.h \
938 $(SRC)/dispextern.h \
950 $(EMACS_ROOT)/nt/inc/pwd.h \
952 $(SRC)/m/intel386.h \
959 $(BLD)/w32heap.$(O) : \
962 $(SRC)/m/intel386.h \
966 $(BLD)/w32inevt.$(O) : \
969 $(SRC)/m/intel386.h \
972 $(SRC)/blockinput.h \
982 $(BLD)/w32proc.$(O) : \
985 $(SRC)/m/intel386.h \
997 $(BLD)/w32console.$(O) : \
998 $(SRC)/w32console.c \
1000 $(SRC)/m/intel386.h \
1005 $(SRC)/dispextern.h \
1008 $(SRC)/termhooks.h \
1013 $(BLD)/print.$(O) : \
1015 $(EMACS_ROOT)/src/s/ms-w32.h \
1016 $(EMACS_ROOT)/src/m/intel386.h \
1017 $(EMACS_ROOT)/src/config.h \
1020 $(SRC)/composite.h \
1021 $(SRC)/dispextern.h \
1023 $(SRC)/intervals.h \
1031 $(BLD)/process.$(O) : \
1033 $(EMACS_ROOT)/src/s/ms-w32.h \
1034 $(EMACS_ROOT)/src/m/intel386.h \
1035 $(EMACS_ROOT)/src/config.h \
1036 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1037 $(EMACS_ROOT)/nt/inc/sys/file.h \
1039 $(SRC)/blockinput.h \
1045 $(SRC)/composite.h \
1046 $(SRC)/dispextern.h \
1050 $(SRC)/sysselect.h \
1051 $(SRC)/syssignal.h \
1055 $(SRC)/termhooks.h \
1061 $(BLD)/ralloc.$(O) : \
1063 $(EMACS_ROOT)/src/s/ms-w32.h \
1064 $(EMACS_ROOT)/src/m/intel386.h \
1065 $(EMACS_ROOT)/src/config.h \
1066 $(EMACS_ROOT)/nt/inc/sys/param.h \
1068 $(SRC)/m/intel386.h \
1070 $(SRC)/getpagesize.h
1072 $(BLD)/regex.$(O) : \
1074 $(EMACS_ROOT)/src/s/ms-w32.h \
1075 $(EMACS_ROOT)/src/m/intel386.h \
1076 $(EMACS_ROOT)/src/config.h \
1078 $(SRC)/m/intel386.h \
1086 $(BLD)/region-cache.$(O) : \
1087 $(SRC)/region-cache.c \
1088 $(EMACS_ROOT)/src/s/ms-w32.h \
1089 $(EMACS_ROOT)/src/m/intel386.h \
1090 $(EMACS_ROOT)/src/config.h \
1092 $(SRC)/region-cache.h
1094 $(BLD)/scroll.$(O) : \
1096 $(EMACS_ROOT)/src/s/ms-w32.h \
1097 $(EMACS_ROOT)/src/m/intel386.h \
1098 $(EMACS_ROOT)/src/config.h \
1099 $(SRC)/dispextern.h \
1107 $(BLD)/search.$(O) : \
1109 $(EMACS_ROOT)/src/s/ms-w32.h \
1110 $(EMACS_ROOT)/src/m/intel386.h \
1111 $(EMACS_ROOT)/src/config.h \
1113 $(SRC)/blockinput.h \
1118 $(SRC)/composite.h \
1119 $(SRC)/dispextern.h \
1120 $(SRC)/intervals.h \
1122 $(SRC)/region-cache.h \
1128 $(BLD)/sound.$(O) : \
1131 $(SRC)/dispextern.h \
1135 $(BLD)/strftime.$(O) : \
1137 $(EMACS_ROOT)/src/s/ms-w32.h \
1138 $(EMACS_ROOT)/src/m/intel386.h \
1139 $(EMACS_ROOT)/src/config.h
1141 $(BLD)/syntax.$(O) : \
1143 $(EMACS_ROOT)/src/s/ms-w32.h \
1144 $(EMACS_ROOT)/src/m/intel386.h \
1145 $(EMACS_ROOT)/src/config.h \
1150 $(SRC)/composite.h \
1151 $(SRC)/dispextern.h \
1152 $(SRC)/intervals.h \
1158 $(BLD)/sysdep.$(O) : \
1160 $(EMACS_ROOT)/src/s/ms-w32.h \
1161 $(EMACS_ROOT)/src/m/intel386.h \
1162 $(EMACS_ROOT)/src/config.h \
1163 $(EMACS_ROOT)/nt/inc/sys/param.h \
1164 $(EMACS_ROOT)/nt/inc/sys/file.h \
1165 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1166 $(EMACS_ROOT)/nt/inc/sys/file.h \
1168 $(SRC)/blockinput.h \
1169 $(SRC)/dispextern.h \
1174 $(SRC)/sysselect.h \
1175 $(SRC)/syssignal.h \
1180 $(SRC)/termhooks.h \
1186 $(BLD)/term.$(O) : \
1188 $(EMACS_ROOT)/src/s/ms-w32.h \
1189 $(EMACS_ROOT)/src/m/intel386.h \
1190 $(EMACS_ROOT)/src/config.h \
1195 $(SRC)/dispextern.h \
1201 $(SRC)/termhooks.h \
1207 $(BLD)/termcap.$(O) : \
1209 $(EMACS_ROOT)/src/s/ms-w32.h \
1210 $(EMACS_ROOT)/src/m/intel386.h \
1211 $(EMACS_ROOT)/src/config.h \
1212 $(EMACS_ROOT)/nt/inc/sys/file.h
1214 $(BLD)/textprop.$(O) : \
1216 $(EMACS_ROOT)/src/s/ms-w32.h \
1217 $(EMACS_ROOT)/src/m/intel386.h \
1218 $(EMACS_ROOT)/src/config.h \
1220 $(SRC)/composite.h \
1221 $(SRC)/dispextern.h \
1222 $(SRC)/intervals.h \
1227 $(BLD)/tparam.$(O) : \
1229 $(EMACS_ROOT)/src/s/ms-w32.h \
1230 $(EMACS_ROOT)/src/m/intel386.h \
1231 $(EMACS_ROOT)/src/config.h
1233 $(BLD)/undo.$(O) : \
1235 $(EMACS_ROOT)/src/s/ms-w32.h \
1236 $(EMACS_ROOT)/src/m/intel386.h \
1237 $(EMACS_ROOT)/src/config.h \
1241 $(BLD)/unexw32.$(O) : \
1243 $(EMACS_ROOT)/src/s/ms-w32.h \
1244 $(EMACS_ROOT)/src/m/intel386.h \
1245 $(EMACS_ROOT)/src/config.h \
1248 $(BLD)/vm-limit.$(O) : \
1250 $(EMACS_ROOT)/src/s/ms-w32.h \
1251 $(EMACS_ROOT)/src/m/intel386.h \
1252 $(EMACS_ROOT)/src/config.h \
1255 $(BLD)/window.$(O) : \
1257 $(EMACS_ROOT)/src/s/ms-w32.h \
1258 $(EMACS_ROOT)/src/m/intel386.h \
1259 $(EMACS_ROOT)/src/config.h \
1261 $(SRC)/blockinput.h \
1264 $(SRC)/composite.h \
1265 $(SRC)/dispextern.h \
1269 $(SRC)/intervals.h \
1279 $(BLD)/xdisp.$(O) : \
1281 $(EMACS_ROOT)/src/s/ms-w32.h \
1282 $(EMACS_ROOT)/src/m/intel386.h \
1283 $(EMACS_ROOT)/src/config.h \
1285 $(SRC)/blockinput.h \
1291 $(SRC)/composite.h \
1292 $(SRC)/dispextern.h \
1297 $(SRC)/intervals.h \
1302 $(SRC)/region-cache.h \
1305 $(SRC)/termhooks.h \
1311 $(BLD)/xfaces.$(O): \
1313 $(EMACS_ROOT)/src/s/ms-w32.h \
1314 $(EMACS_ROOT)/src/m/intel386.h \
1315 $(EMACS_ROOT)/src/config.h \
1317 $(SRC)/blockinput.h \
1320 $(SRC)/composite.h \
1321 $(SRC)/dispextern.h \
1324 $(SRC)/intervals.h \
1332 $(BLD)/w32fns.$(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 \
1343 $(SRC)/composite.h \
1344 $(SRC)/dispextern.h \
1348 $(SRC)/intervals.h \
1351 $(SRC)/termhooks.h \
1358 $(BLD)/w32menu.$(O): \
1360 $(EMACS_ROOT)/src/s/ms-w32.h \
1361 $(EMACS_ROOT)/src/m/intel386.h \
1362 $(EMACS_ROOT)/src/config.h \
1364 $(SRC)/blockinput.h \
1368 $(SRC)/dispextern.h \
1373 $(SRC)/termhooks.h \
1379 $(BLD)/w32term.$(O): \
1381 $(EMACS_ROOT)/src/s/ms-w32.h \
1382 $(EMACS_ROOT)/src/m/intel386.h \
1383 $(EMACS_ROOT)/src/config.h \
1385 $(SRC)/blockinput.h \
1390 $(SRC)/composite.h \
1391 $(SRC)/dispextern.h \
1396 $(SRC)/intervals.h \
1402 $(SRC)/termhooks.h \
1410 $(BLD)/w32select.$(O): \
1411 $(SRC)/w32select.c \
1412 $(EMACS_ROOT)/src/s/ms-w32.h \
1413 $(EMACS_ROOT)/src/m/intel386.h \
1414 $(EMACS_ROOT)/src/config.h \
1416 $(SRC)/blockinput.h \
1421 $(SRC)/composite.h \
1422 $(SRC)/dispextern.h \
1430 $(BLD)/w32reg.$(O): \
1432 $(EMACS_ROOT)/src/s/ms-w32.h \
1433 $(EMACS_ROOT)/src/m/intel386.h \
1434 $(EMACS_ROOT)/src/config.h \
1436 $(SRC)/blockinput.h \
1442 $(BLD)/w32xfns.$(O): \
1444 $(EMACS_ROOT)/src/s/ms-w32.h \
1445 $(EMACS_ROOT)/src/m/intel386.h \
1446 $(EMACS_ROOT)/src/config.h \
1448 $(SRC)/blockinput.h \
1458 $(BLD)/w32bdf.$(O): \
1460 $(EMACS_ROOT)/src/s/ms-w32.h \
1461 $(EMACS_ROOT)/src/m/intel386.h \
1462 $(EMACS_ROOT)/src/config.h \
1464 $(SRC)/blockinput.h \
1466 $(SRC)/dispextern.h \