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 \
122 OBJ2 = $(BLD)\w32.obj \
124 $(BLD)\w32inevt.obj \
126 $(BLD)\w32console.obj \
142 $(BLD)\floatfns.obj \
145 $(BLD)\intervals.obj \
146 $(BLD)\composite.obj \
148 $(BLD)\textprop.obj \
149 $(BLD)\vm-limit.obj \
150 $(BLD)\region-cache.obj \
151 $(BLD)\strftime.obj \
154 $(BLD)\category.obj \
158 WIN32OBJ = $(BLD)\w32term.obj \
162 $(BLD)\w32select.obj \
187 # Build the executable and dump it.
192 # Headers we would preprocess if we could.
194 PREPARED_HEADERS = config.h epaths.h
195 config.h: ..\nt\$(CONFIG_H)
197 epaths.h: ..\nt\paths.h
201 # Make sure we have the DOC file in the right place.
203 DOC = $(OBJDIR)\etc\DOC-X
204 $(DOC):; cd ..\lib-src
206 $(MAKE) $(MFLAGS) -f makefile.nt all
210 # The dumped executable
213 $(EMACS): $(DOC) $(TEMACS)
214 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup dump
217 # The undumped executable
218 # Note the extra post-link step to insert a static preload heap section.
219 # If preload runs out of memory, increase the last argument to addsection
220 # (it is the preload heap size in MB).
222 temacs: $(BLD) $(TEMACS)
223 $(TEMACS): $(PREPARED_HEADERS) $(TLIB0) $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
224 $(LINK) -out:$(TEMACS_TMP) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
225 ..\nt\$(BLD)\addsection $(TEMACS_TMP) $(TEMACS) EMHEAP 16
227 bootstrap: bootstrap-emacs
230 # Build a temacs with a sufficiently large PURESIZE to load the
231 # Lisp files from loadup.el in source form.
233 bootstrap-temacs: bootstrap-clean
234 $(MAKE) $(MFLAGS) -f makefile.nt temacs CFLAGS="$(CFLAGS) -DPURESIZE=5000000"
237 # Dump an Emacs executable named bootstrap-emacs containing the
238 # files from loadup.el in source form.
240 bootstrap-emacs: bootstrap-temacs
241 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup bootstrap
243 $(CP) $(EMACS) ..\bin
246 # Force recompile of files that depend on PURESIZE
249 - $(DEL) $(BLD)\alloc.obj
250 - $(DEL) $(BLD)\data.obj
251 - $(DEL) $(BLD)\intervals.obj
252 - $(DEL) $(BLD)\keyboard.obj
253 - $(DEL) $(BLD)\keymap.obj
256 # The resource file. NT 3.10 requires the use of cvtres; even though
257 # it is not necessary on later versions, it is still ok to use it.
259 $(TRES): ..\nt\emacs.rc
260 $(RC) -i..\nt -Fo$(BLD)\emacs.res $**
262 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
266 # Build the library. Split up the build into two phases...otherwise we
267 # run out of command line space.
276 $(TLIBW32): $(WIN32OBJ)
281 # Place lastfile.obj in its own library so that it can be loaded after
282 # the source libraries but before any system libraries. Doing so defines
283 # the end of Emacs' data section portably across compilers and systems.
285 $(TLASTLIB): $(BLD)\lastfile.obj
289 # Assuming INSTALL_DIR is defined, build and install emacs in it.
292 - mkdir $(INSTALL_DIR)\bin
293 $(CP) $(EMACS) $(INSTALL_DIR)\bin
298 clean:; - $(DEL) *~ s\*~
299 - $(DEL) *.pdb config.h epaths.h
300 - $(DEL) *.orig *.rej *.crlf
301 - $(DEL) s\*.orig s\*.rej s\*.crlf
302 - $(DEL_TREE) deleted
304 - $(DEL_TREE) obj-spd
307 # These files are the ones that compile conditionally on CANNOT_DUMP...
308 # this target is mostly used for debugging.
310 cleandump:; cd $(BLD)
311 - $(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
320 $(BLD)\abbrev.obj : \
322 $(EMACS_ROOT)\src\s\ms-w32.h \
323 $(EMACS_ROOT)\src\m\intel386.h \
324 $(EMACS_ROOT)\src\config.h \
331 $(EMACS_ROOT)\src\s\ms-w32.h \
332 $(EMACS_ROOT)\src\m\intel386.h \
333 $(EMACS_ROOT)\src\config.h \
334 $(SRC)\dispextern.h \
341 $(SRC)\blockinput.h \
344 $(BLD)\alloca.obj : \
346 $(EMACS_ROOT)\src\s\ms-w32.h \
347 $(EMACS_ROOT)\src\m\intel386.h \
348 $(EMACS_ROOT)\src\config.h \
350 $(SRC)\m\intel386.h \
354 $(BLD)\atimer.obj : \
356 $(EMACS_ROOT)\src\s\ms-w32.h \
357 $(EMACS_ROOT)\src\m\intel386.h \
358 $(EMACS_ROOT)\src\config.h \
360 $(SRC)\m\intel386.h \
367 $(BLD)\buffer.obj : \
369 $(EMACS_ROOT)\nt\inc\sys\param.h \
370 $(EMACS_ROOT)\src\s\ms-w32.h \
371 $(EMACS_ROOT)\src\m\intel386.h \
372 $(EMACS_ROOT)\src\config.h \
373 $(SRC)\dispextern.h \
381 $(SRC)\blockinput.h \
382 $(SRC)\region-cache.h
384 $(BLD)\bytecode.obj : \
386 $(EMACS_ROOT)\src\s\ms-w32.h \
387 $(EMACS_ROOT)\src\m\intel386.h \
388 $(EMACS_ROOT)\src\config.h \
392 $(BLD)\callint.obj : \
394 $(EMACS_ROOT)\src\s\ms-w32.h \
395 $(EMACS_ROOT)\src\m\intel386.h \
396 $(EMACS_ROOT)\src\config.h \
403 $(BLD)\callproc.obj : \
405 $(EMACS_ROOT)\src\s\ms-w32.h \
406 $(EMACS_ROOT)\src\m\intel386.h \
407 $(EMACS_ROOT)\src\config.h \
409 $(EMACS_ROOT)\nt\inc\sys\param.h \
414 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
415 $(EMACS_ROOT)\nt\inc\sys\file.h \
418 $(BLD)\casefiddle.obj : \
419 $(SRC)\casefiddle.c \
420 $(EMACS_ROOT)\src\s\ms-w32.h \
421 $(EMACS_ROOT)\src\m\intel386.h \
422 $(EMACS_ROOT)\src\config.h \
426 $(CC) $(CFLAGS) -Fo$@ casefiddle.c
428 $(BLD)\casetab.obj : \
430 $(EMACS_ROOT)\src\s\ms-w32.h \
431 $(EMACS_ROOT)\src\m\intel386.h \
432 $(EMACS_ROOT)\src\config.h \
437 $(EMACS_ROOT)\src\s\ms-w32.h \
438 $(EMACS_ROOT)\src\m\intel386.h \
439 $(EMACS_ROOT)\src\config.h \
445 $(EMACS_ROOT)\src\s\ms-w32.h \
446 $(EMACS_ROOT)\src\m\intel386.h \
447 $(EMACS_ROOT)\src\config.h \
452 $(BLD)\composite.obj : \
458 $(EMACS_ROOT)\src\s\ms-w32.h \
459 $(EMACS_ROOT)\src\m\intel386.h \
460 $(EMACS_ROOT)\src\config.h
464 $(EMACS_ROOT)\src\s\ms-w32.h \
465 $(EMACS_ROOT)\src\m\intel386.h \
466 $(EMACS_ROOT)\src\config.h \
473 $(EMACS_ROOT)\src\s\ms-w32.h \
474 $(EMACS_ROOT)\src\m\intel386.h \
475 $(EMACS_ROOT)\src\config.h \
482 $(BLD)\dispnew.obj : \
484 $(EMACS_ROOT)\src\s\ms-w32.h \
485 $(EMACS_ROOT)\src\m\intel386.h \
486 $(EMACS_ROOT)\src\config.h \
497 $(SRC)\dispextern.h \
500 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
501 $(EMACS_ROOT)\nt\inc\sys\file.h \
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\file.h \
517 $(BLD)\doprnt.obj : \
519 $(EMACS_ROOT)\src\s\ms-w32.h \
520 $(EMACS_ROOT)\src\m\intel386.h \
521 $(EMACS_ROOT)\src\config.h
523 $(BLD)\dosfns.obj : \
525 $(EMACS_ROOT)\src\s\ms-w32.h \
526 $(EMACS_ROOT)\src\m\intel386.h \
527 $(EMACS_ROOT)\src\config.h \
535 $(BLD)\editfns.obj : \
537 $(EMACS_ROOT)\src\s\ms-w32.h \
538 $(EMACS_ROOT)\src\m\intel386.h \
539 $(EMACS_ROOT)\src\config.h \
542 $(EMACS_ROOT)\nt\inc\pwd.h \
543 $(SRC)\dispextern.h \
553 $(EMACS_ROOT)\src\s\ms-w32.h \
554 $(EMACS_ROOT)\src\m\intel386.h \
555 $(EMACS_ROOT)\src\config.h \
557 $(SRC)\dispextern.h \
560 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
561 $(EMACS_ROOT)\nt\inc\sys\file.h \
568 $(EMACS_ROOT)\src\s\ms-w32.h \
569 $(EMACS_ROOT)\src\m\intel386.h \
570 $(EMACS_ROOT)\src\config.h \
571 $(SRC)\blockinput.h \
575 $(BLD)\fileio.obj : \
577 $(EMACS_ROOT)\src\s\ms-w32.h \
578 $(EMACS_ROOT)\src\m\intel386.h \
579 $(EMACS_ROOT)\src\config.h \
582 $(EMACS_ROOT)\nt\inc\pwd.h \
584 $(EMACS_ROOT)\nt\inc\sys\param.h \
586 $(SRC)\dispextern.h \
591 $(EMACS_ROOT)\nt\inc\sys\file.h \
595 $(BLD)\filelock.obj : \
597 $(EMACS_ROOT)\src\s\ms-w32.h \
598 $(EMACS_ROOT)\src\m\intel386.h \
599 $(EMACS_ROOT)\src\config.h \
602 $(EMACS_ROOT)\nt\inc\pwd.h \
603 $(EMACS_ROOT)\nt\inc\sys\file.h \
604 $(EMACS_ROOT)\src\epaths.h \
609 $(BLD)\filemode.obj : \
611 $(EMACS_ROOT)\src\s\ms-w32.h \
612 $(EMACS_ROOT)\src\m\intel386.h \
613 $(EMACS_ROOT)\src\config.h \
615 $(SRC)\m\intel386.h \
618 $(BLD)\firstfile.obj : \
620 $(EMACS_ROOT)\src\s\ms-w32.h \
621 $(EMACS_ROOT)\src\m\intel386.h \
622 $(EMACS_ROOT)\src\config.h
624 $(BLD)\floatfns.obj : \
626 $(EMACS_ROOT)\src\s\ms-w32.h \
627 $(EMACS_ROOT)\src\m\intel386.h \
628 $(EMACS_ROOT)\src\config.h \
633 $(EMACS_ROOT)\src\s\ms-w32.h \
634 $(EMACS_ROOT)\src\m\intel386.h \
635 $(EMACS_ROOT)\src\config.h \
639 $(SRC)\dispextern.h \
645 $(EMACS_ROOT)\src\s\ms-w32.h \
646 $(EMACS_ROOT)\src\m\intel386.h \
647 $(EMACS_ROOT)\src\config.h \
655 $(BLD)\getloadavg.obj : \
656 $(SRC)\getloadavg.c \
657 $(EMACS_ROOT)\nt\inc\sys\param.h \
658 $(EMACS_ROOT)\src\s\ms-w32.h \
659 $(EMACS_ROOT)\src\m\intel386.h \
660 $(EMACS_ROOT)\src\config.h \
662 $(SRC)\m\intel386.h \
664 $(EMACS_ROOT)\nt\inc\sys\file.h
666 $(BLD)\gmalloc.obj : \
668 $(EMACS_ROOT)\src\s\ms-w32.h \
669 $(EMACS_ROOT)\src\m\intel386.h \
670 $(EMACS_ROOT)\src\config.h \
671 $(EMACS_ROOT)\nt\inc\sys\param.h \
673 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
675 $(BLD)\hftctl.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\ioctl.h
682 $(BLD)\indent.obj : \
684 $(EMACS_ROOT)\src\s\ms-w32.h \
685 $(EMACS_ROOT)\src\m\intel386.h \
686 $(EMACS_ROOT)\src\config.h \
694 $(SRC)\dispextern.h \
696 $(SRC)\region-cache.h \
699 $(BLD)\insdel.obj : \
701 $(EMACS_ROOT)\src\s\ms-w32.h \
702 $(EMACS_ROOT)\src\m\intel386.h \
703 $(EMACS_ROOT)\src\config.h \
704 $(SRC)\dispextern.h \
711 $(BLD)\intervals.obj : \
713 $(EMACS_ROOT)\src\s\ms-w32.h \
714 $(EMACS_ROOT)\src\m\intel386.h \
715 $(EMACS_ROOT)\src\config.h \
716 $(SRC)\dispextern.h \
723 $(BLD)\keyboard.obj : \
725 $(EMACS_ROOT)\src\s\ms-w32.h \
726 $(EMACS_ROOT)\src\m\intel386.h \
727 $(EMACS_ROOT)\src\config.h \
738 $(SRC)\dispextern.h \
741 $(SRC)\blockinput.h \
744 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
745 $(EMACS_ROOT)\nt\inc\sys\file.h \
753 $(BLD)\keymap.obj : \
755 $(EMACS_ROOT)\src\s\ms-w32.h \
756 $(EMACS_ROOT)\src\m\intel386.h \
757 $(EMACS_ROOT)\src\config.h \
764 $(BLD)\lastfile.obj : \
766 $(EMACS_ROOT)\src\s\ms-w32.h \
767 $(EMACS_ROOT)\src\m\intel386.h \
768 $(EMACS_ROOT)\src\config.h
772 $(EMACS_ROOT)\src\s\ms-w32.h \
773 $(EMACS_ROOT)\src\m\intel386.h \
774 $(EMACS_ROOT)\src\config.h \
775 $(EMACS_ROOT)\nt\inc\sys\file.h \
777 $(EMACS_ROOT)\src\epaths.h \
783 $(BLD)\macros.obj : \
785 $(EMACS_ROOT)\src\s\ms-w32.h \
786 $(EMACS_ROOT)\src\m\intel386.h \
787 $(EMACS_ROOT)\src\config.h \
793 $(BLD)\marker.obj : \
795 $(EMACS_ROOT)\src\s\ms-w32.h \
796 $(EMACS_ROOT)\src\m\intel386.h \
797 $(EMACS_ROOT)\src\config.h \
800 $(BLD)\minibuf.obj : \
802 $(EMACS_ROOT)\src\s\ms-w32.h \
803 $(EMACS_ROOT)\src\m\intel386.h \
804 $(EMACS_ROOT)\src\config.h \
807 $(SRC)\dispextern.h \
812 $(BLD)\mocklisp.obj : \
814 $(EMACS_ROOT)\src\s\ms-w32.h \
815 $(EMACS_ROOT)\src\m\intel386.h \
816 $(EMACS_ROOT)\src\config.h \
823 $(SRC)\m\intel386.h \
825 $(EMACS_ROOT)\nt\inc\pwd.h \
828 $(BLD)\w32heap.obj : \
832 $(SRC)\m\intel386.h \
835 $(BLD)\w32inevt.obj : \
838 $(SRC)\m\intel386.h \
841 $(SRC)\blockinput.h \
846 $(BLD)\w32proc.obj : \
849 $(SRC)\m\intel386.h \
856 $(BLD)\w32console.obj : \
857 $(SRC)\w32console.c \
859 $(SRC)\m\intel386.h \
866 $(BLD)\prefix-args.obj : \
871 $(EMACS_ROOT)\src\s\ms-w32.h \
872 $(EMACS_ROOT)\src\m\intel386.h \
873 $(EMACS_ROOT)\src\config.h \
879 $(SRC)\dispextern.h \
883 $(BLD)\process.obj : \
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\ioctl.h \
889 $(EMACS_ROOT)\nt\inc\sys\file.h \
906 $(BLD)\ralloc.obj : \
908 $(EMACS_ROOT)\src\s\ms-w32.h \
909 $(EMACS_ROOT)\src\m\intel386.h \
910 $(EMACS_ROOT)\src\config.h \
912 $(SRC)\m\intel386.h \
914 $(EMACS_ROOT)\nt\inc\sys\param.h \
919 $(EMACS_ROOT)\src\s\ms-w32.h \
920 $(EMACS_ROOT)\src\m\intel386.h \
921 $(EMACS_ROOT)\src\config.h \
923 $(SRC)\m\intel386.h \
929 $(BLD)\region-cache.obj : \
930 $(SRC)\region-cache.c \
931 $(EMACS_ROOT)\src\s\ms-w32.h \
932 $(EMACS_ROOT)\src\m\intel386.h \
933 $(EMACS_ROOT)\src\config.h \
935 $(SRC)\region-cache.h
937 $(BLD)\scroll.obj : \
939 $(EMACS_ROOT)\src\s\ms-w32.h \
940 $(EMACS_ROOT)\src\m\intel386.h \
941 $(EMACS_ROOT)\src\config.h \
943 $(SRC)\dispextern.h \
946 $(BLD)\search.obj : \
948 $(EMACS_ROOT)\src\s\ms-w32.h \
949 $(EMACS_ROOT)\src\m\intel386.h \
950 $(EMACS_ROOT)\src\config.h \
954 $(SRC)\blockinput.h \
956 $(SRC)\region-cache.h \
959 $(BLD)\strftime.obj : \
961 $(EMACS_ROOT)\src\s\ms-w32.h \
962 $(EMACS_ROOT)\src\m\intel386.h \
963 $(EMACS_ROOT)\src\config.h
965 $(BLD)\sunfns.obj : \
967 $(EMACS_ROOT)\src\s\ms-w32.h \
968 $(EMACS_ROOT)\src\m\intel386.h \
969 $(EMACS_ROOT)\src\config.h \
974 $(BLD)\syntax.obj : \
976 $(EMACS_ROOT)\src\s\ms-w32.h \
977 $(EMACS_ROOT)\src\m\intel386.h \
978 $(EMACS_ROOT)\src\config.h \
984 $(BLD)\sysdep.obj : \
986 $(EMACS_ROOT)\src\s\ms-w32.h \
987 $(EMACS_ROOT)\src\m\intel386.h \
988 $(EMACS_ROOT)\src\config.h \
989 $(SRC)\blockinput.h \
992 $(EMACS_ROOT)\nt\inc\sys\param.h \
993 $(EMACS_ROOT)\nt\inc\sys\file.h \
994 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
995 $(EMACS_ROOT)\nt\inc\sys\file.h \
1001 $(SRC)\termhooks.h \
1004 $(SRC)\dispextern.h \
1008 $(SRC)\syssignal.h \
1013 $(EMACS_ROOT)\src\acldef.h \
1014 $(EMACS_ROOT)\src\chpdef.h
1018 $(EMACS_ROOT)\src\s\ms-w32.h \
1019 $(EMACS_ROOT)\src\m\intel386.h \
1020 $(EMACS_ROOT)\src\config.h \
1026 $(SRC)\termhooks.h \
1029 $(BLD)\termcap.obj : \
1031 $(EMACS_ROOT)\src\s\ms-w32.h \
1032 $(EMACS_ROOT)\src\m\intel386.h \
1033 $(EMACS_ROOT)\src\config.h \
1034 $(EMACS_ROOT)\nt\inc\sys\file.h
1036 $(BLD)\terminfo.obj : \
1039 $(BLD)\textprop.obj : \
1041 $(EMACS_ROOT)\src\s\ms-w32.h \
1042 $(EMACS_ROOT)\src\m\intel386.h \
1043 $(EMACS_ROOT)\src\config.h \
1044 $(SRC)\dispextern.h \
1045 $(SRC)\intervals.h \
1046 $(SRC)\composite.h \
1050 $(BLD)\tparam.obj : \
1052 $(EMACS_ROOT)\src\s\ms-w32.h \
1053 $(EMACS_ROOT)\src\m\intel386.h \
1054 $(EMACS_ROOT)\src\config.h
1058 $(EMACS_ROOT)\src\s\ms-w32.h \
1059 $(EMACS_ROOT)\src\m\intel386.h \
1060 $(EMACS_ROOT)\src\config.h \
1064 $(BLD)\unexw32.obj : \
1066 $(EMACS_ROOT)\src\s\ms-w32.h \
1067 $(EMACS_ROOT)\src\m\intel386.h \
1068 $(EMACS_ROOT)\src\config.h \
1071 $(BLD)\vm-limit.obj : \
1073 $(EMACS_ROOT)\src\s\ms-w32.h \
1074 $(EMACS_ROOT)\src\m\intel386.h \
1075 $(EMACS_ROOT)\src\config.h \
1078 $(BLD)\widget.obj : \
1080 $(EMACS_ROOT)\src\s\ms-w32.h \
1081 $(EMACS_ROOT)\src\m\intel386.h \
1082 $(EMACS_ROOT)\src\config.h \
1085 $(SRC)\dispextern.h \
1089 $(BLD)\window.obj : \
1091 $(EMACS_ROOT)\src\s\ms-w32.h \
1092 $(EMACS_ROOT)\src\m\intel386.h \
1093 $(EMACS_ROOT)\src\config.h \
1104 $(BLD)\xdisp.obj : \
1106 $(EMACS_ROOT)\src\s\ms-w32.h \
1107 $(EMACS_ROOT)\src\m\intel386.h \
1108 $(EMACS_ROOT)\src\config.h \
1117 $(SRC)\termhooks.h \
1118 $(SRC)\dispextern.h \
1119 $(SRC)\intervals.h \
1122 $(BLD)\xfaces.obj: \
1123 $(EMACS_ROOT)\src\s\ms-w32.h \
1124 $(EMACS_ROOT)\src\m\intel386.h \
1125 $(EMACS_ROOT)\src\config.h \
1132 $(SRC)\dispextern.h \
1134 $(SRC)\blockinput.h \
1136 $(SRC)\intervals.h \
1139 $(BLD)\w32fns.obj: \
1140 $(EMACS_ROOT)\src\s\ms-w32.h \
1141 $(EMACS_ROOT)\src\m\intel386.h \
1142 $(EMACS_ROOT)\src\config.h \
1144 $(SRC)\x-list-font.c \
1152 $(SRC)\dispextern.h \
1154 $(SRC)\blockinput.h \
1159 $(BLD)\w32menu.obj: \
1160 $(EMACS_ROOT)\src\s\ms-w32.h \
1161 $(EMACS_ROOT)\src\m\intel386.h \
1162 $(EMACS_ROOT)\src\config.h \
1164 $(SRC)\termhooks.h \
1168 $(SRC)\blockinput.h \
1173 $(BLD)\w32term.obj: \
1174 $(EMACS_ROOT)\src\s\ms-w32.h \
1175 $(EMACS_ROOT)\src\m\intel386.h \
1176 $(EMACS_ROOT)\src\config.h \
1178 $(SRC)\blockinput.h \
1185 $(SRC)\dispextern.h \
1186 $(SRC)\termhooks.h \
1194 $(SRC)\intervals.h \
1195 $(SRC)\composite.h \
1198 $(BLD)\w32select.obj: \
1199 $(EMACS_ROOT)\src\s\ms-w32.h \
1200 $(EMACS_ROOT)\src\m\intel386.h \
1201 $(EMACS_ROOT)\src\config.h \
1202 $(SRC)\w32select.c \
1205 $(SRC)\dispextern.h \
1209 $(BLD)\w32reg.obj: \
1210 $(EMACS_ROOT)\src\s\ms-w32.h \
1211 $(EMACS_ROOT)\src\m\intel386.h \
1212 $(EMACS_ROOT)\src\config.h \
1218 $(BLD)\w32xfns.obj: \
1219 $(EMACS_ROOT)\src\s\ms-w32.h \
1220 $(EMACS_ROOT)\src\m\intel386.h \
1221 $(EMACS_ROOT)\src\config.h \
1224 $(BLD)\w32bdf.obj: \
1225 $(EMACS_ROOT)\src/s\ms-w32.h \
1226 $(EMACS_ROOT)\src/m\intel386.h \
1227 $(EMACS_ROOT)\src/config.h \
1231 $(SRC)\dispextern.h \
1233 $(SRC)\blockinput.h \