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 # From MSVC 5.0 onwards, it seem base relocation information is not included,
41 # at least in release builds. We need to ensure the reloc info is included
42 # in order to use the MSVC profiler.
43 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)")
49 EMACS = $(BLD)\emacs.exe
50 TEMACS = $(BLD)\temacs.exe
51 TEMACS_TMP = $(BLD)\temacs.bin
52 TLIB0 = $(BLD)\temacs0.lib
53 TLIB1 = $(BLD)\temacs1.lib
54 TLIB2 = $(BLD)\temacs2.lib
56 TLIBW32 = $(BLD)\temacw32.lib
60 TOBJ = $(BLD)\firstfile.obj
62 TRES = $(BLD)\emacs.res
64 TRES = $(BLD)\emacs.rbj
66 TLASTLIB = $(BLD)\lastfile.lib
68 # see comments in allocate_heap in w32heap.c before changing any of the
69 # -stack, -heap, or -base settings.
70 !if "$(BUILD_TYPE)" == "spd"
71 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd
73 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)
77 # Split up the objects into two sets so that we don't run out of
78 # command line space when we link them into a library.
80 # Put emacs.obj in a separate lib, since we need to have firstfile.obj
81 # as the "main" object file when linking.
83 OBJ0 = $(BLD)\emacs.obj
85 OBJ1 = $(BLD)\abbrev.obj \
93 $(BLD)\casefiddle.obj \
104 $(BLD)\filelock.obj \
105 $(BLD)\filemode.obj \
109 $(BLD)\keyboard.obj \
117 OBJ2 = $(BLD)\w32.obj \
119 $(BLD)\w32inevt.obj \
121 $(BLD)\w32console.obj \
137 $(BLD)\floatfns.obj \
140 $(BLD)\intervals.obj \
141 $(BLD)\composite.obj \
143 $(BLD)\textprop.obj \
144 $(BLD)\vm-limit.obj \
145 $(BLD)\region-cache.obj \
146 $(BLD)\strftime.obj \
149 $(BLD)\category.obj \
153 WIN32OBJ = $(BLD)\w32term.obj \
157 $(BLD)\w32select.obj \
182 # Build the executable and dump it.
187 # Headers we would preprocess if we could.
189 PREPARED_HEADERS = config.h epaths.h
190 config.h: ..\nt\$(CONFIG_H)
192 epaths.h: ..\nt\paths.h
196 # Make sure we have the DOC file in the right place.
198 DOC = $(OBJDIR)\etc\DOC-X
199 $(DOC):; cd ..\lib-src
201 $(MAKE) -f makefile.nt all
205 # The dumped executable
208 $(EMACS): $(PREPARED_HEADERS) $(DOC) $(TEMACS)
210 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup dump
214 # The undumped executable
215 # Note the extra post-link step to insert a static preload heap section.
216 # If preload runs out of memory, increase the last argument to addsection
217 # (it is the preload heap size in MB).
219 temacs: $(BLD) $(TEMACS)
220 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
221 $(LINK) -out:$(TEMACS_TMP) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
222 ..\nt\$(BLD)\addsection $(TEMACS_TMP) $(TEMACS) EMHEAP 16
225 # The resource file. NT 3.10 requires the use of cvtres; even though
226 # it is not necessary on later versions, it is still ok to use it.
228 $(TRES): ..\nt\emacs.rc
229 $(RC) -i..\nt -Fo$(BLD)\emacs.res $**
231 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res
235 # Build the library. Split up the build into two phases...otherwise we
236 # run out of command line space.
245 $(TLIBW32): $(WIN32OBJ)
250 # Place lastfile.obj in its own library so that it can be loaded after
251 # the source libraries but before any system libraries. Doing so defines
252 # the end of Emacs' data section portably across compilers and systems.
254 $(TLASTLIB): $(BLD)\lastfile.obj
258 # Assuming INSTALL_DIR is defined, build and install emacs in it.
261 - mkdir $(INSTALL_DIR)\bin
262 $(CP) $(EMACS) $(INSTALL_DIR)\bin
267 clean:; - $(DEL) *~ s\*~
268 - $(DEL) *.pdb config.h epaths.h
269 - $(DEL) *.orig *.rej *.crlf
270 - $(DEL) s\*.orig s\*.rej s\*.crlf
271 - $(DEL_TREE) deleted
273 - $(DEL_TREE) obj-spd
276 # These files are the ones that compile conditionally on CANNOT_DUMP...
277 # this target is mostly used for debugging.
279 cleandump:; cd $(BLD)
280 - $(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
289 $(BLD)\abbrev.obj : \
291 $(EMACS_ROOT)\src\s\ms-w32.h \
292 $(EMACS_ROOT)\src\m\intel386.h \
293 $(EMACS_ROOT)\src\config.h \
301 $(EMACS_ROOT)\src\s\ms-w32.h \
302 $(EMACS_ROOT)\src\m\intel386.h \
303 $(EMACS_ROOT)\src\config.h \
305 $(SRC)\dispextern.h \
313 $(SRC)\blockinput.h \
316 $(BLD)\alloca.obj : \
318 $(EMACS_ROOT)\src\s\ms-w32.h \
319 $(EMACS_ROOT)\src\m\intel386.h \
320 $(EMACS_ROOT)\src\config.h \
322 $(SRC)\m\intel386.h \
326 $(BLD)\atimer.obj : \
328 $(EMACS_ROOT)\src\s\ms-w32.h \
329 $(EMACS_ROOT)\src\m\intel386.h \
330 $(EMACS_ROOT)\src\config.h \
332 $(SRC)\m\intel386.h \
340 $(BLD)\buffer.obj : \
342 $(EMACS_ROOT)\nt\inc\sys\param.h \
343 $(EMACS_ROOT)\src\s\ms-w32.h \
344 $(EMACS_ROOT)\src\m\intel386.h \
345 $(EMACS_ROOT)\src\config.h \
347 $(SRC)\dispextern.h \
355 $(SRC)\blockinput.h \
356 $(SRC)\region-cache.h
358 $(BLD)\bytecode.obj : \
360 $(EMACS_ROOT)\src\s\ms-w32.h \
361 $(EMACS_ROOT)\src\m\intel386.h \
362 $(EMACS_ROOT)\src\config.h \
367 $(BLD)\callint.obj : \
369 $(EMACS_ROOT)\src\s\ms-w32.h \
370 $(EMACS_ROOT)\src\m\intel386.h \
371 $(EMACS_ROOT)\src\config.h \
379 $(BLD)\callproc.obj : \
381 $(EMACS_ROOT)\src\s\ms-w32.h \
382 $(EMACS_ROOT)\src\m\intel386.h \
383 $(EMACS_ROOT)\src\config.h \
385 $(EMACS_ROOT)\nt\inc\sys\param.h \
391 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
392 $(EMACS_ROOT)\nt\inc\sys\file.h \
395 $(BLD)\casefiddle.obj : \
396 $(SRC)\casefiddle.c \
397 $(EMACS_ROOT)\src\s\ms-w32.h \
398 $(EMACS_ROOT)\src\m\intel386.h \
399 $(EMACS_ROOT)\src\config.h \
404 $(CC) $(CFLAGS) -Fo$@ casefiddle.c
406 $(BLD)\casetab.obj : \
408 $(EMACS_ROOT)\src\s\ms-w32.h \
409 $(EMACS_ROOT)\src\m\intel386.h \
410 $(EMACS_ROOT)\src\config.h \
416 $(EMACS_ROOT)\src\s\ms-w32.h \
417 $(EMACS_ROOT)\src\m\intel386.h \
418 $(EMACS_ROOT)\src\config.h \
424 $(EMACS_ROOT)\src\s\ms-w32.h \
425 $(EMACS_ROOT)\src\m\intel386.h \
426 $(EMACS_ROOT)\src\config.h \
434 $(EMACS_ROOT)\src\s\ms-w32.h \
435 $(EMACS_ROOT)\src\m\intel386.h \
436 $(EMACS_ROOT)\src\config.h \
444 $(EMACS_ROOT)\src\s\ms-w32.h \
445 $(EMACS_ROOT)\src\m\intel386.h \
446 $(EMACS_ROOT)\src\config.h \
454 $(BLD)\dispnew.obj : \
456 $(EMACS_ROOT)\src\s\ms-w32.h \
457 $(EMACS_ROOT)\src\m\intel386.h \
458 $(EMACS_ROOT)\src\config.h \
470 $(SRC)\dispextern.h \
472 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
473 $(EMACS_ROOT)\nt\inc\sys\file.h \
484 $(EMACS_ROOT)\src\s\ms-w32.h \
485 $(EMACS_ROOT)\src\m\intel386.h \
486 $(EMACS_ROOT)\src\config.h \
487 $(EMACS_ROOT)\nt\inc\sys\file.h \
492 $(BLD)\doprnt.obj : \
494 $(EMACS_ROOT)\src\s\ms-w32.h \
495 $(EMACS_ROOT)\src\m\intel386.h \
496 $(EMACS_ROOT)\src\config.h
498 $(BLD)\editfns.obj : \
500 $(EMACS_ROOT)\src\s\ms-w32.h \
501 $(EMACS_ROOT)\src\m\intel386.h \
502 $(EMACS_ROOT)\src\config.h \
505 $(EMACS_ROOT)\nt\inc\pwd.h \
507 $(SRC)\dispextern.h \
518 $(EMACS_ROOT)\src\s\ms-w32.h \
519 $(EMACS_ROOT)\src\m\intel386.h \
520 $(EMACS_ROOT)\src\config.h \
523 $(SRC)\dispextern.h \
527 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
528 $(EMACS_ROOT)\nt\inc\sys\file.h \
535 $(EMACS_ROOT)\src\s\ms-w32.h \
536 $(EMACS_ROOT)\src\m\intel386.h \
537 $(EMACS_ROOT)\src\config.h \
539 $(SRC)\blockinput.h \
543 $(BLD)\fileio.obj : \
545 $(EMACS_ROOT)\src\s\ms-w32.h \
546 $(EMACS_ROOT)\src\m\intel386.h \
547 $(EMACS_ROOT)\src\config.h \
550 $(EMACS_ROOT)\nt\inc\pwd.h \
552 $(EMACS_ROOT)\nt\inc\sys\param.h \
555 $(SRC)\dispextern.h \
561 $(EMACS_ROOT)\nt\inc\sys\file.h \
565 $(BLD)\filelock.obj : \
567 $(EMACS_ROOT)\src\s\ms-w32.h \
568 $(EMACS_ROOT)\src\m\intel386.h \
569 $(EMACS_ROOT)\src\config.h \
572 $(EMACS_ROOT)\nt\inc\pwd.h \
573 $(EMACS_ROOT)\nt\inc\sys\file.h \
575 $(EMACS_ROOT)\src\epaths.h \
580 $(BLD)\filemode.obj : \
582 $(EMACS_ROOT)\src\s\ms-w32.h \
583 $(EMACS_ROOT)\src\m\intel386.h \
584 $(EMACS_ROOT)\src\config.h \
586 $(SRC)\m\intel386.h \
589 $(BLD)\firstfile.obj : \
591 $(EMACS_ROOT)\src\s\ms-w32.h \
592 $(EMACS_ROOT)\src\m\intel386.h \
593 $(EMACS_ROOT)\src\config.h
595 $(BLD)\floatfns.obj : \
597 $(EMACS_ROOT)\src\s\ms-w32.h \
598 $(EMACS_ROOT)\src\m\intel386.h \
599 $(EMACS_ROOT)\src\config.h \
605 $(EMACS_ROOT)\src\s\ms-w32.h \
606 $(EMACS_ROOT)\src\m\intel386.h \
607 $(EMACS_ROOT)\src\config.h \
612 $(SRC)\dispextern.h \
619 $(EMACS_ROOT)\src\s\ms-w32.h \
620 $(EMACS_ROOT)\src\m\intel386.h \
621 $(EMACS_ROOT)\src\config.h \
630 $(BLD)\getloadavg.obj : \
631 $(SRC)\getloadavg.c \
632 $(EMACS_ROOT)\nt\inc\sys\param.h \
633 $(EMACS_ROOT)\src\s\ms-w32.h \
634 $(EMACS_ROOT)\src\m\intel386.h \
635 $(EMACS_ROOT)\src\config.h \
637 $(SRC)\m\intel386.h \
639 $(EMACS_ROOT)\nt\inc\sys\file.h
641 $(BLD)\gmalloc.obj : \
643 $(EMACS_ROOT)\src\s\ms-w32.h \
644 $(EMACS_ROOT)\src\m\intel386.h \
645 $(EMACS_ROOT)\src\config.h \
646 $(EMACS_ROOT)\nt\inc\sys\param.h \
648 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
650 $(BLD)\hftctl.obj : \
652 $(EMACS_ROOT)\src\s\ms-w32.h \
653 $(EMACS_ROOT)\src\m\intel386.h \
654 $(EMACS_ROOT)\src\config.h \
655 $(EMACS_ROOT)\nt\inc\sys\ioctl.h
657 $(BLD)\indent.obj : \
659 $(EMACS_ROOT)\src\s\ms-w32.h \
660 $(EMACS_ROOT)\src\m\intel386.h \
661 $(EMACS_ROOT)\src\config.h \
670 $(SRC)\dispextern.h \
673 $(SRC)\region-cache.h \
676 $(BLD)\insdel.obj : \
678 $(EMACS_ROOT)\src\s\ms-w32.h \
679 $(EMACS_ROOT)\src\m\intel386.h \
680 $(EMACS_ROOT)\src\config.h \
682 $(SRC)\dispextern.h \
690 $(BLD)\intervals.obj : \
692 $(EMACS_ROOT)\src\s\ms-w32.h \
693 $(EMACS_ROOT)\src\m\intel386.h \
694 $(EMACS_ROOT)\src\config.h \
696 $(SRC)\dispextern.h \
701 $(CC) $(CFLAGS) -Fo$@ intervals.c
703 $(BLD)\keyboard.obj : \
705 $(EMACS_ROOT)\src\s\ms-w32.h \
706 $(EMACS_ROOT)\src\m\intel386.h \
707 $(EMACS_ROOT)\src\config.h \
719 $(SRC)\dispextern.h \
722 $(SRC)\blockinput.h \
725 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
726 $(EMACS_ROOT)\nt\inc\sys\file.h \
735 $(BLD)\keymap.obj : \
737 $(EMACS_ROOT)\src\s\ms-w32.h \
738 $(EMACS_ROOT)\src\m\intel386.h \
739 $(EMACS_ROOT)\src\config.h \
747 $(BLD)\lastfile.obj : \
749 $(EMACS_ROOT)\src\s\ms-w32.h \
750 $(EMACS_ROOT)\src\m\intel386.h \
751 $(EMACS_ROOT)\src\config.h
755 $(EMACS_ROOT)\src\s\ms-w32.h \
756 $(EMACS_ROOT)\src\m\intel386.h \
757 $(EMACS_ROOT)\src\config.h \
758 $(EMACS_ROOT)\nt\inc\sys\file.h \
761 $(EMACS_ROOT)\src\epaths.h \
767 $(BLD)\macros.obj : \
769 $(EMACS_ROOT)\src\s\ms-w32.h \
770 $(EMACS_ROOT)\src\m\intel386.h \
771 $(EMACS_ROOT)\src\config.h \
778 $(BLD)\marker.obj : \
780 $(EMACS_ROOT)\src\s\ms-w32.h \
781 $(EMACS_ROOT)\src\m\intel386.h \
782 $(EMACS_ROOT)\src\config.h \
786 $(BLD)\minibuf.obj : \
788 $(EMACS_ROOT)\src\s\ms-w32.h \
789 $(EMACS_ROOT)\src\m\intel386.h \
790 $(EMACS_ROOT)\src\config.h \
794 $(SRC)\dispextern.h \
800 $(BLD)\mocklisp.obj : \
802 $(EMACS_ROOT)\src\s\ms-w32.h \
803 $(EMACS_ROOT)\src\m\intel386.h \
804 $(EMACS_ROOT)\src\config.h \
812 $(SRC)\m\intel386.h \
815 $(EMACS_ROOT)\nt\inc\pwd.h \
818 $(BLD)\w32heap.obj : \
822 $(SRC)\m\intel386.h \
825 $(BLD)\w32inevt.obj : \
828 $(SRC)\m\intel386.h \
832 $(SRC)\blockinput.h \
838 $(BLD)\w32proc.obj : \
841 $(SRC)\m\intel386.h \
849 $(BLD)\w32console.obj : \
850 $(SRC)\w32console.c \
852 $(SRC)\m\intel386.h \
860 $(BLD)\prefix-args.obj : \
865 $(EMACS_ROOT)\src\s\ms-w32.h \
866 $(EMACS_ROOT)\src\m\intel386.h \
867 $(EMACS_ROOT)\src\config.h \
874 $(SRC)\dispextern.h \
879 $(BLD)\process.obj : \
881 $(EMACS_ROOT)\src\s\ms-w32.h \
882 $(EMACS_ROOT)\src\m\intel386.h \
883 $(EMACS_ROOT)\src\config.h \
884 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
885 $(EMACS_ROOT)\nt\inc\sys\file.h \
903 $(BLD)\ralloc.obj : \
905 $(EMACS_ROOT)\src\s\ms-w32.h \
906 $(EMACS_ROOT)\src\m\intel386.h \
907 $(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 \
928 $(BLD)\region-cache.obj : \
929 $(SRC)\region-cache.c \
930 $(EMACS_ROOT)\src\s\ms-w32.h \
931 $(EMACS_ROOT)\src\m\intel386.h \
932 $(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 \
944 $(SRC)\dispextern.h \
948 $(BLD)\search.obj : \
950 $(EMACS_ROOT)\src\s\ms-w32.h \
951 $(EMACS_ROOT)\src\m\intel386.h \
952 $(EMACS_ROOT)\src\config.h \
957 $(SRC)\blockinput.h \
959 $(SRC)\region-cache.h \
962 $(BLD)\strftime.obj : \
964 $(EMACS_ROOT)\src\s\ms-w32.h \
965 $(EMACS_ROOT)\src\m\intel386.h \
966 $(EMACS_ROOT)\src\config.h
968 $(BLD)\sunfns.obj : \
970 $(EMACS_ROOT)\src\s\ms-w32.h \
971 $(EMACS_ROOT)\src\m\intel386.h \
972 $(EMACS_ROOT)\src\config.h \
978 $(BLD)\syntax.obj : \
980 $(EMACS_ROOT)\src\s\ms-w32.h \
981 $(EMACS_ROOT)\src\m\intel386.h \
982 $(EMACS_ROOT)\src\config.h \
989 $(BLD)\sysdep.obj : \
991 $(EMACS_ROOT)\src\s\ms-w32.h \
992 $(EMACS_ROOT)\src\m\intel386.h \
993 $(EMACS_ROOT)\src\config.h \
995 $(SRC)\blockinput.h \
998 $(EMACS_ROOT)\nt\inc\sys\param.h \
999 $(EMACS_ROOT)\nt\inc\sys\file.h \
1000 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
1001 $(EMACS_ROOT)\nt\inc\sys\file.h \
1007 $(SRC)\termhooks.h \
1010 $(SRC)\dispextern.h \
1015 $(SRC)\syssignal.h \
1020 $(EMACS_ROOT)\src\acldef.h \
1021 $(EMACS_ROOT)\src\chpdef.h
1025 $(EMACS_ROOT)\src\s\ms-w32.h \
1026 $(EMACS_ROOT)\src\m\intel386.h \
1027 $(EMACS_ROOT)\src\config.h \
1034 $(SRC)\termhooks.h \
1037 $(BLD)\termcap.obj : \
1039 $(EMACS_ROOT)\src\s\ms-w32.h \
1040 $(EMACS_ROOT)\src\m\intel386.h \
1041 $(EMACS_ROOT)\src\config.h \
1042 $(EMACS_ROOT)\nt\inc\sys\file.h
1044 $(BLD)\terminfo.obj : \
1047 $(BLD)\textprop.obj : \
1049 $(EMACS_ROOT)\src\s\ms-w32.h \
1050 $(EMACS_ROOT)\src\m\intel386.h \
1051 $(EMACS_ROOT)\src\config.h \
1053 $(SRC)\dispextern.h \
1055 $(SRC)\intervals.h \
1056 $(SRC)\composite.h \
1060 $(BLD)\intervals.obj : \
1061 $(SRC)\intervals.c \
1063 $(SRC)\intervals.h \
1064 $(SRC)\composite.h \
1067 $(EMACS_ROOT)\src\s\ms-w32.h \
1068 $(EMACS_ROOT)\src\m\intel386.h \
1069 $(EMACS_ROOT)\src\config.h
1071 $(BLD)\composite.obj : \
1072 $(SRC)\composite.c \
1075 $(SRC)\intervals.h \
1076 $(SRC)\composite.h \
1077 $(EMACS_ROOT)\src\s\ms-w32.h \
1078 $(EMACS_ROOT)\src\m\intel386.h \
1079 $(EMACS_ROOT)\src\config.h
1081 $(BLD)\tparam.obj : \
1083 $(EMACS_ROOT)\src\s\ms-w32.h \
1084 $(EMACS_ROOT)\src\m\intel386.h \
1085 $(EMACS_ROOT)\src\config.h
1089 $(EMACS_ROOT)\src\s\ms-w32.h \
1090 $(EMACS_ROOT)\src\m\intel386.h \
1091 $(EMACS_ROOT)\src\config.h \
1096 $(BLD)\unexw32.obj : \
1098 $(EMACS_ROOT)\src\s\ms-w32.h \
1099 $(EMACS_ROOT)\src\m\intel386.h \
1100 $(EMACS_ROOT)\src\config.h \
1103 $(BLD)\vm-limit.obj : \
1105 $(EMACS_ROOT)\src\s\ms-w32.h \
1106 $(EMACS_ROOT)\src\m\intel386.h \
1107 $(EMACS_ROOT)\src\config.h \
1110 $(BLD)\widget.obj : \
1112 $(EMACS_ROOT)\src\s\ms-w32.h \
1113 $(EMACS_ROOT)\src\m\intel386.h \
1114 $(EMACS_ROOT)\src\config.h \
1118 $(SRC)\dispextern.h \
1123 $(BLD)\window.obj : \
1125 $(EMACS_ROOT)\src\s\ms-w32.h \
1126 $(EMACS_ROOT)\src\m\intel386.h \
1127 $(EMACS_ROOT)\src\config.h \
1139 $(BLD)\xdisp.obj : \
1141 $(EMACS_ROOT)\src\s\ms-w32.h \
1142 $(EMACS_ROOT)\src\m\intel386.h \
1143 $(EMACS_ROOT)\src\config.h \
1153 $(SRC)\termhooks.h \
1154 $(SRC)\dispextern.h \
1156 $(SRC)\intervals.h \
1159 $(BLD)\xfaces.obj: \
1160 $(EMACS_ROOT)\src\s\ms-w32.h \
1161 $(EMACS_ROOT)\src\m\intel386.h \
1162 $(EMACS_ROOT)\src\config.h \
1170 $(SRC)\dispextern.h \
1172 $(SRC)\blockinput.h \
1175 $(SRC)\intervals.h \
1178 $(BLD)\w32fns.obj: \
1179 $(EMACS_ROOT)\src\s\ms-w32.h \
1180 $(EMACS_ROOT)\src\m\intel386.h \
1181 $(EMACS_ROOT)\src\config.h \
1183 $(SRC)\x-list-font.c \
1190 $(SRC)\dispextern.h \
1192 $(SRC)\blockinput.h \
1197 $(BLD)\w32menu.obj: \
1198 $(EMACS_ROOT)\src\s\ms-w32.h \
1199 $(EMACS_ROOT)\src\m\intel386.h \
1200 $(EMACS_ROOT)\src\config.h \
1203 $(SRC)\termhooks.h \
1207 $(SRC)\blockinput.h \
1210 $(BLD)\w32term.obj: \
1211 $(EMACS_ROOT)\src\s\ms-w32.h \
1212 $(EMACS_ROOT)\src\m\intel386.h \
1213 $(EMACS_ROOT)\src\config.h \
1216 $(SRC)\blockinput.h \
1223 $(SRC)\dispextern.h \
1224 $(SRC)\termhooks.h \
1232 $(SRC)\intervals.h \
1233 $(SRC)\composite.h \
1236 $(BLD)\w32select.obj: \
1237 $(EMACS_ROOT)\src\s\ms-w32.h \
1238 $(EMACS_ROOT)\src\m\intel386.h \
1239 $(EMACS_ROOT)\src\config.h \
1240 $(SRC)\w32select.c \
1244 $(SRC)\dispextern.h \
1248 $(BLD)\w32reg.obj: \
1249 $(EMACS_ROOT)\src\s\ms-w32.h \
1250 $(EMACS_ROOT)\src\m\intel386.h \
1251 $(EMACS_ROOT)\src\config.h \
1258 $(BLD)\w32xfns.obj: \
1259 $(EMACS_ROOT)\src\s\ms-w32.h \
1260 $(EMACS_ROOT)\src\m\intel386.h \
1261 $(EMACS_ROOT)\src\config.h \
1264 $(BLD)\w32bdf.obj: \
1265 $(EMACS_ROOT)\src/s\ms-w32.h \
1266 $(EMACS_ROOT)\src/m\intel386.h \
1267 $(EMACS_ROOT)\src/config.h \
1272 $(SRC)\blockinput.h \