comparison src/Makefile.in.in @ 272:c5d627a313b1 r21-0b34

Import from CVS: tag r21-0b34
author cvs
date Mon, 13 Aug 2007 10:28:48 +0200
parents b2472a1930f2
children ca9a9ec9c1c1
comparison
equal deleted inserted replaced
271:c7b7086b0a39 272:c5d627a313b1
25 all: xemacs 25 all: xemacs
26 .PHONY : all release dump-elc dump-elcs all-elc all-elcs lint 26 .PHONY : all release dump-elc dump-elcs all-elc all-elcs lint
27 27
28 ## For performance and consistency, no built-in rules. 28 ## For performance and consistency, no built-in rules.
29 .SUFFIXES: 29 .SUFFIXES:
30 .SUFFIXES: .c .cc .o .i .h .dep 30 .SUFFIXES: .c .h .o .i .s .dep
31 31
32 @SET_MAKE@ 32 @SET_MAKE@
33 SHELL=/bin/sh 33 SHELL=/bin/sh
34 RM = rm -f 34 RM = rm -f
35 35
49 CFLAGS=@CFLAGS@ 49 CFLAGS=@CFLAGS@
50 CPPFLAGS=@CPPFLAGS@ 50 CPPFLAGS=@CPPFLAGS@
51 LDFLAGS=@LDFLAGS@ 51 LDFLAGS=@LDFLAGS@
52 RECURSIVE_MAKE=@RECURSIVE_MAKE@ 52 RECURSIVE_MAKE=@RECURSIVE_MAKE@
53 53
54 c_switch_general=@c_switch_general@
55 c_switch_window_system=@c_switch_window_system@
56 c_switch_all=@c_switch_all@ 54 c_switch_all=@c_switch_all@
57 ld_switch_general=@ld_switch_general@
58 ld_switch_window_system=@ld_switch_window_system@
59 ld_switch_all=@ld_switch_all@ 55 ld_switch_all=@ld_switch_all@
60 ld_libs_general=@ld_libs_general@
61 ld_libs_window_system=@ld_libs_window_system@
62 ld_libs_all=@ld_libs_all@ 56 ld_libs_all=@ld_libs_all@
63 ld_dynamic_link_flags=@ld_dynamic_link_flags@ 57 ld_dynamic_link_flags=@ld_dynamic_link_flags@
64 58
65 extra_objs=@extra_objs@ 59 extra_objs=@extra_objs@
66 LN_S=@LN_S@ 60 LN_S=@LN_S@
87 ## least lets you restrict the classes of files that it applies to. 81 ## least lets you restrict the classes of files that it applies to.
88 ## This allows us to kludge around the problem. 82 ## This allows us to kludge around the problem.
89 83
90 #ifdef USE_GNU_MAKE 84 #ifdef USE_GNU_MAKE
91 vpath %.c @srcdir@ 85 vpath %.c @srcdir@
92 vpath %.cc @srcdir@
93 vpath %.h @srcdir@ 86 vpath %.h @srcdir@
94 ## now list files that should NOT be searched in the srcdir. 87 ## now list files that should NOT be searched in the srcdir.
95 ## This includes any .c or .h built from something else 88 ## This includes any .c or .h built from something else
96 ## (e.g. a .in file). 89 ## (e.g. a .in file).
97 vpath config.h 90 vpath config.h
115 lwlib_libs = ../lwlib/liblw.a 108 lwlib_libs = ../lwlib/liblw.a
116 lwlib_deps = $(lwlib_libs) 109 lwlib_deps = $(lwlib_libs)
117 $(lwlib_libs) : 110 $(lwlib_libs) :
118 cd ../lwlib && $(RECURSIVE_MAKE) 111 cd ../lwlib && $(RECURSIVE_MAKE)
119 112
120 ## a separate offix lib which merges with non-Xt event systems (TkStep, XEmacs)
121 OFFIX_O = @OFFIX_O@
122
123 x_objs=balloon_help.o balloon-x.o console-x.o device-x.o event-Xt.o frame-x.o\ 113 x_objs=balloon_help.o balloon-x.o console-x.o device-x.o event-Xt.o frame-x.o\
124 glyphs-x.o objects-x.o redisplay-x.o xgccache.o xselect.o 114 glyphs-x.o objects-x.o redisplay-x.o xgccache.o xselect.o
125 115
126 #ifdef AIX4 116 #ifdef AIX4
127 LIBI18N = -li18n 117 LIBI18N = -li18n
128 #endif /* AIX4 */ 118 #endif /* AIX4 */
129 119
130 X11_libs= $(LIBX11_LIBS) $(libx11_intl) $(LIBI18N) 120 X11_libs = $(LIBI18N)
131 #endif /* HAVE_X_WINDOWS */ 121 #endif /* HAVE_X_WINDOWS */
132 122
133 #ifdef HEAP_IN_DATA 123 #ifdef HEAP_IN_DATA
134 sheap_obj=sheap.o 124 sheap_obj=sheap.o
135 #endif 125 #endif
137 ## -Demacs is needed to make some files produce the correct version 127 ## -Demacs is needed to make some files produce the correct version
138 ## for use in Emacs. 128 ## for use in Emacs.
139 129
140 cppflags = $(CPPFLAGS) -Demacs -I. $(c_switch_all) 130 cppflags = $(CPPFLAGS) -Demacs -I. $(c_switch_all)
141 cflags = $(CFLAGS) $(cppflags) 131 cflags = $(CFLAGS) $(cppflags)
142 ldflags = $(ld_switch_all) $(ld_dynamic_link_flags) 132 ldflags = $(LDFLAGS) $(ld_switch_all) $(ld_dynamic_link_flags)
143 133
144 #ifdef SOLARIS2 134 #ifdef SOLARIS2
145 %.o : %.c 135 %.o : %.c
146 #else 136 #else
147 .c.o: 137 .c.o:
148 #endif 138 #endif
149 $(CC) -c $(cflags) $< 139 $(CC) -c $(cflags) $<
150 140
151 #ifdef SOLARIS2
152 %.o : %.cc
153 #else
154 .cc.o:
155 #endif
156 $(CC) -c $(cflags) $<
157
158 ## Create preprocessor output (debugging purposes only) 141 ## Create preprocessor output (debugging purposes only)
159 .c.i: 142 .c.i:
143 #ifdef __GNUC__
144 $(CC) -E $(cppflags) -o $@ $<
145 #else /* works on Solaris; what about other systems? */
160 $(CC) -P $(cppflags) $< 146 $(CC) -P $(cppflags) $<
147 #endif /* compiler */
148
149 ## Create assembler output (debugging purposes only)
150 .c.s:
151 $(CC) -S -c $(cflags) $<
161 152
162 ## Create RTL files 153 ## Create RTL files
163 %.c.rtl : %.c 154 %.c.rtl : %.c
164 $(CC) -dr -c $(cflags) $< 155 $(CC) -dr -c $(cflags) $<
165 156
272 ${shared_other_files} 263 ${shared_other_files}
273 264
274 all: ${other_files} 265 all: ${other_files}
275 # endif /* EXTERNAL_WIDGET */ 266 # endif /* EXTERNAL_WIDGET */
276 267
277 X11_objs = $(OFFIX_O) EmacsFrame.o EmacsShell.o TopLevelEmacsShell.o TransientEmacsShell.o EmacsManager.o $(external_widget_objs) 268 X11_objs = EmacsFrame.o EmacsShell.o TopLevelEmacsShell.o TransientEmacsShell.o EmacsManager.o $(external_widget_objs)
278 #endif /* HAVE_X_WINDOWS */ 269 #endif /* HAVE_X_WINDOWS */
279 270
280 ## define otherobjs as list of object files that make-docfile 271 ## define otherobjs as list of object files that make-docfile
281 ## should not be told about. 272 ## should not be told about.
282 otherobjs = $(BTL_objs) lastfile.o $(mallocobjs) $(rallocobjs) $(X11_objs) 273 otherobjs = $(BTL_objs) lastfile.o $(mallocobjs) $(rallocobjs) $(X11_objs)
319 310
320 xemacs: temacs ${libsrc}DOC $(mo_file) ${other_files} update-elc.stamp 311 xemacs: temacs ${libsrc}DOC $(mo_file) ${other_files} update-elc.stamp
321 @$(RM) $@ && touch SATISFIED 312 @$(RM) $@ && touch SATISFIED
322 -$(DUMPENV) ./temacs -batch -l ${srcdir}/../lisp/loadup.el dump 313 -$(DUMPENV) ./temacs -batch -l ${srcdir}/../lisp/loadup.el dump
323 @if test -f $@; then if test -f SATISFIED; then \ 314 @if test -f $@; then if test -f SATISFIED; then \
315 echo "Testing for Lisp shadows ..."; \
324 ./xemacs -batch -vanilla -f list-load-path-shadows; fi; \ 316 ./xemacs -batch -vanilla -f list-load-path-shadows; fi; \
325 $(RM) SATISFIED; exit 0; fi; \ 317 $(RM) SATISFIED; exit 0; fi; \
326 if test -f SATISFIED; then $(RM) SATISFIED; exit 1; fi; \ 318 if test -f SATISFIED; then $(RM) SATISFIED; exit 1; fi; \
327 $(RECURSIVE_MAKE) $@; 319 $(RECURSIVE_MAKE) $@;
328 320
343 $(RM) NOBYTECOMPILE 335 $(RM) NOBYTECOMPILE
344 336
345 obj_src = $(objs:.o=.c) 337 obj_src = $(objs:.o=.c)
346 338
347 dortl : $(obj_rtl) $(otherrtls) 339 dortl : $(obj_rtl) $(otherrtls)
348 echo "(defvar source-files '(" > ${srcdir}/../lisp/source-files.el 340 echo "(defvar source-files '(" > ${srcdir}/../lisp/source-files.el
349 (for a in $(obj_src) $(othersrcs);do \ 341 (for a in $(obj_src) $(othersrcs);do \
350 echo -n "\""$$a"\"" >> ${srcdir}/../lisp/source-files.el ;\ 342 echo -n "\""$$a"\"" >> ${srcdir}/../lisp/source-files.el ;\
351 done) 343 done)
352 echo "))" >> ${srcdir}/../lisp/source-files.el 344 echo "))" >> ${srcdir}/../lisp/source-files.el
353 345
354 #ifdef DYNODUMP 346 #ifdef DYNODUMP
355 dynodump_deps = ../dynodump/dynodump.so 347 dynodump_deps = ../dynodump/dynodump.so
356 ../dynodump/dynodump.so: 348 ../dynodump/dynodump.so:
433 ## 425 ##
434 ## RTC is Sun WorkShop's Run Time Checking 426 ## RTC is Sun WorkShop's Run Time Checking
435 ## 427 ##
436 ## Purify, Quantify, PureCoverage are software quality products from 428 ## Purify, Quantify, PureCoverage are software quality products from
437 ## Rational, formerly Pure Atria, formerly Pure Software. 429 ## Rational, formerly Pure Atria, formerly Pure Software.
438 ## 430 ##
439 ## None of these products work with a dumped xemacs binary, because it 431 ## None of these products work with a dumped xemacs binary, because it
440 ## does unexpected things like free memory that has been malloc'ed in 432 ## does unexpected things like free memory that has been malloc'ed in
441 ## a *different* process!! So we need to run these on temacs. 433 ## a *different* process!! So we need to run these on temacs.
442 ## 434 ##
443 435
444 .PHONY : run-rtcmacs run-puremacs run-quantmacs 436 .PHONY : run-rtcmacs run-puremacs run-quantmacs
445 437
446 rtc_patch.o: 438 rtc_patch.o:
447 rtc_patch_area -o $@ 439 rtc_patch_area -o $@
656 ## ${other_files}, $(objects_system) and $(objects_machine) 648 ## ${other_files}, $(objects_system) and $(objects_machine)
657 ## select which of these should be compiled. */ 649 ## select which of these should be compiled. */
658 650
659 .PHONY: mostlyclean clean distclean realclean versionclean extraclean 651 .PHONY: mostlyclean clean distclean realclean versionclean extraclean
660 mostlyclean: 652 mostlyclean:
661 $(RM) temacs puremacs quantmacs prefix-args depend.* *.o *.i \ 653 $(RM) temacs puremacs quantmacs prefix-args *.o *.i \
662 core temacs.exe puresize-adjust.h sheap-adjust.h 654 core temacs.exe puresize-adjust.h sheap-adjust.h
663 clean: mostlyclean versionclean 655 clean: mostlyclean versionclean
664 $(RM) libextcli* update-elc.stamp 656 $(RM) libextcli* update-elc.stamp
665 ## This is used in making a distribution. 657 ## This is used in making a distribution.
666 ## Do not use it on development directories! 658 ## Do not use it on development directories!
680 chmod u+w $(SOURCES) 672 chmod u+w $(SOURCES)
681 673
682 relock: 674 relock:
683 chmod -w $(SOURCES) 675 chmod -w $(SOURCES)
684 676
685 #ifdef __GNUC__ 677 ## Dependency processing using home-grown script, not makedepend
686 678 FRC.depend :
687 ## Dependency processing using GCC 679 depend: FRC.depend
688 680 $(RM) $@;
689 .c.dep: 681 perl ${srcdir}/make-src-depend > depend.tmp
690 $(CC) -MM $(cflags) $< > $*.dep 682 mv depend.tmp ${srcdir}/depend
691
692 obj_dep = $(objs:.o=.dep)
693
694 .PHONY : depend gnu-depend
695 ## #### Needs a bit of work: it doesn't see the object files that
696 ## we are not compiling
697 gnu-depend: $(obj_dep)
698 cat $(obj_dep) | sh ${libsrc}process-gnu-depends.sh > depend.out
699
700 #endif /* GCC */
701
702 ## Dependency processing using makedepend
703 ## This hasn't been used in over a year as of December 10, 1997.
704
705 depend:
706 : > depend.tmp
707 makedepend -f depend.tmp -Dsubprocesses \
708 -DHAVE_X_WINDOWS -DMULE -- $(cppflags) $(cflags) \
709 -- *.c
710 sh ${libsrc}process-depends.sh < depend.tmp > depend.out
711 egrep '^mule|[^a-zA-Z]mule' depend.out > /tmp/depend1.$$
712 grep -v '^mule' depend.out | grep -v '[^a-zA-Z]mule' > /tmp/depend2.$$
713 echo '#ifdef MULE' > depend.out
714 cat /tmp/depend1.$$ >> depend.out
715 @# The things you have to do to pay homage to the lexer God ... frightening
716 echo '#endif /''* MULE *''/' >> depend.out
717 echo '' >> depend.out
718 cat /tmp/depend2.$$ >> depend.out
719 $(RM) /tmp/depend1.$$ /tmp/depend2.$$
720
721 ## Manually-generated dependencies (makedepend misbehaves on these)
722
723 ## (actually makedepend does OK on these but we want to conditionalize them)
724 #ifdef EXTERNAL_WIDGET
725 ExternalClient-Xlib.o: extw-Xlib.h
726 ExternalClient-Xm.o: config.h
727 ExternalClient-Xm.o: xintrinsicp.h
728 ExternalClient-Xm.o: ExternalClient.h
729 ExternalClient-Xm.o: ExternalClientP.h
730 ExternalClient-Xm.o: extw-Xlib.h
731 ExternalClient-Xm.o: extw-Xt.h
732 ExternalClient-Xt.o: config.h
733 ExternalClient-Xt.o: xintrinsicp.h
734 ExternalClient-Xt.o: ExternalClient.h
735 ExternalClient-Xt.o: ExternalClientP.h
736 ExternalClient-Xt.o: extw-Xlib.h
737 ExternalClient-Xt.o: extw-Xt.h
738 ExternalShell.o: ExternalShell.h
739 ExternalShell.o: ExternalShellP.h
740 ExternalShell.o: config.h
741 ExternalShell.o: extw-Xlib.h
742 ExternalShell.o: extw-Xt.h
743 ExternalShell.o: xintrinsic.h
744 ExternalShell.o: xintrinsicp.h
745 extw-Xlib-shared.o: config.h
746 extw-Xlib-shared.o: extw-Xlib.h
747 extw-Xt-shared.o: config.h
748 extw-Xt-shared.o: extw-Xlib.h
749 extw-Xt-shared.o: extw-Xt.h
750 extw-Xlib-nonshared.o: config.h
751 extw-Xlib-nonshared.o: extw-Xlib.h
752 extw-Xt-nonshared.o: config.h
753 extw-Xt-nonshared.o: extw-Xlib.h
754 extw-Xt-nonshared.o: extw-Xt.h
755 #endif /* EXTERNAL_WIDGET */
756
757 #ifdef EMACS_BTL
758 cadillac-btl.o: $(BTL_dir)/cadillac-btl.c
759 cadillac-btl.o: $(BTL_dir)/cadillac-btl.h
760 cadillac-btl.o: $(BTL_dir)/cadillac-btl-extern.h
761 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl-asm.c
762 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl.h
763 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl-extern.h
764 cadillac-btl-emacs.o: $(BTL_dir)/cadillac-btl-extern.h
765 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl-process.c
766 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl.h
767 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl-extern.h
768 #endif /* EMACS_BTL */
769
770 ## (makedepend definitely misbehaves on these)
771 sgiplay.o: config.h
772 sgiplay.o: libst.h
773 unexconvex.o: getpagesize.h
774 unexec.o: getpagesize.h
775 unexaix.o: config.h
776 unexalpha.o: config.h
777 unexapollo.o: config.h
778 unexconvex.o: config.h
779 unexec.o: config.h
780 unexelf.o: config.h
781 unexenix.o: config.h
782 unexfreebsd.o: config.h
783 unexhp9k3.o: config.h
784 unexhp9k800.o: config.h
785 unexmips.o: config.h
786 unexsunos4.o: config.h
787
788 ## Dependencies (formerly) generated by 'make depend'
789
790 ## This has been hand-maintained since (at least) some time in 1996
791 ## Note: We deliberately do not include a dependency on lisp.h
792
793 #ifdef FILE_CODING
794 callproc.o: file-coding.h
795 console-tty.o: file-coding.h
796 event-Xt.o: file-coding.h
797 event-stream.o: file-coding.h
798 file-coding.o: config.h
799 file-coding.o: buffer.h
800 file-coding.o: elhash.h
801 file-coding.o: file-coding.h
802 file-coding.o: insdel.h
803 file-coding.o: lstream.h
804 #ifdef MULE
805 file-coding.o: mule-ccl.h
806 #endif
807 fileio.o: file-coding.h
808 glyphs-x.o: file-coding.h
809 inline.o: file-coding.h
810 lread.o: file-coding.h
811 md5.o: file-coding.h
812 #ifdef HAVE_CANNA
813 mule-canna.o: file-coding.h
814 #endif
815 #ifdef MULE
816 mule-ccl.o: file-coding.h
817 #endif
818 process.o: file-coding.h
819 process-unix.o: file-coding.h
820 redisplay-x.o: file-coding.h
821 redisplay.o: file-coding.h
822 #endif
823
824 #ifdef MULE
825 EmacsFrame.o: mule-charset.h
826 abbrev.o: mule-charset.h
827 alloc.o: mule-charset.h
828 buffer.o: mule-charset.h
829 bytecode.o: mule-charset.h
830 callint.o: mule-charset.h
831 callproc.o: mule-charset.h
832 casefiddle.o: mule-charset.h
833 casetab.o: mule-charset.h
834 chartab.o: mule-charset.h
835 cmdloop.o: mule-charset.h
836 cmds.o: mule-charset.h
837 console-tty.o: mule-charset.h
838 console.o: mule-charset.h
839 data.o: mule-charset.h
840 device-tty.o: mule-charset.h
841 device-x.o: mule-charset.h
842 device.o: mule-charset.h
843 dialog-x.o: mule-charset.h
844 dired.o: mule-charset.h
845 doc.o: mule-charset.h
846 doprnt.o: mule-charset.h
847 editfns.o: mule-charset.h
848 emacs.o: mule-charset.h
849 eval.o: mule-charset.h
850 event-Xt.o: mule-charset.h
851 event-stream.o: mule-charset.h
852 events.o: mule-charset.h
853 extents.o: mule-charset.h
854 faces.o: mule-charset.h
855 fileio.o: mule-charset.h
856 filelock.o: mule-charset.h
857 fns.o: mule-charset.h
858 font-lock.o: mule-charset.h
859 frame-x.o: mule-charset.h
860 frame.o: mule-charset.h
861 glyphs-x.o: mule-charset.h
862 glyphs.o: mule-charset.h
863 gui-x.o: mule-charset.h
864 indent.o: mule-charset.h
865 inline.o: mule-charset.h
866 insdel.o: mule-charset.h
867 keymap.o: mule-charset.h
868 lread.o: mule-charset.h
869 lstream.o: mule-charset.h
870 macros.o: mule-charset.h
871 marker.o: mule-charset.h
872 md5.o: mule-charset.h
873 menubar-x.o: mule-charset.h
874 minibuf.o: mule-charset.h
875 #ifdef HAVE_CANNA
876 mule-canna.o: blocktype.h
877 mule-canna.o: buffer.h
878 mule-canna.o: bufslots.h
879 mule-canna.o: config.h
880 mule-canna.o: dynarr.h
881 mule-canna.o: mule-charset.h
882 #endif /* HAVE_CANNA */
883 mule-ccl.o: blocktype.h
884 mule-ccl.o: buffer.h
885 mule-ccl.o: bufslots.h
886 mule-ccl.o: config.h
887 mule-ccl.o: dynarr.h
888 mule-ccl.o: mule-charset.h
889 mule-charset.o: blocktype.h
890 mule-charset.o: buffer.h
891 mule-charset.o: bufslots.h
892 mule-charset.o: chartab.h
893 mule-charset.o: config.h
894 mule-charset.o: dynarr.h
895 mule-charset.o: elhash.h
896 mule-charset.o: lstream.h
897 mule-charset.o: mule-charset.h
898 #if 0
899 mule-coding.o: blocktype.h
900 mule-coding.o: buffer.h
901 mule-coding.o: bufslots.h
902 mule-coding.o: config.h
903 mule-coding.o: dynarr.h
904 mule-coding.o: elhash.h
905 mule-coding.o: insdel.h
906 mule-coding.o: lstream.h
907 mule-coding.o: mule-charset.h
908 mule-coding.o: mule-coding.h
909 #endif
910 #if 0
911 mule-mcpath.o: blocktype.h
912 mule-mcpath.o: buffer.h
913 mule-mcpath.o: bufslots.h
914 mule-mcpath.o: config.h
915 mule-mcpath.o: dynarr.h
916 mule-mcpath.o: mule-charset.h
917 mule-mcpath.o: sysfile.h
918 #endif /* obsolete */
919 #ifdef HAVE_WNN
920 mule-wnnfns.o: blocktype.h
921 mule-wnnfns.o: buffer.h
922 mule-wnnfns.o: bufslots.h
923 mule-wnnfns.o: config.h
924 mule-wnnfns.o: dynarr.h
925 mule-wnnfns.o: mule-charset.h
926 mule-wnnfns.o: redisplay.h
927 mule-wnnfns.o: scrollbar.h
928 mule-wnnfns.o: window.h
929 #endif /* HAVE_WNN */
930 mule.o: blocktype.h
931 mule.o: config.h
932 mule.o: dynarr.h
933 mule.o: regex.h
934 objects-tty.o: mule-charset.h
935 objects-x.o: mule-charset.h
936 objects.o: mule-charset.h
937 print.o: mule-charset.h
938 process.o: mule-charset.h
939 redisplay-output.o: mule-charset.h
940 redisplay-tty.o: mule-charset.h
941 redisplay-x.o: mule-charset.h
942 redisplay-msw.o: mule-charset.h
943 redisplay-msw.o: mule-ccl.h
944 redisplay.o: mule-charset.h
945 regex.o: mule-charset.h
946 scrollbar.o: mule-charset.h
947 search.o: mule-charset.h
948 sound.o: mule-charset.h
949 specifier.o: mule-charset.h
950 symbols.o: mule-charset.h
951 syntax.o: mule-charset.h
952 sysdep.o: mule-charset.h
953 toolbar-x.o: mule-charset.h
954 toolbar.o: mule-charset.h
955 tooltalk.o: mule-charset.h
956 undo.o: mule-charset.h
957 window.o: mule-charset.h
958 xselect.o: mule-charset.h
959 #endif /* MULE */
960
961 #ifdef HAVE_OFFIX_DND
962 device-x.o: offix.h
963 device-x.o: offix-types.h
964 device-x.o: xintrinsic.h
965 event-Xt.o: offix.h offix-types.h xintrinsic.h
966 event-Xt.o: offix-types.h
967 event-Xt.o: xintrinsic.h
968 frame-x.o: offix.h
969 frame-x.o: offix-types.h
970 frame-x.o: xintrinsic.h
971 offix.o: offix-cursors.h
972 offix.o: offix.h
973 offix.o: offix-types.h
974 offix.o: xintrinsic.h
975 #endif
976
977 #ifdef HAVE_MS_WINDOWS
978 console-msw.o: blocktype.h
979 console-msw.o: config.h
980 console-msw.o: conslots.h
981 console-msw.o: console-msw.h
982 console-msw.o: console.h
983 console-msw.o: dynarr.h
984 device-msw.o: blocktype.h
985 device-msw.o: buffer.h
986 device-msw.o: bufslots.h
987 device-msw.o: config.h
988 device-msw.o: conslots.h
989 device-msw.o: console-msw.h
990 device-msw.o: console-stream.h
991 device-msw.o: console.h
992 device-msw.o: device.h
993 device-msw.o: dynarr.h
994 device-msw.o: events.h
995 device-msw.o: faces.h
996 device-msw.o: frame.h
997 device-msw.o: frameslots.h
998 device-msw.o: scrollbar.h
999 device-msw.o: specifier.h
1000 device-msw.o: sysdep.h
1001 device-msw.o: systime.h
1002 device-msw.o: toolbar.h
1003 event-msw.o: blocktype.h
1004 event-msw.o: config.h
1005 event-msw.o: conslots.h
1006 event-msw.o: console-msw.h
1007 event-msw.o: console.h
1008 event-msw.o: device.h
1009 event-msw.o: dynarr.h
1010 event-msw.o: events-mod.h
1011 event-msw.o: events.h
1012 event-msw.o: frame.h
1013 event-msw.o: frameslots.h
1014 event-msw.o: menubar-msw.h
1015 event-msw.o: process.h
1016 event-msw.o: redisplay.h
1017 event-msw.o: scrollbar-msw.h
1018 event-msw.o: scrollbar.h
1019 event-msw.o: specifier.h
1020 event-msw.o: sysproc.h
1021 event-msw.o: systime.h
1022 event-msw.o: syswait.h
1023 event-msw.o: toolbar.h
1024 frame-msw.o: blocktype.h
1025 frame-msw.o: buffer.h
1026 frame-msw.o: bufslots.h
1027 frame-msw.o: config.h
1028 frame-msw.o: conslots.h
1029 frame-msw.o: console-msw.h
1030 frame-msw.o: console.h
1031 frame-msw.o: device.h
1032 frame-msw.o: dynarr.h
1033 frame-msw.o: events.h
1034 frame-msw.o: faces.h
1035 frame-msw.o: frame.h
1036 frame-msw.o: frameslots.h
1037 frame-msw.o: scrollbar.h
1038 frame-msw.o: specifier.h
1039 frame-msw.o: systime.h
1040 frame-msw.o: toolbar.h
1041 menubar-msw.o: blocktype.h
1042 menubar-msw.o: buffer.h
1043 menubar-msw.o: bufslots.h
1044 menubar-msw.o: commands.h
1045 menubar-msw.o: config.h
1046 menubar-msw.o: conslots.h
1047 menubar-msw.o: console-msw.h
1048 menubar-msw.o: console.h
1049 menubar-msw.o: device.h
1050 menubar-msw.o: dynarr.h
1051 menubar-msw.o: elhash.h
1052 menubar-msw.o: events.h
1053 menubar-msw.o: frame.h
1054 menubar-msw.o: frameslots.h
1055 menubar-msw.o: gui.h
1056 menubar-msw.o: menubar-msw.h
1057 menubar-msw.o: menubar.h
1058 menubar-msw.o: opaque.h
1059 menubar-msw.o: redisplay.h
1060 menubar-msw.o: scrollbar.h
1061 menubar-msw.o: specifier.h
1062 menubar-msw.o: systime.h
1063 menubar-msw.o: toolbar.h
1064 menubar-msw.o: window.h
1065 objects-msw.o: blocktype.h
1066 objects-msw.o: buffer.h
1067 objects-msw.o: bufslots.h
1068 objects-msw.o: config.h
1069 objects-msw.o: conslots.h
1070 objects-msw.o: console-msw.h
1071 objects-msw.o: console.h
1072 objects-msw.o: device.h
1073 objects-msw.o: dynarr.h
1074 objects-msw.o: insdel.h
1075 objects-msw.o: objects-msw.h
1076 objects-msw.o: objects.h
1077 objects-msw.o: specifier.h
1078 redisplay-msw.o: blocktype.h
1079 redisplay-msw.o: buffer.h
1080 redisplay-msw.o: bufslots.h
1081 redisplay-msw.o: config.h
1082 redisplay-msw.o: conslots.h
1083 redisplay-msw.o: console-msw.h
1084 redisplay-msw.o: console.h
1085 redisplay-msw.o: debug.h
1086 redisplay-msw.o: device.h
1087 redisplay-msw.o: dynarr.h
1088 redisplay-msw.o: events.h
1089 redisplay-msw.o: faces.h
1090 redisplay-msw.o: frame.h
1091 redisplay-msw.o: frameslots.h
1092 redisplay-msw.o: glyphs.h
1093 redisplay-msw.o: objects-msw.h
1094 redisplay-msw.o: objects.h
1095 redisplay-msw.o: redisplay.h
1096 redisplay-msw.o: scrollbar.h
1097 redisplay-msw.o: specifier.h
1098 redisplay-msw.o: sysdep.h
1099 redisplay-msw.o: systime.h
1100 redisplay-msw.o: toolbar.h
1101 redisplay-msw.o: window.h
1102 scrollbar-msw.o: blocktype.h
1103 scrollbar-msw.o: config.h
1104 scrollbar-msw.o: conslots.h
1105 scrollbar-msw.o: console-msw.h
1106 scrollbar-msw.o: console.h
1107 scrollbar-msw.o: device.h
1108 scrollbar-msw.o: dynarr.h
1109 scrollbar-msw.o: events.h
1110 scrollbar-msw.o: frame.h
1111 scrollbar-msw.o: frameslots.h
1112 scrollbar-msw.o: redisplay.h
1113 scrollbar-msw.o: scrollbar-msw.h
1114 scrollbar-msw.o: scrollbar.h
1115 scrollbar-msw.o: specifier.h
1116 scrollbar-msw.o: systime.h
1117 scrollbar-msw.o: toolbar.h
1118 scrollbar-msw.o: window.h
1119 select-msw.o: blocktype.h
1120 select-msw.o: config.h
1121 select-msw.o: conslots.h
1122 select-msw.o: console-msw.h
1123 select-msw.o: console.h
1124 select-msw.o: dynarr.h
1125 #endif
1126
1127 EmacsFrame.o: $(LWLIB_SRCDIR)/lwlib.h
1128 EmacsFrame.o: EmacsFrame.h
1129 EmacsFrame.o: EmacsFrameP.h
1130 EmacsFrame.o: EmacsManager.h
1131 EmacsFrame.o: blocktype.h
1132 EmacsFrame.o: buffer.h
1133 EmacsFrame.o: bufslots.h
1134 EmacsFrame.o: config.h
1135 EmacsFrame.o: conslots.h
1136 EmacsFrame.o: console-x.h
1137 EmacsFrame.o: console.h
1138 EmacsFrame.o: device.h
1139 EmacsFrame.o: dynarr.h
1140 EmacsFrame.o: faces.h
1141 EmacsFrame.o: frame.h
1142 EmacsFrame.o: frameslots.h
1143 EmacsFrame.o: glyphs-x.h
1144 EmacsFrame.o: glyphs.h
1145 EmacsFrame.o: objects-x.h
1146 EmacsFrame.o: objects.h
1147 EmacsFrame.o: redisplay.h
1148 EmacsFrame.o: scrollbar.h
1149 EmacsFrame.o: specifier.h
1150 EmacsFrame.o: toolbar.h
1151 EmacsFrame.o: window.h
1152 EmacsFrame.o: xintrinsic.h
1153 EmacsFrame.o: xintrinsicp.h
1154 EmacsFrame.o: xmprimitivep.h
1155 EmacsFrame.o: xmu.h
1156 EmacsManager.o: EmacsManager.h
1157 EmacsManager.o: EmacsManagerP.h
1158 EmacsManager.o: config.h
1159 EmacsManager.o: xintrinsicp.h
1160 EmacsManager.o: xmmanagerp.h
1161 EmacsShell-sub.o: EmacsShell.h
1162 EmacsShell-sub.o: EmacsShellP.h
1163 EmacsShell-sub.o: config.h
1164 EmacsShell-sub.o: xintrinsic.h
1165 EmacsShell-sub.o: xintrinsicp.h
1166 EmacsShell.o: EmacsShell.h
1167 EmacsShell.o: config.h
1168 EmacsShell.o: xintrinsicp.h
1169 abbrev.o: blocktype.h
1170 abbrev.o: buffer.h
1171 abbrev.o: bufslots.h
1172 abbrev.o: chartab.h
1173 abbrev.o: commands.h
1174 abbrev.o: config.h
1175 abbrev.o: dynarr.h
1176 abbrev.o: insdel.h
1177 abbrev.o: redisplay.h
1178 abbrev.o: scrollbar.h
1179 abbrev.o: syntax.h
1180 abbrev.o: window.h
1181 alloc.o: backtrace.h
1182 alloc.o: blocktype.h
1183 alloc.o: buffer.h
1184 alloc.o: bufslots.h
1185 alloc.o: bytecode.h
1186 alloc.o: chartab.h
1187 alloc.o: config.h
1188 alloc.o: conslots.h
1189 alloc.o: console.h
1190 alloc.o: device.h
1191 alloc.o: dynarr.h
1192 alloc.o: elhash.h
1193 alloc.o: events.h
1194 alloc.o: extents.h
1195 alloc.o: frame.h
1196 alloc.o: frameslots.h
1197 alloc.o: glyphs.h
1198 alloc.o: puresize.h
1199 alloc.o: redisplay.h
1200 alloc.o: scrollbar.h
1201 alloc.o: specifier.h
1202 alloc.o: systime.h
1203 alloc.o: toolbar.h
1204 alloc.o: window.h
1205 alloca.o: config.h
1206 balloon_help.o: config.h
1207 balloon_help.o: balloon_help.h
1208 balloon-x.o: config.h
1209 balloon-x.o: device.h
1210 balloon-x.o: console-x.h
1211 balloon-x.o: balloon_help.h
1212 blocktype.o: blocktype.h
1213 blocktype.o: config.h
1214 blocktype.o: dynarr.h
1215 buffer.o: blocktype.h
1216 buffer.o: buffer.h
1217 buffer.o: bufslots.h
1218 buffer.o: chartab.h
1219 buffer.o: commands.h
1220 buffer.o: config.h
1221 buffer.o: conslots.h
1222 buffer.o: console.h
1223 buffer.o: device.h
1224 buffer.o: dynarr.h
1225 buffer.o: elhash.h
1226 buffer.o: extents.h
1227 buffer.o: faces.h
1228 buffer.o: frame.h
1229 buffer.o: frameslots.h
1230 buffer.o: insdel.h
1231 buffer.o: process.h
1232 buffer.o: redisplay.h
1233 buffer.o: scrollbar.h
1234 buffer.o: specifier.h
1235 buffer.o: syntax.h
1236 buffer.o: sysdep.h
1237 buffer.o: sysfile.h
1238 buffer.o: toolbar.h
1239 buffer.o: window.h
1240 bytecode.o: blocktype.h
1241 bytecode.o: buffer.h
1242 bytecode.o: bufslots.h
1243 bytecode.o: chartab.h
1244 bytecode.o: config.h
1245 bytecode.o: dynarr.h
1246 bytecode.o: syntax.h
1247 callint.o: blocktype.h
1248 callint.o: buffer.h
1249 callint.o: bufslots.h
1250 callint.o: bytecode.h
1251 callint.o: commands.h
1252 callint.o: config.h
1253 callint.o: dynarr.h
1254 callint.o: events.h
1255 callint.o: insdel.h
1256 callint.o: redisplay.h
1257 callint.o: scrollbar.h
1258 callint.o: systime.h
1259 callint.o: window.h
1260 callproc.o: blocktype.h
1261 callproc.o: buffer.h
1262 callproc.o: bufslots.h
1263 callproc.o: commands.h
1264 callproc.o: config.h
1265 callproc.o: dynarr.h
1266 callproc.o: insdel.h
1267 callproc.o: lstream.h
1268 callproc.o: paths.h
1269 callproc.o: process.h
1270 callproc.o: redisplay.h
1271 callproc.o: scrollbar.h
1272 callproc.o: sysdep.h
1273 callproc.o: sysfile.h
1274 callproc.o: sysproc.h
1275 callproc.o: systime.h
1276 callproc.o: systty.h
1277 callproc.o: window.h
1278 casefiddle.o: blocktype.h
1279 casefiddle.o: buffer.h
1280 casefiddle.o: bufslots.h
1281 casefiddle.o: chartab.h
1282 casefiddle.o: commands.h
1283 casefiddle.o: config.h
1284 casefiddle.o: dynarr.h
1285 casefiddle.o: insdel.h
1286 casefiddle.o: syntax.h
1287 casetab.o: blocktype.h
1288 casetab.o: buffer.h
1289 casetab.o: bufslots.h
1290 casetab.o: config.h
1291 casetab.o: dynarr.h
1292 casetab.o: opaque.h
1293 chartab.o: blocktype.h
1294 chartab.o: buffer.h
1295 chartab.o: bufslots.h
1296 chartab.o: chartab.h
1297 chartab.o: commands.h
1298 chartab.o: config.h
1299 chartab.o: dynarr.h
1300 chartab.o: syntax.h
1301 cm.o: blocktype.h
1302 cm.o: config.h
1303 cm.o: conslots.h
1304 cm.o: console-tty.h
1305 cm.o: console.h
1306 cm.o: device.h
1307 cm.o: dynarr.h
1308 cm.o: frame.h
1309 cm.o: frameslots.h
1310 cm.o: lstream.h
1311 cm.o: redisplay.h
1312 cm.o: scrollbar.h
1313 cm.o: specifier.h
1314 cm.o: systty.h
1315 cm.o: toolbar.h
1316 cmdloop.o: blocktype.h
1317 cmdloop.o: buffer.h
1318 cmdloop.o: bufslots.h
1319 cmdloop.o: commands.h
1320 cmdloop.o: config.h
1321 cmdloop.o: conslots.h
1322 cmdloop.o: console.h
1323 cmdloop.o: device.h
1324 cmdloop.o: dynarr.h
1325 cmdloop.o: events.h
1326 cmdloop.o: frame.h
1327 cmdloop.o: frameslots.h
1328 cmdloop.o: macros.h
1329 cmdloop.o: redisplay.h
1330 cmdloop.o: scrollbar.h
1331 cmdloop.o: specifier.h
1332 cmdloop.o: systime.h
1333 cmdloop.o: toolbar.h
1334 cmdloop.o: window.h
1335 cmds.o: blocktype.h
1336 cmds.o: buffer.h
1337 cmds.o: bufslots.h
1338 cmds.o: chartab.h
1339 cmds.o: commands.h
1340 cmds.o: config.h
1341 cmds.o: dynarr.h
1342 cmds.o: insdel.h
1343 cmds.o: syntax.h
1344 console-stream.o: blocktype.h
1345 console-stream.o: config.h
1346 console-stream.o: conslots.h
1347 console-stream.o: console-stream.h
1348 console-stream.o: console-tty.h
1349 console-stream.o: console.h
1350 console-stream.o: device.h
1351 console-stream.o: dynarr.h
1352 console-stream.o: events.h
1353 console-stream.o: frame.h
1354 console-stream.o: frameslots.h
1355 console-stream.o: redisplay.h
1356 console-stream.o: scrollbar.h
1357 console-stream.o: specifier.h
1358 console-stream.o: sysdep.h
1359 console-stream.o: systime.h
1360 console-stream.o: systty.h
1361 console-stream.o: toolbar.h
1362 console-stream.o: window.h
1363 console-tty.o: blocktype.h
1364 console-tty.o: buffer.h
1365 console-tty.o: bufslots.h
1366 console-tty.o: config.h
1367 console-tty.o: conslots.h
1368 console-tty.o: console-stream.h
1369 console-tty.o: console-tty.h
1370 console-tty.o: console.h
1371 console-tty.o: device.h
1372 console-tty.o: dynarr.h
1373 console-tty.o: events.h
1374 console-tty.o: faces.h
1375 console-tty.o: frame.h
1376 console-tty.o: frameslots.h
1377 console-tty.o: lstream.h
1378 console-tty.o: redisplay.h
1379 console-tty.o: scrollbar.h
1380 console-tty.o: specifier.h
1381 console-tty.o: sysdep.h
1382 console-tty.o: systime.h
1383 console-tty.o: systty.h
1384 console-tty.o: toolbar.h
1385 console-x.o: blocktype.h
1386 console-x.o: config.h
1387 console-x.o: conslots.h
1388 console-x.o: console-x.h
1389 console-x.o: console.h
1390 console-x.o: dynarr.h
1391 console-x.o: process.h
1392 console-x.o: redisplay.h
1393 console-x.o: xintrinsic.h
1394 console.o: blocktype.h
1395 console.o: buffer.h
1396 console.o: bufslots.h
1397 console.o: config.h
1398 console.o: conslots.h
1399 console.o: console-tty.h
1400 console.o: console.h
1401 console.o: device.h
1402 console.o: dynarr.h
1403 console.o: events.h
1404 console.o: frame.h
1405 console.o: frameslots.h
1406 console.o: redisplay.h
1407 console.o: scrollbar.h
1408 console.o: specifier.h
1409 console.o: sysdep.h
1410 console.o: systime.h
1411 console.o: systty.h
1412 console.o: toolbar.h
1413 console.o: window.h
1414 data.o: blocktype.h
1415 data.o: buffer.h
1416 data.o: bufslots.h
1417 data.o: bytecode.h
1418 data.o: config.h
1419 data.o: dynarr.h
1420 data.o: sysfloat.h
1421 #ifdef HAVE_DATABASE
1422 database.o: blocktype.h
1423 database.o: config.h
1424 database.o: database.h
1425 database.o: dynarr.h
1426 #endif /* HAVE_DATABASE */
1427 debug.o: blocktype.h
1428 debug.o: bytecode.h
1429 debug.o: config.h
1430 debug.o: debug.h
1431 debug.o: dynarr.h
1432 device-tty.o: blocktype.h
1433 device-tty.o: buffer.h
1434 device-tty.o: bufslots.h
1435 device-tty.o: config.h
1436 device-tty.o: conslots.h
1437 device-tty.o: console-stream.h
1438 device-tty.o: console-tty.h
1439 device-tty.o: console.h
1440 device-tty.o: device.h
1441 device-tty.o: dynarr.h
1442 device-tty.o: events.h
1443 device-tty.o: faces.h
1444 device-tty.o: frame.h
1445 device-tty.o: frameslots.h
1446 device-tty.o: lstream.h
1447 device-tty.o: redisplay.h
1448 device-tty.o: scrollbar.h
1449 device-tty.o: specifier.h
1450 device-tty.o: sysdep.h
1451 device-tty.o: systime.h
1452 device-tty.o: systty.h
1453 device-tty.o: toolbar.h
1454 device-x.o: $(LWLIB_SRCDIR)/lwlib.h
1455 device-x.o: blocktype.h
1456 device-x.o: buffer.h
1457 device-x.o: bufslots.h
1458 device-x.o: config.h
1459 device-x.o: conslots.h
1460 device-x.o: console-x.h
1461 device-x.o: console.h
1462 device-x.o: device.h
1463 device-x.o: dynarr.h
1464 device-x.o: events.h
1465 device-x.o: faces.h
1466 device-x.o: frame.h
1467 device-x.o: frameslots.h
1468 device-x.o: glyphs-x.h
1469 device-x.o: glyphs.h
1470 device-x.o: objects-x.h
1471 device-x.o: objects.h
1472 device-x.o: redisplay.h
1473 device-x.o: scrollbar.h
1474 device-x.o: specifier.h
1475 device-x.o: sysdep.h
1476 device-x.o: sysfile.h
1477 device-x.o: systime.h
1478 device-x.o: toolbar.h
1479 device-x.o: window.h
1480 device-x.o: xgccache.h
1481 device-x.o: xintrinsic.h
1482 device-x.o: xintrinsicp.h
1483 device-x.o: xmu.h
1484 device.o: blocktype.h
1485 device.o: buffer.h
1486 device.o: bufslots.h
1487 device.o: config.h
1488 device.o: conslots.h
1489 device.o: console.h
1490 device.o: device.h
1491 device.o: dynarr.h
1492 device.o: elhash.h
1493 device.o: events.h
1494 device.o: faces.h
1495 device.o: frame.h
1496 device.o: frameslots.h
1497 device.o: keymap.h
1498 device.o: redisplay.h
1499 device.o: scrollbar.h
1500 device.o: specifier.h
1501 device.o: sysdep.h
1502 device.o: systime.h
1503 device.o: toolbar.h
1504 device.o: window.h
1505 dialog-x.o: $(LWLIB_SRCDIR)/lwlib.h
1506 dialog-x.o: EmacsFrame.h
1507 dialog-x.o: EmacsManager.h
1508 dialog-x.o: EmacsShell.h
1509 dialog-x.o: blocktype.h
1510 dialog-x.o: buffer.h
1511 dialog-x.o: bufslots.h
1512 dialog-x.o: commands.h
1513 dialog-x.o: config.h
1514 dialog-x.o: conslots.h
1515 dialog-x.o: console-x.h
1516 dialog-x.o: console.h
1517 dialog-x.o: device.h
1518 dialog-x.o: dynarr.h
1519 dialog-x.o: events.h
1520 dialog-x.o: frame.h
1521 dialog-x.o: frameslots.h
1522 dialog-x.o: gui-x.h
1523 dialog-x.o: opaque.h
1524 dialog-x.o: redisplay.h
1525 dialog-x.o: scrollbar.h
1526 dialog-x.o: specifier.h
1527 dialog-x.o: systime.h
1528 dialog-x.o: toolbar.h
1529 dialog-x.o: window.h
1530 dialog-x.o: xintrinsic.h
1531 dialog.o: blocktype.h
1532 dialog.o: config.h
1533 dialog.o: dynarr.h
1534 dired.o: blocktype.h
1535 dired.o: buffer.h
1536 dired.o: bufslots.h
1537 dired.o: commands.h
1538 dired.o: config.h
1539 dired.o: dynarr.h
1540 dired.o: elhash.h
1541 dired.o: regex.h
1542 dired.o: sysdir.h
1543 dired.o: sysfile.h
1544 dlopen.o: config.h
1545 dlopen.o: buffer.h
1546 doc.o: blocktype.h
1547 doc.o: buffer.h
1548 doc.o: bufslots.h
1549 doc.o: bytecode.h
1550 doc.o: config.h
1551 doc.o: dynarr.h
1552 doc.o: insdel.h
1553 doc.o: keymap.h
1554 doc.o: sysfile.h
1555 doprnt.o: blocktype.h
1556 doprnt.o: buffer.h
1557 doprnt.o: bufslots.h
1558 doprnt.o: config.h
1559 doprnt.o: dynarr.h
1560 doprnt.o: lstream.h
1561 dynarr.o: blocktype.h
1562 dynarr.o: config.h
1563 dynarr.o: dynarr.h
1564 ecrt0.o: config.h
1565 editfns.o: blocktype.h
1566 editfns.o: buffer.h
1567 editfns.o: bufslots.h
1568 editfns.o: commands.h
1569 editfns.o: config.h
1570 editfns.o: conslots.h
1571 editfns.o: console.h
1572 editfns.o: device.h
1573 editfns.o: dynarr.h
1574 editfns.o: events.h
1575 editfns.o: extents.h
1576 editfns.o: frame.h
1577 editfns.o: frameslots.h
1578 editfns.o: insdel.h
1579 editfns.o: redisplay.h
1580 editfns.o: scrollbar.h
1581 editfns.o: specifier.h
1582 editfns.o: sysdep.h
1583 editfns.o: syspwd.h
1584 editfns.o: systime.h
1585 editfns.o: toolbar.h
1586 editfns.o: window.h
1587 elhash.o: blocktype.h
1588 elhash.o: bytecode.h
1589 elhash.o: config.h
1590 elhash.o: dynarr.h
1591 elhash.o: elhash.h
1592 elhash.o: hash.h
1593 emacs.o: backtrace.h
1594 emacs.o: blocktype.h
1595 emacs.o: buffer.h
1596 emacs.o: bufslots.h
1597 emacs.o: commands.h
1598 emacs.o: config.h
1599 emacs.o: conslots.h
1600 emacs.o: console.h
1601 emacs.o: dynarr.h
1602 emacs.o: process.h
1603 emacs.o: sysdep.h
1604 emacs.o: sysfile.h
1605 emacs.o: systime.h
1606 emacs.o: systty.h
1607 eval.o: backtrace.h
1608 eval.o: blocktype.h
1609 eval.o: buffer.h
1610 eval.o: bufslots.h
1611 eval.o: bytecode.h
1612 eval.o: commands.h
1613 eval.o: config.h
1614 eval.o: conslots.h
1615 eval.o: console.h
1616 eval.o: dynarr.h
1617 eval.o: opaque.h
1618 event-Xt.o: $(LWLIB_SRCDIR)/lwlib.h
1619 event-Xt.o: Emacs.ad.h
1620 event-Xt.o: EmacsFrame.h
1621 event-Xt.o: blocktype.h
1622 event-Xt.o: buffer.h
1623 event-Xt.o: bufslots.h
1624 event-Xt.o: commands.h
1625 event-Xt.o: config.h
1626 event-Xt.o: conslots.h
1627 event-Xt.o: console-tty.h
1628 event-Xt.o: console-x.h
1629 event-Xt.o: console.h
1630 event-Xt.o: device.h
1631 event-Xt.o: dynarr.h
1632 event-Xt.o: events.h
1633 event-Xt.o: frame.h
1634 event-Xt.o: frameslots.h
1635 event-Xt.o: objects-x.h
1636 event-Xt.o: objects.h
1637 event-Xt.o: paths.h
1638 event-Xt.o: process.h
1639 event-Xt.o: redisplay.h
1640 event-Xt.o: scrollbar.h
1641 event-Xt.o: specifier.h
1642 event-Xt.o: sysproc.h
1643 event-Xt.o: systime.h
1644 event-Xt.o: systty.h
1645 event-Xt.o: toolbar.h
1646 event-Xt.o: xintrinsic.h
1647 event-Xt.o: xintrinsicp.h
1648 event-stream.o: blocktype.h
1649 event-stream.o: buffer.h
1650 event-stream.o: bufslots.h
1651 event-stream.o: commands.h
1652 event-stream.o: config.h
1653 event-stream.o: conslots.h
1654 event-stream.o: console.h
1655 event-stream.o: device.h
1656 event-stream.o: dynarr.h
1657 event-stream.o: elhash.h
1658 event-stream.o: events.h
1659 event-stream.o: frame.h
1660 event-stream.o: frameslots.h
1661 event-stream.o: insdel.h
1662 event-stream.o: keymap.h
1663 event-stream.o: lstream.h
1664 event-stream.o: macros.h
1665 event-stream.o: opaque.h
1666 event-stream.o: process.h
1667 event-stream.o: redisplay.h
1668 event-stream.o: scrollbar.h
1669 event-stream.o: specifier.h
1670 event-stream.o: sysdep.h
1671 event-stream.o: systime.h
1672 event-stream.o: toolbar.h
1673 event-stream.o: window.h
1674 event-tty.o: blocktype.h
1675 event-tty.o: config.h
1676 event-tty.o: conslots.h
1677 event-tty.o: console-tty.h
1678 event-tty.o: console.h
1679 event-tty.o: device.h
1680 event-tty.o: dynarr.h
1681 event-tty.o: events.h
1682 event-tty.o: frame.h
1683 event-tty.o: frameslots.h
1684 event-tty.o: paths.h
1685 event-tty.o: process.h
1686 event-tty.o: scrollbar.h
1687 event-tty.o: specifier.h
1688 event-tty.o: sysproc.h
1689 event-tty.o: systime.h
1690 event-tty.o: systty.h
1691 event-tty.o: syswait.h
1692 event-tty.o: toolbar.h
1693 event-unixoid.o: blocktype.h
1694 event-unixoid.o: config.h
1695 event-unixoid.o: conslots.h
1696 event-unixoid.o: console-stream.h
1697 event-unixoid.o: console-tty.h
1698 event-unixoid.o: console.h
1699 event-unixoid.o: device.h
1700 event-unixoid.o: dynarr.h
1701 event-unixoid.o: events.h
1702 event-unixoid.o: paths.h
1703 event-unixoid.o: process.h
1704 event-unixoid.o: sysdep.h
1705 event-unixoid.o: sysproc.h
1706 event-unixoid.o: systime.h
1707 event-unixoid.o: systty.h
1708 events.o: blocktype.h
1709 events.o: buffer.h
1710 events.o: bufslots.h
1711 events.o: config.h
1712 events.o: conslots.h
1713 events.o: console-tty.h
1714 events.o: console-x.h
1715 events.o: console.h
1716 events.o: device.h
1717 events.o: dynarr.h
1718 events.o: events.h
1719 events.o: extents.h
1720 events.o: frame.h
1721 events.o: frameslots.h
1722 events.o: glyphs.h
1723 events.o: keymap.h
1724 events.o: redisplay.h
1725 events.o: scrollbar.h
1726 events.o: specifier.h
1727 events.o: systime.h
1728 events.o: systty.h
1729 events.o: toolbar.h
1730 events.o: window.h
1731 events.o: xintrinsic.h
1732 extents.o: blocktype.h
1733 extents.o: buffer.h
1734 extents.o: bufslots.h
1735 extents.o: config.h
1736 extents.o: conslots.h
1737 extents.o: console.h
1738 extents.o: debug.h
1739 extents.o: device.h
1740 extents.o: dynarr.h
1741 extents.o: elhash.h
1742 extents.o: extents.h
1743 extents.o: faces.h
1744 extents.o: frame.h
1745 extents.o: frameslots.h
1746 extents.o: glyphs.h
1747 extents.o: hash.h
1748 extents.o: insdel.h
1749 extents.o: opaque.h
1750 extents.o: process.h
1751 extents.o: redisplay.h
1752 extents.o: scrollbar.h
1753 extents.o: specifier.h
1754 extents.o: toolbar.h
1755 faces.o: EmacsFrame.h
1756 faces.o: blocktype.h
1757 faces.o: buffer.h
1758 faces.o: bufslots.h
1759 faces.o: config.h
1760 faces.o: conslots.h
1761 faces.o: console-x.h
1762 faces.o: console.h
1763 faces.o: device.h
1764 faces.o: dynarr.h
1765 faces.o: elhash.h
1766 faces.o: extents.h
1767 faces.o: faces.h
1768 faces.o: frame.h
1769 faces.o: frameslots.h
1770 faces.o: glyphs.h
1771 faces.o: hash.h
1772 faces.o: objects-x.h
1773 faces.o: objects.h
1774 faces.o: redisplay.h
1775 faces.o: scrollbar.h
1776 faces.o: specifier.h
1777 faces.o: toolbar.h
1778 faces.o: window.h
1779 faces.o: xintrinsic.h
1780 fileio.o: blocktype.h
1781 fileio.o: buffer.h
1782 fileio.o: bufslots.h
1783 fileio.o: config.h
1784 fileio.o: conslots.h
1785 fileio.o: console.h
1786 fileio.o: device.h
1787 fileio.o: dynarr.h
1788 fileio.o: events.h
1789 fileio.o: frame.h
1790 fileio.o: frameslots.h
1791 fileio.o: insdel.h
1792 fileio.o: lstream.h
1793 fileio.o: paths.h
1794 fileio.o: redisplay.h
1795 fileio.o: scrollbar.h
1796 fileio.o: specifier.h
1797 fileio.o: sysdep.h
1798 fileio.o: sysdir.h
1799 fileio.o: sysfile.h
1800 fileio.o: sysproc.h
1801 fileio.o: syspwd.h
1802 fileio.o: systime.h
1803 fileio.o: toolbar.h
1804 fileio.o: window.h
1805 filelock.o: blocktype.h
1806 filelock.o: buffer.h
1807 filelock.o: bufslots.h
1808 filelock.o: config.h
1809 filelock.o: dynarr.h
1810 filelock.o: paths.h
1811 filelock.o: sysdir.h
1812 filelock.o: sysfile.h
1813 filelock.o: syspwd.h
1814 filemode.o: blocktype.h
1815 filemode.o: config.h
1816 filemode.o: dynarr.h
1817 filemode.o: sysfile.h
1818 floatfns.o: blocktype.h
1819 floatfns.o: config.h
1820 floatfns.o: dynarr.h
1821 floatfns.o: sysfloat.h
1822 fns.o: blocktype.h
1823 fns.o: buffer.h
1824 fns.o: bufslots.h
1825 fns.o: bytecode.h
1826 fns.o: commands.h
1827 fns.o: config.h
1828 fns.o: conslots.h
1829 fns.o: console.h
1830 fns.o: device.h
1831 fns.o: dynarr.h
1832 fns.o: events.h
1833 fns.o: extents.h
1834 fns.o: frame.h
1835 fns.o: frameslots.h
1836 fns.o: scrollbar.h
1837 fns.o: specifier.h
1838 fns.o: systime.h
1839 fns.o: toolbar.h
1840 font-lock.o: blocktype.h
1841 font-lock.o: buffer.h
1842 font-lock.o: bufslots.h
1843 font-lock.o: chartab.h
1844 font-lock.o: config.h
1845 font-lock.o: dynarr.h
1846 font-lock.o: insdel.h
1847 font-lock.o: syntax.h
1848 frame-tty.o: blocktype.h
1849 frame-tty.o: config.h
1850 frame-tty.o: conslots.h
1851 frame-tty.o: console-tty.h
1852 frame-tty.o: console.h
1853 frame-tty.o: device.h
1854 frame-tty.o: dynarr.h
1855 frame-tty.o: frame.h
1856 frame-tty.o: frameslots.h
1857 frame-tty.o: scrollbar.h
1858 frame-tty.o: specifier.h
1859 frame-tty.o: systty.h
1860 frame-tty.o: toolbar.h
1861 frame-x.o: $(LWLIB_SRCDIR)/lwlib.h
1862 frame-x.o: EmacsFrame.h
1863 frame-x.o: EmacsFrameP.h
1864 frame-x.o: EmacsManager.h
1865 frame-x.o: EmacsShell.h
1866 frame-x.o: ExternalShell.h
1867 frame-x.o: blocktype.h
1868 frame-x.o: buffer.h
1869 frame-x.o: bufslots.h
1870 frame-x.o: config.h
1871 frame-x.o: conslots.h
1872 frame-x.o: console-x.h
1873 frame-x.o: console.h
1874 frame-x.o: device.h
1875 frame-x.o: dynarr.h
1876 frame-x.o: events.h
1877 frame-x.o: extents.h
1878 frame-x.o: faces.h
1879 frame-x.o: frame.h
1880 frame-x.o: frameslots.h
1881 frame-x.o: glyphs-x.h
1882 frame-x.o: glyphs.h
1883 frame-x.o: objects-x.h
1884 frame-x.o: objects.h
1885 frame-x.o: redisplay.h
1886 frame-x.o: scrollbar-x.h
1887 frame-x.o: scrollbar.h
1888 frame-x.o: specifier.h
1889 frame-x.o: systime.h
1890 frame-x.o: toolbar.h
1891 frame-x.o: window.h
1892 frame-x.o: xintrinsic.h
1893 frame-x.o: xintrinsicp.h
1894 frame-x.o: xmprimitivep.h
1895 frame-x.o: xmu.h
1896 frame.o: blocktype.h
1897 frame.o: buffer.h
1898 frame.o: bufslots.h
1899 frame.o: config.h
1900 frame.o: conslots.h
1901 frame.o: console.h
1902 frame.o: device.h
1903 frame.o: dynarr.h
1904 frame.o: events.h
1905 frame.o: extents.h
1906 frame.o: faces.h
1907 frame.o: frame.h
1908 frame.o: frameslots.h
1909 frame.o: glyphs.h
1910 frame.o: menubar.h
1911 frame.o: redisplay.h
1912 frame.o: scrollbar.h
1913 frame.o: specifier.h
1914 frame.o: sysdep.h
1915 frame.o: systime.h
1916 frame.o: toolbar.h
1917 frame.o: window.h
1918 free-hook.o: blocktype.h
1919 free-hook.o: config.h
1920 free-hook.o: dynarr.h
1921 free-hook.o: hash.h
1922 general.o: blocktype.h
1923 general.o: config.h
1924 general.o: dynarr.h
1925 getloadavg.o: blocktype.h
1926 getloadavg.o: config.h
1927 getloadavg.o: dynarr.h
1928 glyphs-x.o: $(LWLIB_SRCDIR)/lwlib.h
1929 glyphs-x.o: ${srcdir}/${etcdir}xemacs.xbm
1930 glyphs-x.o: bitmaps.h
1931 glyphs-x.o: blocktype.h
1932 glyphs-x.o: buffer.h
1933 glyphs-x.o: bufslots.h
1934 glyphs-x.o: config.h
1935 glyphs-x.o: conslots.h
1936 glyphs-x.o: console-x.h
1937 glyphs-x.o: console.h
1938 glyphs-x.o: device.h
1939 glyphs-x.o: dynarr.h
1940 glyphs-x.o: frame.h
1941 glyphs-x.o: frameslots.h
1942 glyphs-x.o: glyphs-x.h
1943 glyphs-x.o: glyphs.h
1944 glyphs-x.o: insdel.h
1945 glyphs-x.o: objects-x.h
1946 glyphs-x.o: objects.h
1947 glyphs-x.o: opaque.h
1948 glyphs-x.o: scrollbar.h
1949 glyphs-x.o: specifier.h
1950 glyphs-x.o: sysfile.h
1951 glyphs-x.o: toolbar.h
1952 glyphs-x.o: xintrinsic.h
1953 glyphs-x.o: xmu.h
1954 glyphs-x.o: imgproc.h
1955 imgproc.o: imgproc.h
1956 imgproc.o: config.h
1957 glyphs.o: blocktype.h
1958 glyphs.o: buffer.h
1959 glyphs.o: bufslots.h
1960 glyphs.o: config.h
1961 glyphs.o: conslots.h
1962 glyphs.o: console.h
1963 glyphs.o: device.h
1964 glyphs.o: dynarr.h
1965 glyphs.o: elhash.h
1966 glyphs.o: faces.h
1967 glyphs.o: frame.h
1968 glyphs.o: frameslots.h
1969 glyphs.o: glyphs.h
1970 glyphs.o: objects.h
1971 glyphs.o: redisplay.h
1972 glyphs.o: scrollbar.h
1973 glyphs.o: specifier.h
1974 glyphs.o: toolbar.h
1975 glyphs.o: window.h
1976 glyphs-msw.o: bitmaps.h
1977 glyphs-msw.o: blocktype.h
1978 glyphs-msw.o: buffer.h
1979 glyphs-msw.o: bufslots.h
1980 glyphs-msw.o: config.h
1981 glyphs-msw.o: conslots.h
1982 glyphs-msw.o: console-msw.h
1983 glyphs-msw.o: console.h
1984 glyphs-msw.o: device.h
1985 glyphs-msw.o: dynarr.h
1986 glyphs-msw.o: frame.h
1987 glyphs-msw.o: frameslots.h
1988 glyphs-msw.o: glyphs-msw.h
1989 glyphs-msw.o: glyphs.h
1990 glyphs-msw.o: insdel.h
1991 glyphs-msw.o: objects-msw.h
1992 glyphs-msw.o: objects.h
1993 glyphs-msw.o: opaque.h
1994 glyphs-msw.o: scrollbar.h
1995 glyphs-msw.o: specifier.h
1996 glyphs-msw.o: sysfile.h
1997 glyphs-msw.o: toolbar.h
1998 glyphs-msw.o: imgproc.h
1999 gmalloc.o: config.h
2000 gmalloc.o: getpagesize.h
2001 gui-x.o: $(LWLIB_SRCDIR)/lwlib.h
2002 gui-x.o: blocktype.h
2003 gui-x.o: buffer.h
2004 gui-x.o: bufslots.h
2005 gui-x.o: config.h
2006 gui-x.o: conslots.h
2007 gui-x.o: console-x.h
2008 gui-x.o: console.h
2009 gui-x.o: device.h
2010 gui-x.o: dynarr.h
2011 gui-x.o: frame.h
2012 gui-x.o: frameslots.h
2013 gui-x.o: gui-x.h
2014 gui-x.o: opaque.h
2015 gui-x.o: scrollbar.h
2016 gui-x.o: specifier.h
2017 gui-x.o: toolbar.h
2018 gui-x.o: xintrinsic.h
2019 gui.o: blocktype.h
2020 gui.o: config.h
2021 gui.o: dynarr.h
2022 hash.o: blocktype.h
2023 hash.o: config.h
2024 hash.o: dynarr.h
2025 hash.o: elhash.h
2026 hash.o: hash.h
2027 hftctl.o: blocktype.h
2028 hftctl.o: config.h
2029 hftctl.o: dynarr.h
2030 hpplay.o: blocktype.h
2031 hpplay.o: config.h
2032 hpplay.o: dynarr.h
2033 indent.o: blocktype.h
2034 indent.o: buffer.h
2035 indent.o: bufslots.h
2036 indent.o: config.h
2037 indent.o: conslots.h
2038 indent.o: console.h
2039 indent.o: device.h
2040 indent.o: dynarr.h
2041 indent.o: extents.h
2042 indent.o: faces.h
2043 indent.o: frame.h
2044 indent.o: frameslots.h
2045 indent.o: glyphs.h
2046 indent.o: insdel.h
2047 indent.o: redisplay.h
2048 indent.o: scrollbar.h
2049 indent.o: specifier.h
2050 indent.o: toolbar.h
2051 indent.o: window.h
2052 inline.o: $(LWLIB_SRCDIR)/lwlib.h
2053 inline.o: blocktype.h
2054 inline.o: buffer.h
2055 inline.o: bufslots.h
2056 inline.o: bytecode.h
2057 inline.o: chartab.h
2058 inline.o: config.h
2059 inline.o: conslots.h
2060 inline.o: console-x.h
2061 inline.o: console.h
2062 inline.o: device.h
2063 inline.o: dynarr.h
2064 inline.o: elhash.h
2065 inline.o: events.h
2066 inline.o: extents.h
2067 inline.o: faces.h
2068 inline.o: frame.h
2069 inline.o: frameslots.h
2070 inline.o: glyphs-x.h
2071 inline.o: glyphs.h
2072 inline.o: gui-x.h
2073 inline.o: keymap.h
2074 inline.o: lstream.h
2075 inline.o: objects.h
2076 inline.o: opaque.h
2077 inline.o: process.h
2078 inline.o: redisplay.h
2079 inline.o: scrollbar.h
2080 inline.o: specifier.h
2081 inline.o: syntax.h
2082 inline.o: systime.h
2083 inline.o: toolbar.h
2084 inline.o: window.h
2085 inline.o: xintrinsic.h
2086 input-method-xlib.o: EmacsFrame.h
2087 input-method-xlib.o: blocktype.h
2088 input-method-xlib.o: buffer.h
2089 input-method-xlib.o: bufslots.h
2090 input-method-xlib.o: config.h
2091 input-method-xlib.o: conslots.h
2092 input-method-xlib.o: console-x.h
2093 input-method-xlib.o: console.h
2094 input-method-xlib.o: device.h
2095 input-method-xlib.o: dynarr.h
2096 input-method-xlib.o: frame.h
2097 input-method-xlib.o: frameslots.h
2098 input-method-xlib.o: insdel.h
2099 input-method-xlib.o: lstream.h
2100 input-method-xlib.o: redisplay.h
2101 input-method-xlib.o: scrollbar.h
2102 input-method-xlib.o: specifier.h
2103 input-method-xlib.o: toolbar.h
2104 input-method-xlib.o: window.h
2105 input-method-xlib.o: xintrinsic.h
2106 insdel.o: blocktype.h
2107 insdel.o: buffer.h
2108 insdel.o: bufslots.h
2109 insdel.o: config.h
2110 insdel.o: conslots.h
2111 insdel.o: console.h
2112 insdel.o: device.h
2113 insdel.o: dynarr.h
2114 insdel.o: extents.h
2115 insdel.o: frame.h
2116 insdel.o: frameslots.h
2117 insdel.o: insdel.h
2118 insdel.o: lstream.h
2119 insdel.o: redisplay.h
2120 insdel.o: scrollbar.h
2121 insdel.o: specifier.h
2122 insdel.o: toolbar.h
2123 intl.o: blocktype.h
2124 intl.o: bytecode.h
2125 intl.o: config.h
2126 intl.o: conslots.h
2127 intl.o: console.h
2128 intl.o: device.h
2129 intl.o: dynarr.h
2130 keymap.o: blocktype.h
2131 keymap.o: buffer.h
2132 keymap.o: bufslots.h
2133 keymap.o: bytecode.h
2134 keymap.o: commands.h
2135 keymap.o: config.h
2136 keymap.o: conslots.h
2137 keymap.o: console.h
2138 keymap.o: device.h
2139 keymap.o: dynarr.h
2140 keymap.o: elhash.h
2141 keymap.o: events.h
2142 keymap.o: frame.h
2143 keymap.o: frameslots.h
2144 keymap.o: insdel.h
2145 keymap.o: keymap.h
2146 keymap.o: redisplay.h
2147 keymap.o: scrollbar.h
2148 keymap.o: specifier.h
2149 keymap.o: systime.h
2150 keymap.o: toolbar.h
2151 keymap.o: window.h
2152 libsst.o: blocktype.h
2153 libsst.o: config.h
2154 libsst.o: dynarr.h
2155 libsst.o: libsst.h
2156 line-number.o: config.h
2157 line-number.o: buffer.h
2158 line-number.o: insdel.h
2159 line-number.o: line-number.h
2160 linuxplay.o: blocktype.h
2161 linuxplay.o: config.h
2162 linuxplay.o: dynarr.h
2163 lread.o: blocktype.h
2164 lread.o: buffer.h
2165 lread.o: bufslots.h
2166 lread.o: bytecode.h
2167 lread.o: commands.h
2168 lread.o: config.h
2169 lread.o: dynarr.h
2170 lread.o: insdel.h
2171 lread.o: lstream.h
2172 lread.o: opaque.h
2173 lread.o: paths.h
2174 lread.o: sysfile.h
2175 lstream.o: blocktype.h
2176 lstream.o: buffer.h
2177 lstream.o: bufslots.h
2178 lstream.o: config.h
2179 lstream.o: dynarr.h
2180 lstream.o: insdel.h
2181 lstream.o: lstream.h
2182 lstream.o: sysfile.h
2183 macros.o: blocktype.h
2184 macros.o: buffer.h
2185 macros.o: bufslots.h
2186 macros.o: commands.h
2187 macros.o: config.h
2188 macros.o: conslots.h
2189 macros.o: console.h
2190 macros.o: device.h
2191 macros.o: dynarr.h
2192 macros.o: events.h
2193 macros.o: frame.h
2194 macros.o: frameslots.h
2195 macros.o: keymap.h
2196 macros.o: macros.h
2197 macros.o: redisplay.h
2198 macros.o: scrollbar.h
2199 macros.o: specifier.h
2200 macros.o: systime.h
2201 macros.o: toolbar.h
2202 macros.o: window.h
2203 malloc.o: config.h
2204 malloc.o: getpagesize.h
2205 marker.o: blocktype.h
2206 marker.o: buffer.h
2207 marker.o: bufslots.h
2208 marker.o: config.h
2209 marker.o: dynarr.h
2210 md5.o: blocktype.h
2211 md5.o: buffer.h
2212 md5.o: bufslots.h
2213 md5.o: config.h
2214 md5.o: dynarr.h
2215 md5.o: insdel.h
2216 menubar-x.o: $(LWLIB_SRCDIR)/lwlib.h
2217 menubar-x.o: EmacsFrame.h
2218 menubar-x.o: EmacsManager.h
2219 menubar-x.o: EmacsShell.h
2220 menubar-x.o: blocktype.h
2221 menubar-x.o: buffer.h
2222 menubar-x.o: bufslots.h
2223 menubar-x.o: commands.h
2224 menubar-x.o: config.h
2225 menubar-x.o: conslots.h
2226 menubar-x.o: console-x.h
2227 menubar-x.o: console.h
2228 menubar-x.o: device.h
2229 menubar-x.o: dynarr.h
2230 menubar-x.o: events.h
2231 menubar-x.o: frame.h
2232 menubar-x.o: frameslots.h
2233 menubar-x.o: gui-x.h
2234 menubar-x.o: opaque.h
2235 menubar-x.o: redisplay.h
2236 menubar-x.o: scrollbar.h
2237 menubar-x.o: specifier.h
2238 menubar-x.o: systime.h
2239 menubar-x.o: toolbar.h
2240 menubar-x.o: window.h
2241 menubar-x.o: xintrinsic.h
2242 menubar.o: blocktype.h
2243 menubar.o: config.h
2244 menubar.o: conslots.h
2245 menubar.o: console.h
2246 menubar.o: device.h
2247 menubar.o: dynarr.h
2248 menubar.o: frame.h
2249 menubar.o: frameslots.h
2250 menubar.o: menubar.h
2251 menubar.o: redisplay.h
2252 menubar.o: scrollbar.h
2253 menubar.o: specifier.h
2254 menubar.o: toolbar.h
2255 menubar.o: window.h
2256 minibuf.o: blocktype.h
2257 minibuf.o: buffer.h
2258 minibuf.o: bufslots.h
2259 minibuf.o: commands.h
2260 minibuf.o: config.h
2261 minibuf.o: conslots.h
2262 minibuf.o: console-stream.h
2263 minibuf.o: console.h
2264 minibuf.o: device.h
2265 minibuf.o: dynarr.h
2266 minibuf.o: events.h
2267 minibuf.o: frame.h
2268 minibuf.o: frameslots.h
2269 minibuf.o: insdel.h
2270 minibuf.o: redisplay.h
2271 minibuf.o: scrollbar.h
2272 minibuf.o: specifier.h
2273 minibuf.o: systime.h
2274 minibuf.o: toolbar.h
2275 minibuf.o: window.h
2276 msdos.o: config.h
2277 nas.o: blocktype.h
2278 nas.o: config.h
2279 nas.o: dynarr.h
2280 objects-tty.o: blocktype.h
2281 objects-tty.o: config.h
2282 objects-tty.o: conslots.h
2283 objects-tty.o: console-tty.h
2284 objects-tty.o: console.h
2285 objects-tty.o: device.h
2286 objects-tty.o: dynarr.h
2287 objects-tty.o: insdel.h
2288 objects-tty.o: objects-tty.h
2289 objects-tty.o: objects.h
2290 objects-tty.o: specifier.h
2291 objects-tty.o: systty.h
2292 objects-x.o: blocktype.h
2293 objects-x.o: buffer.h
2294 objects-x.o: bufslots.h
2295 objects-x.o: config.h
2296 objects-x.o: conslots.h
2297 objects-x.o: console-x.h
2298 objects-x.o: console.h
2299 objects-x.o: device.h
2300 objects-x.o: dynarr.h
2301 objects-x.o: insdel.h
2302 objects-x.o: objects-x.h
2303 objects-x.o: objects.h
2304 objects-x.o: specifier.h
2305 objects-x.o: xintrinsic.h
2306 objects.o: blocktype.h
2307 objects.o: buffer.h
2308 objects.o: bufslots.h
2309 objects.o: config.h
2310 objects.o: conslots.h
2311 objects.o: console.h
2312 objects.o: device.h
2313 objects.o: dynarr.h
2314 objects.o: elhash.h
2315 objects.o: faces.h
2316 objects.o: frame.h
2317 objects.o: frameslots.h
2318 objects.o: objects.h
2319 objects.o: redisplay.h
2320 objects.o: scrollbar.h
2321 objects.o: specifier.h
2322 objects.o: toolbar.h
2323 objects.o: window.h
2324 opaque.o: blocktype.h
2325 opaque.o: config.h
2326 opaque.o: dynarr.h
2327 opaque.o: opaque.h
2328 print.o: backtrace.h
2329 print.o: blocktype.h
2330 print.o: buffer.h
2331 print.o: bufslots.h
2332 print.o: bytecode.h
2333 print.o: config.h
2334 print.o: conslots.h
2335 print.o: console-stream.h
2336 print.o: console-tty.h
2337 print.o: console.h
2338 print.o: device.h
2339 print.o: dynarr.h
2340 print.o: extents.h
2341 print.o: frame.h
2342 print.o: frameslots.h
2343 print.o: insdel.h
2344 print.o: lstream.h
2345 print.o: scrollbar.h
2346 print.o: specifier.h
2347 print.o: systty.h
2348 print.o: toolbar.h
2349 process-unix.o: config.h
2350 process-unix.o: buffer.h
2351 process-unix.o: commands.h
2352 process-unix.o: events.h
2353 process-unix.o: frame.h
2354 process-unix.o: insdel.h
2355 process-unix.o: lstream.h
2356 process-unix.o: opaque.h
2357 process-unix.o: process.h
2358 process-unix.o: procimpl.h
2359 process-unix.o: window.h
2360 process-unix.o: sysfile.h
2361 process-unix.o: sysproc.h
2362 process-unix.o: systime.h
2363 process-unix.o: syssignal.h
2364 process-unix.o: systty.h
2365 process-unix.o: syswait.h
2366 process.o: blocktype.h
2367 process.o: buffer.h
2368 process.o: bufslots.h
2369 process.o: commands.h
2370 process.o: config.h
2371 process.o: conslots.h
2372 process.o: console.h
2373 process.o: device.h
2374 process.o: dynarr.h
2375 process.o: events.h
2376 process.o: frame.h
2377 process.o: frameslots.h
2378 process.o: insdel.h
2379 process.o: lstream.h
2380 process.o: opaque.h
2381 process.o: paths.h
2382 process.o: process.h
2383 process.o: redisplay.h
2384 process.o: scrollbar.h
2385 process.o: specifier.h
2386 process.o: sysdep.h
2387 process.o: sysfile.h
2388 process.o: sysproc.h
2389 process.o: systime.h
2390 process.o: systty.h
2391 process.o: syswait.h
2392 process.o: toolbar.h
2393 process.o: window.h
2394 profile.o: backtrace.h
2395 profile.o: blocktype.h
2396 profile.o: bytecode.h
2397 profile.o: config.h
2398 profile.o: dynarr.h
2399 profile.o: hash.h
2400 profile.o: systime.h
2401 pure.o: blocktype.h
2402 pure.o: config.h
2403 pure.o: dynarr.h
2404 pure.o: puresize.h puresize-adjust.h
2405 ralloc.o: blocktype.h
2406 ralloc.o: config.h
2407 ralloc.o: dynarr.h
2408 ralloc.o: getpagesize.h
2409 rangetab.o: blocktype.h
2410 rangetab.o: config.h
2411 rangetab.o: dynarr.h
2412 realpath.o: config.h
2413 redisplay-output.o: blocktype.h
2414 redisplay-output.o: buffer.h
2415 redisplay-output.o: bufslots.h
2416 redisplay-output.o: config.h
2417 redisplay-output.o: conslots.h
2418 redisplay-output.o: console.h
2419 redisplay-output.o: debug.h
2420 redisplay-output.o: device.h
2421 redisplay-output.o: dynarr.h
2422 redisplay-output.o: faces.h
2423 redisplay-output.o: frame.h
2424 redisplay-output.o: frameslots.h
2425 redisplay-output.o: glyphs.h
2426 redisplay-output.o: redisplay.h
2427 redisplay-output.o: scrollbar.h
2428 redisplay-output.o: specifier.h
2429 redisplay-output.o: sysdep.h
2430 redisplay-output.o: toolbar.h
2431 redisplay-output.o: window.h
2432 redisplay-tty.o: blocktype.h
2433 redisplay-tty.o: buffer.h
2434 redisplay-tty.o: bufslots.h
2435 redisplay-tty.o: config.h
2436 redisplay-tty.o: conslots.h
2437 redisplay-tty.o: console-tty.h
2438 redisplay-tty.o: console.h
2439 redisplay-tty.o: device.h
2440 redisplay-tty.o: dynarr.h
2441 redisplay-tty.o: events.h
2442 redisplay-tty.o: faces.h
2443 redisplay-tty.o: frame.h
2444 redisplay-tty.o: frameslots.h
2445 redisplay-tty.o: glyphs.h
2446 redisplay-tty.o: lstream.h
2447 redisplay-tty.o: objects-tty.h
2448 redisplay-tty.o: objects.h
2449 redisplay-tty.o: redisplay.h
2450 redisplay-tty.o: scrollbar.h
2451 redisplay-tty.o: specifier.h
2452 redisplay-tty.o: sysdep.h
2453 redisplay-tty.o: systime.h
2454 redisplay-tty.o: systty.h
2455 redisplay-tty.o: toolbar.h
2456 redisplay-tty.o: window.h
2457 redisplay-x.o: $(LWLIB_SRCDIR)/lwlib.h
2458 redisplay-x.o: EmacsFrame.h
2459 redisplay-x.o: EmacsFrameP.h
2460 redisplay-x.o: blocktype.h
2461 redisplay-x.o: buffer.h
2462 redisplay-x.o: bufslots.h
2463 redisplay-x.o: config.h
2464 redisplay-x.o: conslots.h
2465 redisplay-x.o: console-x.h
2466 redisplay-x.o: console.h
2467 redisplay-x.o: debug.h
2468 redisplay-x.o: device.h
2469 redisplay-x.o: dynarr.h
2470 redisplay-x.o: faces.h
2471 redisplay-x.o: frame.h
2472 redisplay-x.o: frameslots.h
2473 redisplay-x.o: glyphs-x.h
2474 redisplay-x.o: glyphs.h
2475 redisplay-x.o: objects-x.h
2476 redisplay-x.o: objects.h
2477 redisplay-x.o: paths.h
2478 redisplay-x.o: redisplay.h
2479 redisplay-x.o: scrollbar.h
2480 redisplay-x.o: specifier.h
2481 redisplay-x.o: sysdep.h
2482 redisplay-x.o: sysproc.h
2483 redisplay-x.o: systime.h
2484 redisplay-x.o: toolbar.h
2485 redisplay-x.o: window.h
2486 redisplay-x.o: xgccache.h
2487 redisplay-x.o: xintrinsic.h
2488 redisplay-x.o: xintrinsicp.h
2489 redisplay-x.o: xmprimitivep.h
2490 redisplay.o: blocktype.h
2491 redisplay.o: buffer.h
2492 redisplay.o: bufslots.h
2493 redisplay.o: commands.h
2494 redisplay.o: config.h
2495 redisplay.o: conslots.h
2496 redisplay.o: console.h
2497 redisplay.o: debug.h
2498 redisplay.o: device.h
2499 redisplay.o: dynarr.h
2500 redisplay.o: extents.h
2501 redisplay.o: faces.h
2502 redisplay.o: frame.h
2503 redisplay.o: frameslots.h
2504 redisplay.o: glyphs.h
2505 redisplay.o: insdel.h
2506 redisplay.o: menubar.h
2507 redisplay.o: objects.h
2508 redisplay.o: process.h
2509 redisplay.o: redisplay.h
2510 redisplay.o: scrollbar.h
2511 redisplay.o: specifier.h
2512 redisplay.o: toolbar.h
2513 redisplay.o: window.h
2514 regex.o: blocktype.h
2515 regex.o: buffer.h
2516 regex.o: bufslots.h
2517 regex.o: chartab.h
2518 regex.o: config.h
2519 regex.o: dynarr.h
2520 regex.o: regex.h
2521 regex.o: syntax.h
2522 scrollbar-x.o: $(LWLIB_SRCDIR)/lwlib.h
2523 scrollbar-x.o: EmacsFrame.h
2524 scrollbar-x.o: EmacsManager.h
2525 scrollbar-x.o: blocktype.h
2526 scrollbar-x.o: config.h
2527 scrollbar-x.o: conslots.h
2528 scrollbar-x.o: console-x.h
2529 scrollbar-x.o: console.h
2530 scrollbar-x.o: device.h
2531 scrollbar-x.o: dynarr.h
2532 scrollbar-x.o: frame.h
2533 scrollbar-x.o: frameslots.h
2534 scrollbar-x.o: glyphs-x.h
2535 scrollbar-x.o: glyphs.h
2536 scrollbar-x.o: gui-x.h
2537 scrollbar-x.o: redisplay.h
2538 scrollbar-x.o: scrollbar-x.h
2539 scrollbar-x.o: scrollbar.h
2540 scrollbar-x.o: specifier.h
2541 scrollbar-x.o: toolbar.h
2542 scrollbar-x.o: window.h
2543 scrollbar-x.o: xintrinsic.h
2544 scrollbar.o: blocktype.h
2545 scrollbar.o: buffer.h
2546 scrollbar.o: bufslots.h
2547 scrollbar.o: commands.h
2548 scrollbar.o: config.h
2549 scrollbar.o: conslots.h
2550 scrollbar.o: console.h
2551 scrollbar.o: device.h
2552 scrollbar.o: dynarr.h
2553 scrollbar.o: frame.h
2554 scrollbar.o: frameslots.h
2555 scrollbar.o: glyphs.h
2556 scrollbar.o: redisplay.h
2557 scrollbar.o: scrollbar.h
2558 scrollbar.o: specifier.h
2559 scrollbar.o: toolbar.h
2560 scrollbar.o: window.h
2561 search.o: blocktype.h
2562 search.o: buffer.h
2563 search.o: bufslots.h
2564 search.o: chartab.h
2565 search.o: commands.h
2566 search.o: config.h
2567 search.o: dynarr.h
2568 search.o: insdel.h
2569 search.o: opaque.h
2570 search.o: regex.h
2571 search.o: syntax.h
2572 sheap.o: sheap-adjust.h
2573 sheap.o: config.h
2574 signal.o: blocktype.h
2575 signal.o: config.h
2576 signal.o: conslots.h
2577 signal.o: console.h
2578 signal.o: device.h
2579 signal.o: dynarr.h
2580 signal.o: events.h
2581 signal.o: frame.h
2582 signal.o: frameslots.h
2583 signal.o: scrollbar.h
2584 signal.o: specifier.h
2585 signal.o: sysdep.h
2586 signal.o: systime.h
2587 signal.o: toolbar.h
2588 sound.o: blocktype.h
2589 sound.o: buffer.h
2590 sound.o: bufslots.h
2591 sound.o: commands.h
2592 sound.o: config.h
2593 sound.o: conslots.h
2594 sound.o: console-x.h
2595 sound.o: console.h
2596 sound.o: device.h
2597 sound.o: dynarr.h
2598 sound.o: redisplay.h
2599 sound.o: sysdep.h
2600 sound.o: xintrinsic.h
2601 specifier.o: blocktype.h
2602 specifier.o: buffer.h
2603 specifier.o: bufslots.h
2604 specifier.o: config.h
2605 specifier.o: conslots.h
2606 specifier.o: console.h
2607 specifier.o: device.h
2608 specifier.o: dynarr.h
2609 specifier.o: frame.h
2610 specifier.o: frameslots.h
2611 specifier.o: opaque.h
2612 specifier.o: redisplay.h
2613 specifier.o: scrollbar.h
2614 specifier.o: specifier.h
2615 specifier.o: toolbar.h
2616 specifier.o: window.h
2617 strftime.o: blocktype.h
2618 strftime.o: config.h
2619 strftime.o: dynarr.h
2620 sunOS-fix.o: config.h
2621 sunplay.o: blocktype.h
2622 sunplay.o: config.h
2623 sunplay.o: dynarr.h
2624 sunplay.o: sysdep.h
2625 sunpro.o: blocktype.h
2626 sunpro.o: config.h
2627 sunpro.o: dynarr.h
2628 symbols.o: blocktype.h
2629 symbols.o: buffer.h
2630 symbols.o: bufslots.h
2631 symbols.o: config.h
2632 symbols.o: conslots.h
2633 symbols.o: console.h
2634 symbols.o: dynarr.h
2635 syntax.o: blocktype.h
2636 syntax.o: buffer.h
2637 syntax.o: bufslots.h
2638 syntax.o: chartab.h
2639 syntax.o: commands.h
2640 syntax.o: config.h
2641 syntax.o: dynarr.h
2642 syntax.o: insdel.h
2643 syntax.o: syntax.h
2644 sysdep.o: blocktype.h
2645 sysdep.o: buffer.h
2646 sysdep.o: bufslots.h
2647 sysdep.o: config.h
2648 sysdep.o: conslots.h
2649 sysdep.o: console-stream.h
2650 sysdep.o: console-x.h
2651 sysdep.o: console.h
2652 sysdep.o: device.h
2653 sysdep.o: dynarr.h
2654 sysdep.o: events.h
2655 sysdep.o: frame.h
2656 sysdep.o: frameslots.h
2657 sysdep.o: process.h
2658 sysdep.o: redisplay.h
2659 sysdep.o: scrollbar.h
2660 sysdep.o: specifier.h
2661 sysdep.o: sysdep.h
2662 sysdep.o: sysdir.h
2663 sysdep.o: sysfile.h
2664 sysdep.o: systime.h
2665 sysdep.o: syswait.h
2666 sysdep.o: toolbar.h
2667 sysdep.o: window.h
2668 sysdep.o: xintrinsic.h
2669 termcap.o: blocktype.h
2670 termcap.o: config.h
2671 termcap.o: conslots.h
2672 termcap.o: console.h
2673 termcap.o: device.h
2674 termcap.o: dynarr.h
2675 terminfo.o: config.h
2676 toolbar-x.o: $(LWLIB_SRCDIR)/lwlib.h
2677 toolbar-x.o: EmacsFrame.h
2678 toolbar-x.o: EmacsFrameP.h
2679 toolbar-x.o: EmacsManager.h
2680 toolbar-x.o: blocktype.h
2681 toolbar-x.o: buffer.h
2682 toolbar-x.o: bufslots.h
2683 toolbar-x.o: config.h
2684 toolbar-x.o: conslots.h
2685 toolbar-x.o: console-x.h
2686 toolbar-x.o: console.h
2687 toolbar-x.o: device.h
2688 toolbar-x.o: dynarr.h
2689 toolbar-x.o: faces.h
2690 toolbar-x.o: frame.h
2691 toolbar-x.o: frameslots.h
2692 toolbar-x.o: glyphs-x.h
2693 toolbar-x.o: glyphs.h
2694 toolbar-x.o: objects-x.h
2695 toolbar-x.o: objects.h
2696 toolbar-x.o: redisplay.h
2697 toolbar-x.o: scrollbar.h
2698 toolbar-x.o: specifier.h
2699 toolbar-x.o: toolbar.h
2700 toolbar-x.o: window.h
2701 toolbar-x.o: xgccache.h
2702 toolbar-x.o: xintrinsic.h
2703 toolbar-x.o: xintrinsicp.h
2704 toolbar-x.o: xmprimitivep.h
2705 toolbar.o: blocktype.h
2706 toolbar.o: buffer.h
2707 toolbar.o: bufslots.h
2708 toolbar.o: config.h
2709 toolbar.o: conslots.h
2710 toolbar.o: console.h
2711 toolbar.o: device.h
2712 toolbar.o: dynarr.h
2713 toolbar.o: frame.h
2714 toolbar.o: frameslots.h
2715 toolbar.o: glyphs.h
2716 toolbar.o: redisplay.h
2717 toolbar.o: scrollbar.h
2718 toolbar.o: specifier.h
2719 toolbar.o: toolbar.h
2720 toolbar.o: window.h
2721 tooltalk.o: blocktype.h
2722 tooltalk.o: buffer.h
2723 tooltalk.o: bufslots.h
2724 tooltalk.o: config.h
2725 tooltalk.o: dynarr.h
2726 tooltalk.o: elhash.h
2727 tooltalk.o: process.h
2728 tooltalk.o: tooltalk.h
2729 tparam.o: config.h
2730 undo.o: blocktype.h
2731 undo.o: buffer.h
2732 undo.o: bufslots.h
2733 undo.o: config.h
2734 undo.o: dynarr.h
2735 undo.o: extents.h
2736 vm-limit.o: blocktype.h
2737 vm-limit.o: config.h
2738 vm-limit.o: dynarr.h
2739 vm-limit.o: mem-limits.h
2740 widget.o: config.h
2741 widget.o: buffer.h
2742 widget.o: insdel.h
2743 window.o: blocktype.h
2744 window.o: buffer.h
2745 window.o: bufslots.h
2746 window.o: commands.h
2747 window.o: config.h
2748 window.o: conslots.h
2749 window.o: console.h
2750 window.o: device.h
2751 window.o: dynarr.h
2752 window.o: faces.h
2753 window.o: frame.h
2754 window.o: frameslots.h
2755 window.o: glyphs.h
2756 window.o: objects.h
2757 window.o: redisplay.h
2758 window.o: scrollbar.h
2759 window.o: specifier.h
2760 window.o: toolbar.h
2761 window.o: window.h
2762 xgccache.o: blocktype.h
2763 xgccache.o: config.h
2764 xgccache.o: dynarr.h
2765 xgccache.o: hash.h
2766 xgccache.o: xgccache.h
2767 xmu.o: config.h
2768 xselect.o: blocktype.h
2769 xselect.o: buffer.h
2770 xselect.o: bufslots.h
2771 xselect.o: config.h
2772 xselect.o: conslots.h
2773 xselect.o: console-x.h
2774 xselect.o: console.h
2775 xselect.o: device.h
2776 xselect.o: dynarr.h
2777 xselect.o: frame.h
2778 xselect.o: frameslots.h
2779 xselect.o: objects-x.h
2780 xselect.o: objects.h
2781 xselect.o: opaque.h
2782 xselect.o: scrollbar.h
2783 xselect.o: specifier.h
2784 xselect.o: systime.h
2785 xselect.o: toolbar.h
2786 xselect.o: xintrinsic.h