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 \
484 $(BLD)\dispnew.obj : \
486 $(EMACS_ROOT)\src\s\ms-w32.h \
487 $(EMACS_ROOT)\src\m\intel386.h \
488 $(EMACS_ROOT)\src\config.h \
499 $(SRC)\dispextern.h \
502 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
503 $(EMACS_ROOT)\nt\inc\sys\file.h \
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\file.h \
519 $(BLD)\doprnt.obj : \
521 $(EMACS_ROOT)\src\s\ms-w32.h \
522 $(EMACS_ROOT)\src\m\intel386.h \
523 $(EMACS_ROOT)\src\config.h
525 $(BLD)\dosfns.obj : \
527 $(EMACS_ROOT)\src\s\ms-w32.h \
528 $(EMACS_ROOT)\src\m\intel386.h \
529 $(EMACS_ROOT)\src\config.h \
537 $(BLD)\editfns.obj : \
539 $(EMACS_ROOT)\src\s\ms-w32.h \
540 $(EMACS_ROOT)\src\m\intel386.h \
541 $(EMACS_ROOT)\src\config.h \
543 $(EMACS_ROOT)\nt\inc\pwd.h \
544 $(SRC)\dispextern.h \
554 $(EMACS_ROOT)\src\s\ms-w32.h \
555 $(EMACS_ROOT)\src\m\intel386.h \
556 $(EMACS_ROOT)\src\config.h \
558 $(SRC)\dispextern.h \
562 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
563 $(EMACS_ROOT)\nt\inc\sys\file.h \
570 $(EMACS_ROOT)\src\s\ms-w32.h \
571 $(EMACS_ROOT)\src\m\intel386.h \
572 $(EMACS_ROOT)\src\config.h \
573 $(SRC)\blockinput.h \
577 $(BLD)\fileio.obj : \
579 $(EMACS_ROOT)\src\s\ms-w32.h \
580 $(EMACS_ROOT)\src\m\intel386.h \
581 $(EMACS_ROOT)\src\config.h \
583 $(EMACS_ROOT)\nt\inc\pwd.h \
585 $(EMACS_ROOT)\nt\inc\sys\param.h \
586 $(SRC)\dispextern.h \
592 $(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 \
601 $(EMACS_ROOT)\nt\inc\pwd.h \
602 $(EMACS_ROOT)\nt\inc\sys\file.h \
603 $(EMACS_ROOT)\src\epaths.h \
607 $(BLD)\filemode.obj : \
609 $(EMACS_ROOT)\src\s\ms-w32.h \
610 $(EMACS_ROOT)\src\m\intel386.h \
611 $(EMACS_ROOT)\src\config.h \
613 $(SRC)\m\intel386.h \
616 $(BLD)\firstfile.obj : \
618 $(EMACS_ROOT)\src\s\ms-w32.h \
619 $(EMACS_ROOT)\src\m\intel386.h \
620 $(EMACS_ROOT)\src\config.h
622 $(BLD)\floatfns.obj : \
624 $(EMACS_ROOT)\src\s\ms-w32.h \
625 $(EMACS_ROOT)\src\m\intel386.h \
626 $(EMACS_ROOT)\src\config.h \
631 $(EMACS_ROOT)\src\s\ms-w32.h \
632 $(EMACS_ROOT)\src\m\intel386.h \
633 $(EMACS_ROOT)\src\config.h \
637 $(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 \
697 $(SRC)\region-cache.h \
700 $(BLD)\insdel.obj : \
702 $(EMACS_ROOT)\src\s\ms-w32.h \
703 $(EMACS_ROOT)\src\m\intel386.h \
704 $(EMACS_ROOT)\src\config.h \
705 $(SRC)\dispextern.h \
713 $(BLD)\intervals.obj : \
715 $(EMACS_ROOT)\src\s\ms-w32.h \
716 $(EMACS_ROOT)\src\m\intel386.h \
717 $(EMACS_ROOT)\src\config.h \
718 $(SRC)\dispextern.h \
726 $(BLD)\keyboard.obj : \
728 $(EMACS_ROOT)\src\s\ms-w32.h \
729 $(EMACS_ROOT)\src\m\intel386.h \
730 $(EMACS_ROOT)\src\config.h \
741 $(SRC)\dispextern.h \
744 $(SRC)\blockinput.h \
747 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
748 $(EMACS_ROOT)\nt\inc\sys\file.h \
756 $(BLD)\keymap.obj : \
758 $(EMACS_ROOT)\src\s\ms-w32.h \
759 $(EMACS_ROOT)\src\m\intel386.h \
760 $(EMACS_ROOT)\src\config.h \
767 $(BLD)\lastfile.obj : \
769 $(EMACS_ROOT)\src\s\ms-w32.h \
770 $(EMACS_ROOT)\src\m\intel386.h \
771 $(EMACS_ROOT)\src\config.h
775 $(EMACS_ROOT)\src\s\ms-w32.h \
776 $(EMACS_ROOT)\src\m\intel386.h \
777 $(EMACS_ROOT)\src\config.h \
778 $(EMACS_ROOT)\nt\inc\sys\file.h \
780 $(EMACS_ROOT)\src\epaths.h \
786 $(BLD)\macros.obj : \
788 $(EMACS_ROOT)\src\s\ms-w32.h \
789 $(EMACS_ROOT)\src\m\intel386.h \
790 $(EMACS_ROOT)\src\config.h \
796 $(BLD)\marker.obj : \
798 $(EMACS_ROOT)\src\s\ms-w32.h \
799 $(EMACS_ROOT)\src\m\intel386.h \
800 $(EMACS_ROOT)\src\config.h \
807 $(BLD)\minibuf.obj : \
809 $(EMACS_ROOT)\src\s\ms-w32.h \
810 $(EMACS_ROOT)\src\m\intel386.h \
811 $(EMACS_ROOT)\src\config.h \
814 $(SRC)\dispextern.h \
820 $(BLD)\mocklisp.obj : \
822 $(EMACS_ROOT)\src\s\ms-w32.h \
823 $(EMACS_ROOT)\src\m\intel386.h \
824 $(EMACS_ROOT)\src\config.h \
831 $(SRC)\m\intel386.h \
833 $(EMACS_ROOT)\nt\inc\pwd.h \
836 $(BLD)\w32heap.obj : \
840 $(SRC)\m\intel386.h \
843 $(BLD)\w32inevt.obj : \
846 $(SRC)\m\intel386.h \
849 $(SRC)\blockinput.h \
855 $(BLD)\w32proc.obj : \
858 $(SRC)\m\intel386.h \
864 $(BLD)\w32console.obj : \
865 $(SRC)\w32console.c \
867 $(SRC)\m\intel386.h \
874 $(BLD)\prefix-args.obj : \
879 $(EMACS_ROOT)\src\s\ms-w32.h \
880 $(EMACS_ROOT)\src\m\intel386.h \
881 $(EMACS_ROOT)\src\config.h \
887 $(SRC)\dispextern.h \
892 $(BLD)\process.obj : \
894 $(EMACS_ROOT)\src\s\ms-w32.h \
895 $(EMACS_ROOT)\src\m\intel386.h \
896 $(EMACS_ROOT)\src\config.h \
897 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
898 $(EMACS_ROOT)\nt\inc\sys\file.h \
913 $(BLD)\ralloc.obj : \
915 $(EMACS_ROOT)\src\s\ms-w32.h \
916 $(EMACS_ROOT)\src\m\intel386.h \
917 $(EMACS_ROOT)\src\config.h \
919 $(SRC)\m\intel386.h \
921 $(EMACS_ROOT)\nt\inc\sys\param.h \
926 $(EMACS_ROOT)\src\s\ms-w32.h \
927 $(EMACS_ROOT)\src\m\intel386.h \
928 $(EMACS_ROOT)\src\config.h \
930 $(SRC)\m\intel386.h \
936 $(BLD)\region-cache.obj : \
937 $(SRC)\region-cache.c \
938 $(EMACS_ROOT)\src\s\ms-w32.h \
939 $(EMACS_ROOT)\src\m\intel386.h \
940 $(EMACS_ROOT)\src\config.h \
942 $(SRC)\region-cache.h
944 $(BLD)\scroll.obj : \
946 $(EMACS_ROOT)\src\s\ms-w32.h \
947 $(EMACS_ROOT)\src\m\intel386.h \
948 $(EMACS_ROOT)\src\config.h \
950 $(SRC)\dispextern.h \
954 $(BLD)\search.obj : \
956 $(EMACS_ROOT)\src\s\ms-w32.h \
957 $(EMACS_ROOT)\src\m\intel386.h \
958 $(EMACS_ROOT)\src\config.h \
962 $(SRC)\blockinput.h \
964 $(SRC)\region-cache.h \
967 $(BLD)\strftime.obj : \
969 $(EMACS_ROOT)\src\s\ms-w32.h \
970 $(EMACS_ROOT)\src\m\intel386.h \
971 $(EMACS_ROOT)\src\config.h
973 $(BLD)\syntax.obj : \
975 $(EMACS_ROOT)\src\s\ms-w32.h \
976 $(EMACS_ROOT)\src\m\intel386.h \
977 $(EMACS_ROOT)\src\config.h \
983 $(BLD)\sysdep.obj : \
985 $(EMACS_ROOT)\src\s\ms-w32.h \
986 $(EMACS_ROOT)\src\m\intel386.h \
987 $(EMACS_ROOT)\src\config.h \
988 $(SRC)\blockinput.h \
991 $(EMACS_ROOT)\nt\inc\sys\param.h \
992 $(EMACS_ROOT)\nt\inc\sys\file.h \
993 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
994 $(EMACS_ROOT)\nt\inc\sys\file.h \
1002 $(SRC)\dispextern.h \
1006 $(SRC)\syssignal.h \
1009 $(EMACS_ROOT)\src\acldef.h \
1010 $(EMACS_ROOT)\src\chpdef.h
1014 $(EMACS_ROOT)\src\s\ms-w32.h \
1015 $(EMACS_ROOT)\src\m\intel386.h \
1016 $(EMACS_ROOT)\src\config.h \
1022 $(SRC)/dispextern.h \
1023 $(SRC)\termhooks.h \
1026 $(BLD)\termcap.obj : \
1028 $(EMACS_ROOT)\src\s\ms-w32.h \
1029 $(EMACS_ROOT)\src\m\intel386.h \
1030 $(EMACS_ROOT)\src\config.h \
1031 $(EMACS_ROOT)\nt\inc\sys\file.h
1033 $(BLD)\terminfo.obj : \
1036 $(BLD)\textprop.obj : \
1038 $(EMACS_ROOT)\src\s\ms-w32.h \
1039 $(EMACS_ROOT)\src\m\intel386.h \
1040 $(EMACS_ROOT)\src\config.h \
1041 $(SRC)\dispextern.h \
1043 $(SRC)\intervals.h \
1044 $(SRC)\composite.h \
1048 $(BLD)\tparam.obj : \
1050 $(EMACS_ROOT)\src\s\ms-w32.h \
1051 $(EMACS_ROOT)\src\m\intel386.h \
1052 $(EMACS_ROOT)\src\config.h
1056 $(EMACS_ROOT)\src\s\ms-w32.h \
1057 $(EMACS_ROOT)\src\m\intel386.h \
1058 $(EMACS_ROOT)\src\config.h \
1062 $(BLD)\unexw32.obj : \
1064 $(EMACS_ROOT)\src\s\ms-w32.h \
1065 $(EMACS_ROOT)\src\m\intel386.h \
1066 $(EMACS_ROOT)\src\config.h \
1069 $(BLD)\vm-limit.obj : \
1071 $(EMACS_ROOT)\src\s\ms-w32.h \
1072 $(EMACS_ROOT)\src\m\intel386.h \
1073 $(EMACS_ROOT)\src\config.h \
1076 $(BLD)\widget.obj : \
1078 $(EMACS_ROOT)\src\s\ms-w32.h \
1079 $(EMACS_ROOT)\src\m\intel386.h \
1080 $(EMACS_ROOT)\src\config.h \
1083 $(SRC)\dispextern.h \
1088 $(BLD)\window.obj : \
1090 $(EMACS_ROOT)\src\s\ms-w32.h \
1091 $(EMACS_ROOT)\src\m\intel386.h \
1092 $(EMACS_ROOT)\src\config.h \
1103 $(BLD)\xdisp.obj : \
1105 $(EMACS_ROOT)\src\s\ms-w32.h \
1106 $(EMACS_ROOT)\src\m\intel386.h \
1107 $(EMACS_ROOT)\src\config.h \
1116 $(SRC)\termhooks.h \
1117 $(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 \
1151 $(SRC)\dispextern.h \
1153 $(SRC)\blockinput.h \
1158 $(BLD)\w32menu.obj: \
1159 $(EMACS_ROOT)\src\s\ms-w32.h \
1160 $(EMACS_ROOT)\src\m\intel386.h \
1161 $(EMACS_ROOT)\src\config.h \
1163 $(SRC)\termhooks.h \
1167 $(SRC)\blockinput.h \
1172 $(BLD)\w32term.obj: \
1173 $(EMACS_ROOT)\src\s\ms-w32.h \
1174 $(EMACS_ROOT)\src\m\intel386.h \
1175 $(EMACS_ROOT)\src\config.h \
1177 $(SRC)\blockinput.h \
1184 $(SRC)\dispextern.h \
1185 $(SRC)\termhooks.h \
1193 $(SRC)\intervals.h \
1194 $(SRC)\composite.h \
1197 $(BLD)\w32select.obj: \
1198 $(EMACS_ROOT)\src\s\ms-w32.h \
1199 $(EMACS_ROOT)\src\m\intel386.h \
1200 $(EMACS_ROOT)\src\config.h \
1201 $(SRC)\w32select.c \
1204 $(SRC)\dispextern.h \
1208 $(BLD)\w32reg.obj: \
1209 $(EMACS_ROOT)\src\s\ms-w32.h \
1210 $(EMACS_ROOT)\src\m\intel386.h \
1211 $(EMACS_ROOT)\src\config.h \
1217 $(BLD)\w32xfns.obj: \
1218 $(EMACS_ROOT)\src\s\ms-w32.h \
1219 $(EMACS_ROOT)\src\m\intel386.h \
1220 $(EMACS_ROOT)\src\config.h \
1223 $(BLD)\w32bdf.obj: \
1224 $(EMACS_ROOT)\src/s\ms-w32.h \
1225 $(EMACS_ROOT)\src/m\intel386.h \
1226 $(EMACS_ROOT)\src/config.h \
1230 $(SRC)\dispextern.h \
1232 $(SRC)\blockinput.h \