1 # Makefile for GNU Emacs on the Microsoft W32 API.
2 # Copyright (c) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
3 # Tim Fleehart (apollo@online.com) 17-Apr-92
4 # Geoff Voelker (voelker@cs.washington.edu) 11-20-93
6 # This file is part of GNU Emacs.
8 # GNU Emacs is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
13 # GNU Emacs is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with GNU Emacs; see the file COPYING. If not, write to the
20 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 # Boston, MA 02111-1307, USA.
25 # Sets up the system dependent macros.
27 !include ..\nt\makefile.def
32 # HAVE_CONFIG_H is required by some generic gnu sources stuck into
33 # the emacs source tree.
35 LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc
37 LOCAL_FLAGS = $(LOCAL_FLAGS) -DHAVE_NTGUI=1
40 LOCAL_FLAGS = $(LOCAL_FLAGS) -DUSE_CRT_DLL=1 -MD
42 LINK_FLAGS = -nodefaultlib
45 # From MSVC 5.0 onwards, it seem base relocation information is not included,
46 # at least in release builds. We need to ensure the reloc info is included
47 # in order to use the MSVC profiler.
48 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
54 EMACS = $(BLD)\emacs.exe
55 TEMACS = $(BLD)\temacs.exe
56 TEMACS_TMP = $(BLD)\temacs.bin
57 TLIB0 = $(BLD)\temacs0.lib
58 TLIB1 = $(BLD)\temacs1.lib
59 TLIB2 = $(BLD)\temacs2.lib
61 TLIBW32 = $(BLD)\temacw32.lib
65 TOBJ = $(BLD)\firstfile.obj
67 TRES = $(BLD)\emacs.res
69 TRES = $(BLD)\emacs.rbj
71 TLASTLIB = $(BLD)\lastfile.lib
73 # see comments in allocate_heap in w32heap.c before changing any of the
74 # -stack, -heap, or -base settings.
75 !if "$(BUILD_TYPE)" == "spd"
76 LINK_FLAGS = $(LINK_FLAGS) $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:both -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd
78 LINK_FLAGS = $(LINK_FLAGS) $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:both -pdb:none -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd $(EXTRA_LINK)
82 # Split up the objects into two sets so that we don't run out of
83 # command line space when we link them into a library.
85 # Put emacs.obj in a separate lib, since we need to have firstfile.obj
86 # as the "main" object file when linking.
88 OBJ0 = $(BLD)\emacs.obj
90 OBJ1 = $(BLD)\abbrev.obj \
98 $(BLD)\casefiddle.obj \
109 $(BLD)\filelock.obj \
110 $(BLD)\filemode.obj \
114 $(BLD)\keyboard.obj \
123 OBJ2 = $(BLD)\w32.obj \
125 $(BLD)\w32inevt.obj \
127 $(BLD)\w32console.obj \
143 $(BLD)\floatfns.obj \
146 $(BLD)\intervals.obj \
147 $(BLD)\composite.obj \
149 $(BLD)\textprop.obj \
150 $(BLD)\vm-limit.obj \
151 $(BLD)\region-cache.obj \
152 $(BLD)\strftime.obj \
155 $(BLD)\category.obj \
159 WIN32OBJ = $(BLD)\w32term.obj \
163 $(BLD)\w32select.obj \
188 # Build the executable and dump it.
193 # Headers we would preprocess if we could.
195 PREPARED_HEADERS = config.h epaths.h
196 config.h: ..\nt\$(CONFIG_H)
198 epaths.h: ..\nt\paths.h
202 # Make sure we have the DOC file in the right place.
204 DOC = $(OBJDIR)\etc\DOC-X
205 $(DOC):; cd ..\lib-src
207 $(MAKE) $(MFLAGS) -f makefile.nt all
211 # The dumped executable
214 $(EMACS): $(DOC) $(TEMACS)
215 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup dump
218 # The undumped executable
219 # Note the extra post-link step to insert a static preload heap section.
220 # If preload runs out of memory, increase the last argument to addsection
221 # (it is the preload heap size in MB).
223 temacs: $(BLD) $(TEMACS)
224 $(TEMACS): $(PREPARED_HEADERS) $(TLIB0) $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
225 $(LINK) -out:$(TEMACS_TMP) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
226 ..\nt\$(BLD)\addsection $(TEMACS_TMP) $(TEMACS) EMHEAP 16
228 bootstrap: bootstrap-emacs
231 # Build a temacs with a sufficiently large PURESIZE to load the
232 # Lisp files from loadup.el in source form.
234 bootstrap-temacs: bootstrap-clean
235 $(MAKE) $(MFLAGS) -f makefile.nt temacs CFLAGS="$(CFLAGS) -DPURESIZE=5000000"
238 # Dump an Emacs executable named bootstrap-emacs containing the
239 # files from loadup.el in source form.
241 bootstrap-emacs: bootstrap-temacs
242 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup bootstrap
244 $(CP) $(EMACS) ..\bin
247 # Force recompile of files that depend on PURESIZE
250 - $(DEL) $(BLD)\alloc.obj
251 - $(DEL) $(BLD)\data.obj
252 - $(DEL) $(BLD)\intervals.obj
253 - $(DEL) $(BLD)\keyboard.obj
254 - $(DEL) $(BLD)\keymap.obj
257 # The resource file. NT 3.10 requires the use of cvtres; even though
258 # it is not necessary on later versions, it is still ok to use it.
260 $(TRES): ..\nt\emacs.rc
261 $(RC) -i..\nt -Fo$(BLD)\emacs.res $**
263 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
267 # Build the library. Split up the build into two phases...otherwise we
268 # run out of command line space.
277 $(TLIBW32): $(WIN32OBJ)
282 # Place lastfile.obj in its own library so that it can be loaded after
283 # the source libraries but before any system libraries. Doing so defines
284 # the end of Emacs' data section portably across compilers and systems.
286 $(TLASTLIB): $(BLD)\lastfile.obj
290 # Assuming INSTALL_DIR is defined, build and install emacs in it.
293 - mkdir $(INSTALL_DIR)\bin
294 $(CP) $(EMACS) $(INSTALL_DIR)\bin
299 clean:; - $(DEL) *~ s\*~
300 - $(DEL) *.pdb config.h epaths.h
301 - $(DEL) *.orig *.rej *.crlf
302 - $(DEL) s\*.orig s\*.rej s\*.crlf
303 - $(DEL_TREE) deleted
305 - $(DEL_TREE) obj-spd
308 # These files are the ones that compile conditionally on CANNOT_DUMP...
309 # this target is mostly used for debugging.
311 cleandump:; cd $(BLD)
312 - $(DEL) callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj w32heap.obj unexw32.obj
321 $(BLD)\abbrev.obj : \
323 $(EMACS_ROOT)\src\s\ms-w32.h \
324 $(EMACS_ROOT)\src\m\intel386.h \
325 $(EMACS_ROOT)\src\config.h \
332 $(EMACS_ROOT)\src\s\ms-w32.h \
333 $(EMACS_ROOT)\src\m\intel386.h \
334 $(EMACS_ROOT)\src\config.h \
335 $(SRC)\dispextern.h \
343 $(SRC)\blockinput.h \
346 $(BLD)\alloca.obj : \
348 $(EMACS_ROOT)\src\s\ms-w32.h \
349 $(EMACS_ROOT)\src\m\intel386.h \
350 $(EMACS_ROOT)\src\config.h \
352 $(SRC)\m\intel386.h \
356 $(BLD)\atimer.obj : \
358 $(EMACS_ROOT)\src\s\ms-w32.h \
359 $(EMACS_ROOT)\src\m\intel386.h \
360 $(EMACS_ROOT)\src\config.h \
362 $(SRC)\m\intel386.h \
369 $(BLD)\buffer.obj : \
371 $(EMACS_ROOT)\nt\inc\sys\param.h \
372 $(EMACS_ROOT)\src\s\ms-w32.h \
373 $(EMACS_ROOT)\src\m\intel386.h \
374 $(EMACS_ROOT)\src\config.h \
375 $(SRC)\dispextern.h \
384 $(SRC)\blockinput.h \
385 $(SRC)\region-cache.h
387 $(BLD)\bytecode.obj : \
389 $(EMACS_ROOT)\src\s\ms-w32.h \
390 $(EMACS_ROOT)\src\m\intel386.h \
391 $(EMACS_ROOT)\src\config.h \
395 $(BLD)\callint.obj : \
397 $(EMACS_ROOT)\src\s\ms-w32.h \
398 $(EMACS_ROOT)\src\m\intel386.h \
399 $(EMACS_ROOT)\src\config.h \
406 $(BLD)\callproc.obj : \
408 $(EMACS_ROOT)\src\s\ms-w32.h \
409 $(EMACS_ROOT)\src\m\intel386.h \
410 $(EMACS_ROOT)\src\config.h \
412 $(EMACS_ROOT)\nt\inc\sys\param.h \
417 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
418 $(EMACS_ROOT)\nt\inc\sys\file.h \
421 $(BLD)\casefiddle.obj : \
422 $(SRC)\casefiddle.c \
423 $(EMACS_ROOT)\src\s\ms-w32.h \
424 $(EMACS_ROOT)\src\m\intel386.h \
425 $(EMACS_ROOT)\src\config.h \
429 $(CC) $(CFLAGS) -Fo$@ casefiddle.c
431 $(BLD)\casetab.obj : \
433 $(EMACS_ROOT)\src\s\ms-w32.h \
434 $(EMACS_ROOT)\src\m\intel386.h \
435 $(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 \
448 $(EMACS_ROOT)\src\s\ms-w32.h \
449 $(EMACS_ROOT)\src\m\intel386.h \
450 $(EMACS_ROOT)\src\config.h \
455 $(BLD)\composite.obj : \
461 $(EMACS_ROOT)\src\s\ms-w32.h \
462 $(EMACS_ROOT)\src\m\intel386.h \
463 $(EMACS_ROOT)\src\config.h
467 $(EMACS_ROOT)\src\s\ms-w32.h \
468 $(EMACS_ROOT)\src\m\intel386.h \
469 $(EMACS_ROOT)\src\config.h \
476 $(EMACS_ROOT)\src\s\ms-w32.h \
477 $(EMACS_ROOT)\src\m\intel386.h \
478 $(EMACS_ROOT)\src\config.h \
485 $(BLD)\dispnew.obj : \
487 $(EMACS_ROOT)\src\s\ms-w32.h \
488 $(EMACS_ROOT)\src\m\intel386.h \
489 $(EMACS_ROOT)\src\config.h \
500 $(SRC)\dispextern.h \
503 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
504 $(EMACS_ROOT)\nt\inc\sys\file.h \
514 $(EMACS_ROOT)\src\s\ms-w32.h \
515 $(EMACS_ROOT)\src\m\intel386.h \
516 $(EMACS_ROOT)\src\config.h \
517 $(EMACS_ROOT)\nt\inc\sys\file.h \
521 $(BLD)\doprnt.obj : \
523 $(EMACS_ROOT)\src\s\ms-w32.h \
524 $(EMACS_ROOT)\src\m\intel386.h \
525 $(EMACS_ROOT)\src\config.h
527 $(BLD)\dosfns.obj : \
529 $(EMACS_ROOT)\src\s\ms-w32.h \
530 $(EMACS_ROOT)\src\m\intel386.h \
531 $(EMACS_ROOT)\src\config.h \
539 $(BLD)\editfns.obj : \
541 $(EMACS_ROOT)\src\s\ms-w32.h \
542 $(EMACS_ROOT)\src\m\intel386.h \
543 $(EMACS_ROOT)\src\config.h \
546 $(EMACS_ROOT)\nt\inc\pwd.h \
547 $(SRC)\dispextern.h \
558 $(EMACS_ROOT)\src\s\ms-w32.h \
559 $(EMACS_ROOT)\src\m\intel386.h \
560 $(EMACS_ROOT)\src\config.h \
562 $(SRC)\dispextern.h \
566 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
567 $(EMACS_ROOT)\nt\inc\sys\file.h \
574 $(EMACS_ROOT)\src\s\ms-w32.h \
575 $(EMACS_ROOT)\src\m\intel386.h \
576 $(EMACS_ROOT)\src\config.h \
577 $(SRC)\blockinput.h \
581 $(BLD)\fileio.obj : \
583 $(EMACS_ROOT)\src\s\ms-w32.h \
584 $(EMACS_ROOT)\src\m\intel386.h \
585 $(EMACS_ROOT)\src\config.h \
588 $(EMACS_ROOT)\nt\inc\pwd.h \
590 $(EMACS_ROOT)\nt\inc\sys\param.h \
592 $(SRC)\dispextern.h \
598 $(EMACS_ROOT)\nt\inc\sys\file.h \
602 $(BLD)\filelock.obj : \
604 $(EMACS_ROOT)\src\s\ms-w32.h \
605 $(EMACS_ROOT)\src\m\intel386.h \
606 $(EMACS_ROOT)\src\config.h \
609 $(EMACS_ROOT)\nt\inc\pwd.h \
610 $(EMACS_ROOT)\nt\inc\sys\file.h \
611 $(EMACS_ROOT)\src\epaths.h \
616 $(BLD)\filemode.obj : \
618 $(EMACS_ROOT)\src\s\ms-w32.h \
619 $(EMACS_ROOT)\src\m\intel386.h \
620 $(EMACS_ROOT)\src\config.h \
622 $(SRC)\m\intel386.h \
625 $(BLD)\firstfile.obj : \
627 $(EMACS_ROOT)\src\s\ms-w32.h \
628 $(EMACS_ROOT)\src\m\intel386.h \
629 $(EMACS_ROOT)\src\config.h
631 $(BLD)\floatfns.obj : \
633 $(EMACS_ROOT)\src\s\ms-w32.h \
634 $(EMACS_ROOT)\src\m\intel386.h \
635 $(EMACS_ROOT)\src\config.h \
640 $(EMACS_ROOT)\src\s\ms-w32.h \
641 $(EMACS_ROOT)\src\m\intel386.h \
642 $(EMACS_ROOT)\src\config.h \
646 $(SRC)\dispextern.h \
654 $(EMACS_ROOT)\src\s\ms-w32.h \
655 $(EMACS_ROOT)\src\m\intel386.h \
656 $(EMACS_ROOT)\src\config.h \
664 $(BLD)\getloadavg.obj : \
665 $(SRC)\getloadavg.c \
666 $(EMACS_ROOT)\nt\inc\sys\param.h \
667 $(EMACS_ROOT)\src\s\ms-w32.h \
668 $(EMACS_ROOT)\src\m\intel386.h \
669 $(EMACS_ROOT)\src\config.h \
671 $(SRC)\m\intel386.h \
673 $(EMACS_ROOT)\nt\inc\sys\file.h
675 $(BLD)\gmalloc.obj : \
677 $(EMACS_ROOT)\src\s\ms-w32.h \
678 $(EMACS_ROOT)\src\m\intel386.h \
679 $(EMACS_ROOT)\src\config.h \
680 $(EMACS_ROOT)\nt\inc\sys\param.h \
682 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
684 $(BLD)\hftctl.obj : \
686 $(EMACS_ROOT)\src\s\ms-w32.h \
687 $(EMACS_ROOT)\src\m\intel386.h \
688 $(EMACS_ROOT)\src\config.h \
689 $(EMACS_ROOT)\nt\inc\sys\ioctl.h
691 $(BLD)\indent.obj : \
693 $(EMACS_ROOT)\src\s\ms-w32.h \
694 $(EMACS_ROOT)\src\m\intel386.h \
695 $(EMACS_ROOT)\src\config.h \
703 $(SRC)\dispextern.h \
706 $(SRC)\region-cache.h \
709 $(BLD)\insdel.obj : \
711 $(EMACS_ROOT)\src\s\ms-w32.h \
712 $(EMACS_ROOT)\src\m\intel386.h \
713 $(EMACS_ROOT)\src\config.h \
714 $(SRC)\dispextern.h \
722 $(BLD)\intervals.obj : \
724 $(EMACS_ROOT)\src\s\ms-w32.h \
725 $(EMACS_ROOT)\src\m\intel386.h \
726 $(EMACS_ROOT)\src\config.h \
727 $(SRC)\dispextern.h \
735 $(BLD)\keyboard.obj : \
737 $(EMACS_ROOT)\src\s\ms-w32.h \
738 $(EMACS_ROOT)\src\m\intel386.h \
739 $(EMACS_ROOT)\src\config.h \
750 $(SRC)\dispextern.h \
753 $(SRC)\blockinput.h \
756 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
757 $(EMACS_ROOT)\nt\inc\sys\file.h \
766 $(BLD)\keymap.obj : \
768 $(EMACS_ROOT)\src\s\ms-w32.h \
769 $(EMACS_ROOT)\src\m\intel386.h \
770 $(EMACS_ROOT)\src\config.h \
777 $(BLD)\lastfile.obj : \
779 $(EMACS_ROOT)\src\s\ms-w32.h \
780 $(EMACS_ROOT)\src\m\intel386.h \
781 $(EMACS_ROOT)\src\config.h
785 $(EMACS_ROOT)\src\s\ms-w32.h \
786 $(EMACS_ROOT)\src\m\intel386.h \
787 $(EMACS_ROOT)\src\config.h \
788 $(EMACS_ROOT)\nt\inc\sys\file.h \
790 $(EMACS_ROOT)\src\epaths.h \
796 $(BLD)\macros.obj : \
798 $(EMACS_ROOT)\src\s\ms-w32.h \
799 $(EMACS_ROOT)\src\m\intel386.h \
800 $(EMACS_ROOT)\src\config.h \
806 $(BLD)\marker.obj : \
808 $(EMACS_ROOT)\src\s\ms-w32.h \
809 $(EMACS_ROOT)\src\m\intel386.h \
810 $(EMACS_ROOT)\src\config.h \
817 $(BLD)\minibuf.obj : \
819 $(EMACS_ROOT)\src\s\ms-w32.h \
820 $(EMACS_ROOT)\src\m\intel386.h \
821 $(EMACS_ROOT)\src\config.h \
824 $(SRC)\dispextern.h \
830 $(BLD)\mocklisp.obj : \
832 $(EMACS_ROOT)\src\s\ms-w32.h \
833 $(EMACS_ROOT)\src\m\intel386.h \
834 $(EMACS_ROOT)\src\config.h \
841 $(SRC)\m\intel386.h \
843 $(EMACS_ROOT)\nt\inc\pwd.h \
846 $(BLD)\w32heap.obj : \
850 $(SRC)\m\intel386.h \
853 $(BLD)\w32inevt.obj : \
856 $(SRC)\m\intel386.h \
859 $(SRC)\blockinput.h \
865 $(BLD)\w32proc.obj : \
868 $(SRC)\m\intel386.h \
875 $(BLD)\w32console.obj : \
876 $(SRC)\w32console.c \
878 $(SRC)\m\intel386.h \
885 $(BLD)\prefix-args.obj : \
890 $(EMACS_ROOT)\src\s\ms-w32.h \
891 $(EMACS_ROOT)\src\m\intel386.h \
892 $(EMACS_ROOT)\src\config.h \
898 $(SRC)\dispextern.h \
903 $(BLD)\process.obj : \
905 $(EMACS_ROOT)\src\s\ms-w32.h \
906 $(EMACS_ROOT)\src\m\intel386.h \
907 $(EMACS_ROOT)\src\config.h \
908 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
909 $(EMACS_ROOT)\nt\inc\sys\file.h \
926 $(BLD)\ralloc.obj : \
928 $(EMACS_ROOT)\src\s\ms-w32.h \
929 $(EMACS_ROOT)\src\m\intel386.h \
930 $(EMACS_ROOT)\src\config.h \
932 $(SRC)\m\intel386.h \
934 $(EMACS_ROOT)\nt\inc\sys\param.h \
939 $(EMACS_ROOT)\src\s\ms-w32.h \
940 $(EMACS_ROOT)\src\m\intel386.h \
941 $(EMACS_ROOT)\src\config.h \
943 $(SRC)\m\intel386.h \
949 $(BLD)\region-cache.obj : \
950 $(SRC)\region-cache.c \
951 $(EMACS_ROOT)\src\s\ms-w32.h \
952 $(EMACS_ROOT)\src\m\intel386.h \
953 $(EMACS_ROOT)\src\config.h \
955 $(SRC)\region-cache.h
957 $(BLD)\scroll.obj : \
959 $(EMACS_ROOT)\src\s\ms-w32.h \
960 $(EMACS_ROOT)\src\m\intel386.h \
961 $(EMACS_ROOT)\src\config.h \
963 $(SRC)\dispextern.h \
967 $(BLD)\search.obj : \
969 $(EMACS_ROOT)\src\s\ms-w32.h \
970 $(EMACS_ROOT)\src\m\intel386.h \
971 $(EMACS_ROOT)\src\config.h \
975 $(SRC)\blockinput.h \
977 $(SRC)\region-cache.h \
980 $(BLD)\strftime.obj : \
982 $(EMACS_ROOT)\src\s\ms-w32.h \
983 $(EMACS_ROOT)\src\m\intel386.h \
984 $(EMACS_ROOT)\src\config.h
986 $(BLD)\syntax.obj : \
988 $(EMACS_ROOT)\src\s\ms-w32.h \
989 $(EMACS_ROOT)\src\m\intel386.h \
990 $(EMACS_ROOT)\src\config.h \
996 $(BLD)\sysdep.obj : \
998 $(EMACS_ROOT)\src\s\ms-w32.h \
999 $(EMACS_ROOT)\src\m\intel386.h \
1000 $(EMACS_ROOT)\src\config.h \
1001 $(SRC)\blockinput.h \
1004 $(EMACS_ROOT)\nt\inc\sys\param.h \
1005 $(EMACS_ROOT)\nt\inc\sys\file.h \
1006 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
1007 $(EMACS_ROOT)\nt\inc\sys\file.h \
1013 $(SRC)\termhooks.h \
1016 $(SRC)\dispextern.h \
1021 $(SRC)\syssignal.h \
1026 $(EMACS_ROOT)\src\acldef.h \
1027 $(EMACS_ROOT)\src\chpdef.h
1031 $(EMACS_ROOT)\src\s\ms-w32.h \
1032 $(EMACS_ROOT)\src\m\intel386.h \
1033 $(EMACS_ROOT)\src\config.h \
1039 $(SRC)/dispextern.h \
1040 $(SRC)\termhooks.h \
1043 $(BLD)\termcap.obj : \
1045 $(EMACS_ROOT)\src\s\ms-w32.h \
1046 $(EMACS_ROOT)\src\m\intel386.h \
1047 $(EMACS_ROOT)\src\config.h \
1048 $(EMACS_ROOT)\nt\inc\sys\file.h
1050 $(BLD)\terminfo.obj : \
1053 $(BLD)\textprop.obj : \
1055 $(EMACS_ROOT)\src\s\ms-w32.h \
1056 $(EMACS_ROOT)\src\m\intel386.h \
1057 $(EMACS_ROOT)\src\config.h \
1058 $(SRC)\dispextern.h \
1060 $(SRC)\intervals.h \
1061 $(SRC)\composite.h \
1065 $(BLD)\tparam.obj : \
1067 $(EMACS_ROOT)\src\s\ms-w32.h \
1068 $(EMACS_ROOT)\src\m\intel386.h \
1069 $(EMACS_ROOT)\src\config.h
1073 $(EMACS_ROOT)\src\s\ms-w32.h \
1074 $(EMACS_ROOT)\src\m\intel386.h \
1075 $(EMACS_ROOT)\src\config.h \
1079 $(BLD)\unexw32.obj : \
1081 $(EMACS_ROOT)\src\s\ms-w32.h \
1082 $(EMACS_ROOT)\src\m\intel386.h \
1083 $(EMACS_ROOT)\src\config.h \
1086 $(BLD)\vm-limit.obj : \
1088 $(EMACS_ROOT)\src\s\ms-w32.h \
1089 $(EMACS_ROOT)\src\m\intel386.h \
1090 $(EMACS_ROOT)\src\config.h \
1093 $(BLD)\widget.obj : \
1095 $(EMACS_ROOT)\src\s\ms-w32.h \
1096 $(EMACS_ROOT)\src\m\intel386.h \
1097 $(EMACS_ROOT)\src\config.h \
1100 $(SRC)\dispextern.h \
1105 $(BLD)\window.obj : \
1107 $(EMACS_ROOT)\src\s\ms-w32.h \
1108 $(EMACS_ROOT)\src\m\intel386.h \
1109 $(EMACS_ROOT)\src\config.h \
1120 $(BLD)\xdisp.obj : \
1122 $(EMACS_ROOT)\src\s\ms-w32.h \
1123 $(EMACS_ROOT)\src\m\intel386.h \
1124 $(EMACS_ROOT)\src\config.h \
1133 $(SRC)\termhooks.h \
1134 $(SRC)\dispextern.h \
1136 $(SRC)\intervals.h \
1139 $(BLD)\xfaces.obj: \
1140 $(EMACS_ROOT)\src\s\ms-w32.h \
1141 $(EMACS_ROOT)\src\m\intel386.h \
1142 $(EMACS_ROOT)\src\config.h \
1149 $(SRC)\dispextern.h \
1151 $(SRC)\blockinput.h \
1153 $(SRC)\intervals.h \
1156 $(BLD)\w32fns.obj: \
1157 $(EMACS_ROOT)\src\s\ms-w32.h \
1158 $(EMACS_ROOT)\src\m\intel386.h \
1159 $(EMACS_ROOT)\src\config.h \
1168 $(SRC)\dispextern.h \
1170 $(SRC)\blockinput.h \
1175 $(BLD)\w32menu.obj: \
1176 $(EMACS_ROOT)\src\s\ms-w32.h \
1177 $(EMACS_ROOT)\src\m\intel386.h \
1178 $(EMACS_ROOT)\src\config.h \
1180 $(SRC)\termhooks.h \
1184 $(SRC)\blockinput.h \
1189 $(BLD)\w32term.obj: \
1190 $(EMACS_ROOT)\src\s\ms-w32.h \
1191 $(EMACS_ROOT)\src\m\intel386.h \
1192 $(EMACS_ROOT)\src\config.h \
1194 $(SRC)\blockinput.h \
1201 $(SRC)\dispextern.h \
1202 $(SRC)\termhooks.h \
1210 $(SRC)\intervals.h \
1211 $(SRC)\composite.h \
1214 $(BLD)\w32select.obj: \
1215 $(EMACS_ROOT)\src\s\ms-w32.h \
1216 $(EMACS_ROOT)\src\m\intel386.h \
1217 $(EMACS_ROOT)\src\config.h \
1218 $(SRC)\w32select.c \
1221 $(SRC)\dispextern.h \
1225 $(BLD)\w32reg.obj: \
1226 $(EMACS_ROOT)\src\s\ms-w32.h \
1227 $(EMACS_ROOT)\src\m\intel386.h \
1228 $(EMACS_ROOT)\src\config.h \
1234 $(BLD)\w32xfns.obj: \
1235 $(EMACS_ROOT)\src\s\ms-w32.h \
1236 $(EMACS_ROOT)\src\m\intel386.h \
1237 $(EMACS_ROOT)\src\config.h \
1240 $(BLD)\w32bdf.obj: \
1241 $(EMACS_ROOT)\src/s\ms-w32.h \
1242 $(EMACS_ROOT)\src/m\intel386.h \
1243 $(EMACS_ROOT)\src/config.h \
1247 $(SRC)\dispextern.h \
1249 $(SRC)\blockinput.h \