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 \
342 $(SRC)\blockinput.h \
345 $(BLD)\alloca.obj : \
347 $(EMACS_ROOT)\src\s\ms-w32.h \
348 $(EMACS_ROOT)\src\m\intel386.h \
349 $(EMACS_ROOT)\src\config.h \
351 $(SRC)\m\intel386.h \
355 $(BLD)\atimer.obj : \
357 $(EMACS_ROOT)\src\s\ms-w32.h \
358 $(EMACS_ROOT)\src\m\intel386.h \
359 $(EMACS_ROOT)\src\config.h \
361 $(SRC)\m\intel386.h \
368 $(BLD)\buffer.obj : \
370 $(EMACS_ROOT)\nt\inc\sys\param.h \
371 $(EMACS_ROOT)\src\s\ms-w32.h \
372 $(EMACS_ROOT)\src\m\intel386.h \
373 $(EMACS_ROOT)\src\config.h \
374 $(SRC)\dispextern.h \
383 $(SRC)\blockinput.h \
384 $(SRC)\region-cache.h
386 $(BLD)\bytecode.obj : \
388 $(EMACS_ROOT)\src\s\ms-w32.h \
389 $(EMACS_ROOT)\src\m\intel386.h \
390 $(EMACS_ROOT)\src\config.h \
394 $(BLD)\callint.obj : \
396 $(EMACS_ROOT)\src\s\ms-w32.h \
397 $(EMACS_ROOT)\src\m\intel386.h \
398 $(EMACS_ROOT)\src\config.h \
404 $(BLD)\callproc.obj : \
406 $(EMACS_ROOT)\src\s\ms-w32.h \
407 $(EMACS_ROOT)\src\m\intel386.h \
408 $(EMACS_ROOT)\src\config.h \
410 $(EMACS_ROOT)\nt\inc\sys\param.h \
415 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
416 $(EMACS_ROOT)\nt\inc\sys\file.h \
419 $(BLD)\casefiddle.obj : \
420 $(SRC)\casefiddle.c \
421 $(EMACS_ROOT)\src\s\ms-w32.h \
422 $(EMACS_ROOT)\src\m\intel386.h \
423 $(EMACS_ROOT)\src\config.h \
427 $(CC) $(CFLAGS) -Fo$@ casefiddle.c
429 $(BLD)\casetab.obj : \
431 $(EMACS_ROOT)\src\s\ms-w32.h \
432 $(EMACS_ROOT)\src\m\intel386.h \
433 $(EMACS_ROOT)\src\config.h \
438 $(EMACS_ROOT)\src\s\ms-w32.h \
439 $(EMACS_ROOT)\src\m\intel386.h \
440 $(EMACS_ROOT)\src\config.h \
446 $(EMACS_ROOT)\src\s\ms-w32.h \
447 $(EMACS_ROOT)\src\m\intel386.h \
448 $(EMACS_ROOT)\src\config.h \
453 $(BLD)\composite.obj : \
459 $(EMACS_ROOT)\src\s\ms-w32.h \
460 $(EMACS_ROOT)\src\m\intel386.h \
461 $(EMACS_ROOT)\src\config.h
465 $(EMACS_ROOT)\src\s\ms-w32.h \
466 $(EMACS_ROOT)\src\m\intel386.h \
467 $(EMACS_ROOT)\src\config.h \
474 $(EMACS_ROOT)\src\s\ms-w32.h \
475 $(EMACS_ROOT)\src\m\intel386.h \
476 $(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 \
541 $(EMACS_ROOT)\nt\inc\pwd.h \
542 $(SRC)\dispextern.h \
552 $(EMACS_ROOT)\src\s\ms-w32.h \
553 $(EMACS_ROOT)\src\m\intel386.h \
554 $(EMACS_ROOT)\src\config.h \
556 $(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 \
581 $(EMACS_ROOT)\nt\inc\pwd.h \
583 $(EMACS_ROOT)\nt\inc\sys\param.h \
584 $(SRC)\dispextern.h \
590 $(EMACS_ROOT)\nt\inc\sys\file.h \
593 $(BLD)\filelock.obj : \
595 $(EMACS_ROOT)\src\s\ms-w32.h \
596 $(EMACS_ROOT)\src\m\intel386.h \
597 $(EMACS_ROOT)\src\config.h \
599 $(EMACS_ROOT)\nt\inc\pwd.h \
600 $(EMACS_ROOT)\nt\inc\sys\file.h \
601 $(EMACS_ROOT)\src\epaths.h \
605 $(BLD)\filemode.obj : \
607 $(EMACS_ROOT)\src\s\ms-w32.h \
608 $(EMACS_ROOT)\src\m\intel386.h \
609 $(EMACS_ROOT)\src\config.h \
611 $(SRC)\m\intel386.h \
614 $(BLD)\firstfile.obj : \
616 $(EMACS_ROOT)\src\s\ms-w32.h \
617 $(EMACS_ROOT)\src\m\intel386.h \
618 $(EMACS_ROOT)\src\config.h
620 $(BLD)\floatfns.obj : \
622 $(EMACS_ROOT)\src\s\ms-w32.h \
623 $(EMACS_ROOT)\src\m\intel386.h \
624 $(EMACS_ROOT)\src\config.h \
629 $(EMACS_ROOT)\src\s\ms-w32.h \
630 $(EMACS_ROOT)\src\m\intel386.h \
631 $(EMACS_ROOT)\src\config.h \
635 $(SRC)\dispextern.h \
643 $(EMACS_ROOT)\src\s\ms-w32.h \
644 $(EMACS_ROOT)\src\m\intel386.h \
645 $(EMACS_ROOT)\src\config.h \
653 $(BLD)\getloadavg.obj : \
654 $(SRC)\getloadavg.c \
655 $(EMACS_ROOT)\nt\inc\sys\param.h \
656 $(EMACS_ROOT)\src\s\ms-w32.h \
657 $(EMACS_ROOT)\src\m\intel386.h \
658 $(EMACS_ROOT)\src\config.h \
660 $(SRC)\m\intel386.h \
662 $(EMACS_ROOT)\nt\inc\sys\file.h
664 $(BLD)\gmalloc.obj : \
666 $(EMACS_ROOT)\src\s\ms-w32.h \
667 $(EMACS_ROOT)\src\m\intel386.h \
668 $(EMACS_ROOT)\src\config.h \
669 $(EMACS_ROOT)\nt\inc\sys\param.h \
671 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
673 $(BLD)\hftctl.obj : \
675 $(EMACS_ROOT)\src\s\ms-w32.h \
676 $(EMACS_ROOT)\src\m\intel386.h \
677 $(EMACS_ROOT)\src\config.h \
678 $(EMACS_ROOT)\nt\inc\sys\ioctl.h
680 $(BLD)\indent.obj : \
682 $(EMACS_ROOT)\src\s\ms-w32.h \
683 $(EMACS_ROOT)\src\m\intel386.h \
684 $(EMACS_ROOT)\src\config.h \
692 $(SRC)\dispextern.h \
695 $(SRC)\region-cache.h \
698 $(BLD)\insdel.obj : \
700 $(EMACS_ROOT)\src\s\ms-w32.h \
701 $(EMACS_ROOT)\src\m\intel386.h \
702 $(EMACS_ROOT)\src\config.h \
703 $(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 \
724 $(BLD)\keyboard.obj : \
726 $(EMACS_ROOT)\src\s\ms-w32.h \
727 $(EMACS_ROOT)\src\m\intel386.h \
728 $(EMACS_ROOT)\src\config.h \
739 $(SRC)\dispextern.h \
742 $(SRC)\blockinput.h \
745 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
746 $(EMACS_ROOT)\nt\inc\sys\file.h \
754 $(BLD)\keymap.obj : \
756 $(EMACS_ROOT)\src\s\ms-w32.h \
757 $(EMACS_ROOT)\src\m\intel386.h \
758 $(EMACS_ROOT)\src\config.h \
765 $(BLD)\lastfile.obj : \
767 $(EMACS_ROOT)\src\s\ms-w32.h \
768 $(EMACS_ROOT)\src\m\intel386.h \
769 $(EMACS_ROOT)\src\config.h
773 $(EMACS_ROOT)\src\s\ms-w32.h \
774 $(EMACS_ROOT)\src\m\intel386.h \
775 $(EMACS_ROOT)\src\config.h \
776 $(EMACS_ROOT)\nt\inc\sys\file.h \
778 $(EMACS_ROOT)\src\epaths.h \
784 $(BLD)\macros.obj : \
786 $(EMACS_ROOT)\src\s\ms-w32.h \
787 $(EMACS_ROOT)\src\m\intel386.h \
788 $(EMACS_ROOT)\src\config.h \
794 $(BLD)\marker.obj : \
796 $(EMACS_ROOT)\src\s\ms-w32.h \
797 $(EMACS_ROOT)\src\m\intel386.h \
798 $(EMACS_ROOT)\src\config.h \
805 $(BLD)\minibuf.obj : \
807 $(EMACS_ROOT)\src\s\ms-w32.h \
808 $(EMACS_ROOT)\src\m\intel386.h \
809 $(EMACS_ROOT)\src\config.h \
812 $(SRC)\dispextern.h \
822 $(SRC)\m\intel386.h \
824 $(EMACS_ROOT)\nt\inc\pwd.h \
827 $(BLD)\w32heap.obj : \
831 $(SRC)\m\intel386.h \
834 $(BLD)\w32inevt.obj : \
837 $(SRC)\m\intel386.h \
840 $(SRC)\blockinput.h \
846 $(BLD)\w32proc.obj : \
849 $(SRC)\m\intel386.h \
855 $(BLD)\w32console.obj : \
856 $(SRC)\w32console.c \
858 $(SRC)\m\intel386.h \
865 $(BLD)\prefix-args.obj : \
870 $(EMACS_ROOT)\src\s\ms-w32.h \
871 $(EMACS_ROOT)\src\m\intel386.h \
872 $(EMACS_ROOT)\src\config.h \
878 $(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 \
904 $(BLD)\ralloc.obj : \
906 $(EMACS_ROOT)\src\s\ms-w32.h \
907 $(EMACS_ROOT)\src\m\intel386.h \
908 $(EMACS_ROOT)\src\config.h \
910 $(SRC)\m\intel386.h \
912 $(EMACS_ROOT)\nt\inc\sys\param.h \
917 $(EMACS_ROOT)\src\s\ms-w32.h \
918 $(EMACS_ROOT)\src\m\intel386.h \
919 $(EMACS_ROOT)\src\config.h \
921 $(SRC)\m\intel386.h \
927 $(BLD)\region-cache.obj : \
928 $(SRC)\region-cache.c \
929 $(EMACS_ROOT)\src\s\ms-w32.h \
930 $(EMACS_ROOT)\src\m\intel386.h \
931 $(EMACS_ROOT)\src\config.h \
933 $(SRC)\region-cache.h
935 $(BLD)\scroll.obj : \
937 $(EMACS_ROOT)\src\s\ms-w32.h \
938 $(EMACS_ROOT)\src\m\intel386.h \
939 $(EMACS_ROOT)\src\config.h \
941 $(SRC)\dispextern.h \
945 $(BLD)\search.obj : \
947 $(EMACS_ROOT)\src\s\ms-w32.h \
948 $(EMACS_ROOT)\src\m\intel386.h \
949 $(EMACS_ROOT)\src\config.h \
953 $(SRC)\blockinput.h \
955 $(SRC)\region-cache.h \
958 $(BLD)\strftime.obj : \
960 $(EMACS_ROOT)\src\s\ms-w32.h \
961 $(EMACS_ROOT)\src\m\intel386.h \
962 $(EMACS_ROOT)\src\config.h
964 $(BLD)\syntax.obj : \
966 $(EMACS_ROOT)\src\s\ms-w32.h \
967 $(EMACS_ROOT)\src\m\intel386.h \
968 $(EMACS_ROOT)\src\config.h \
974 $(BLD)\sysdep.obj : \
976 $(EMACS_ROOT)\src\s\ms-w32.h \
977 $(EMACS_ROOT)\src\m\intel386.h \
978 $(EMACS_ROOT)\src\config.h \
979 $(SRC)\blockinput.h \
982 $(EMACS_ROOT)\nt\inc\sys\param.h \
983 $(EMACS_ROOT)\nt\inc\sys\file.h \
984 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
985 $(EMACS_ROOT)\nt\inc\sys\file.h \
993 $(SRC)\dispextern.h \
1000 $(EMACS_ROOT)\src\acldef.h \
1001 $(EMACS_ROOT)\src\chpdef.h
1005 $(EMACS_ROOT)\src\s\ms-w32.h \
1006 $(EMACS_ROOT)\src\m\intel386.h \
1007 $(EMACS_ROOT)\src\config.h \
1013 $(SRC)/dispextern.h \
1014 $(SRC)\termhooks.h \
1017 $(BLD)\termcap.obj : \
1019 $(EMACS_ROOT)\src\s\ms-w32.h \
1020 $(EMACS_ROOT)\src\m\intel386.h \
1021 $(EMACS_ROOT)\src\config.h \
1022 $(EMACS_ROOT)\nt\inc\sys\file.h
1024 $(BLD)\terminfo.obj : \
1027 $(BLD)\textprop.obj : \
1029 $(EMACS_ROOT)\src\s\ms-w32.h \
1030 $(EMACS_ROOT)\src\m\intel386.h \
1031 $(EMACS_ROOT)\src\config.h \
1032 $(SRC)\dispextern.h \
1034 $(SRC)\intervals.h \
1035 $(SRC)\composite.h \
1039 $(BLD)\tparam.obj : \
1041 $(EMACS_ROOT)\src\s\ms-w32.h \
1042 $(EMACS_ROOT)\src\m\intel386.h \
1043 $(EMACS_ROOT)\src\config.h
1047 $(EMACS_ROOT)\src\s\ms-w32.h \
1048 $(EMACS_ROOT)\src\m\intel386.h \
1049 $(EMACS_ROOT)\src\config.h \
1053 $(BLD)\unexw32.obj : \
1055 $(EMACS_ROOT)\src\s\ms-w32.h \
1056 $(EMACS_ROOT)\src\m\intel386.h \
1057 $(EMACS_ROOT)\src\config.h \
1060 $(BLD)\vm-limit.obj : \
1062 $(EMACS_ROOT)\src\s\ms-w32.h \
1063 $(EMACS_ROOT)\src\m\intel386.h \
1064 $(EMACS_ROOT)\src\config.h \
1067 $(BLD)\widget.obj : \
1069 $(EMACS_ROOT)\src\s\ms-w32.h \
1070 $(EMACS_ROOT)\src\m\intel386.h \
1071 $(EMACS_ROOT)\src\config.h \
1074 $(SRC)\dispextern.h \
1079 $(BLD)\window.obj : \
1081 $(EMACS_ROOT)\src\s\ms-w32.h \
1082 $(EMACS_ROOT)\src\m\intel386.h \
1083 $(EMACS_ROOT)\src\config.h \
1094 $(BLD)\xdisp.obj : \
1096 $(EMACS_ROOT)\src\s\ms-w32.h \
1097 $(EMACS_ROOT)\src\m\intel386.h \
1098 $(EMACS_ROOT)\src\config.h \
1107 $(SRC)\termhooks.h \
1108 $(SRC)\dispextern.h \
1110 $(SRC)\intervals.h \
1113 $(BLD)\xfaces.obj: \
1114 $(EMACS_ROOT)\src\s\ms-w32.h \
1115 $(EMACS_ROOT)\src\m\intel386.h \
1116 $(EMACS_ROOT)\src\config.h \
1123 $(SRC)\dispextern.h \
1125 $(SRC)\blockinput.h \
1127 $(SRC)\intervals.h \
1130 $(BLD)\w32fns.obj: \
1131 $(EMACS_ROOT)\src\s\ms-w32.h \
1132 $(EMACS_ROOT)\src\m\intel386.h \
1133 $(EMACS_ROOT)\src\config.h \
1142 $(SRC)\dispextern.h \
1144 $(SRC)\blockinput.h \
1149 $(BLD)\w32menu.obj: \
1150 $(EMACS_ROOT)\src\s\ms-w32.h \
1151 $(EMACS_ROOT)\src\m\intel386.h \
1152 $(EMACS_ROOT)\src\config.h \
1154 $(SRC)\termhooks.h \
1158 $(SRC)\blockinput.h \
1163 $(BLD)\w32term.obj: \
1164 $(EMACS_ROOT)\src\s\ms-w32.h \
1165 $(EMACS_ROOT)\src\m\intel386.h \
1166 $(EMACS_ROOT)\src\config.h \
1168 $(SRC)\blockinput.h \
1175 $(SRC)\dispextern.h \
1176 $(SRC)\termhooks.h \
1184 $(SRC)\intervals.h \
1185 $(SRC)\composite.h \
1188 $(BLD)\w32select.obj: \
1189 $(EMACS_ROOT)\src\s\ms-w32.h \
1190 $(EMACS_ROOT)\src\m\intel386.h \
1191 $(EMACS_ROOT)\src\config.h \
1192 $(SRC)\w32select.c \
1195 $(SRC)\dispextern.h \
1199 $(BLD)\w32reg.obj: \
1200 $(EMACS_ROOT)\src\s\ms-w32.h \
1201 $(EMACS_ROOT)\src\m\intel386.h \
1202 $(EMACS_ROOT)\src\config.h \
1208 $(BLD)\w32xfns.obj: \
1209 $(EMACS_ROOT)\src\s\ms-w32.h \
1210 $(EMACS_ROOT)\src\m\intel386.h \
1211 $(EMACS_ROOT)\src\config.h \
1214 $(BLD)\w32bdf.obj: \
1215 $(EMACS_ROOT)\src/s\ms-w32.h \
1216 $(EMACS_ROOT)\src/m\intel386.h \
1217 $(EMACS_ROOT)\src/config.h \
1221 $(SRC)\dispextern.h \
1223 $(SRC)\blockinput.h \
1232 # arch-tag: ee9a97ba-19b7-4b50-a127-aaf4efe494dc