aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2009-09-26 19:49:17 +0000
committerGlenn Morris2009-09-26 19:49:17 +0000
commit00e2f46c20150c94d55513c717499926980fdd3e (patch)
treef72beb3361817e90ebf110d7070e60acb68ee795 /src
parentb7d552d615d3bab75a7d03c97ba81323d3630484 (diff)
downloademacs-00e2f46c20150c94d55513c717499926980fdd3e.tar.gz
emacs-00e2f46c20150c94d55513c717499926980fdd3e.zip
Comments.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in28
1 files changed, 13 insertions, 15 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 493e9b21a4c..504c31b3c2f 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -674,17 +674,17 @@ otherobj= $(termcapobj) lastfile.o $(mallocobj) $(widgetobj) $(LIBOBJS)
674#define NS_SUPPORT 674#define NS_SUPPORT
675#endif 675#endif
676 676
677/* List of Lisp files loaded into the dumped Emacs. It is arranged 677/* This is the platform-specific list of Lisp files loaded into the
678 like this because it is easier to generate it semi-mechanically from 678 dumped Emacs. It is arranged like this because it is easier to generate
679 loadup.el this way. 679 it semi-mechanically from loadup.el this way.
680 680
681 Note that this list should not include lisp files which might not 681 Note that this list should not include lisp files which might not
682 be present, like site-load.el and site-init.el; this makefile 682 be present, like site-load.el and site-init.el; this makefile
683 expects them all to be either present or buildable. 683 expects them all to be either present or buildable.
684 684
685 Files which are loaded unconditionally should be in shortlisp as well. 685 Files which are loaded unconditionally (i.e., on all platforms) should
686 Files included conditionally here should be included (unconditionally) 686 also be in shortlisp. Files which are loaded conditionally (i.e., only
687 in SOME_MACHINE_LISP. */ 687 on some platforms) should instead be in SOME_MACHINE_LISP. */
688 688
689/* Place loaddefs.el first, so it gets generated first, since it is on 689/* Place loaddefs.el first, so it gets generated first, since it is on
690 the critical path (relevant in parallel compilations). */ 690 the critical path (relevant in parallel compilations). */
@@ -779,10 +779,11 @@ lisp= \
779 ${lispsource}window.elc \ 779 ${lispsource}window.elc \
780 ${lispsource}version.el 780 ${lispsource}version.el
781 781
782/* These are relative file names for the Lisp files 782/* List of relative names for those files from $lisp that are loaded
783 that are loaded unconditionally. This is used in make-docfile. 783 unconditionally (i.e. on all platforms). Files from $lisp that
784 It need not contain the files that are loaded conditionally 784 are only loaded on some platforms should instead be placed in
785 because SOME_MACHINE_LISP has those. */ 785 SOME_MACHINE_LISP. The only reason this variable exists is to prevent
786 the make-docfile command-line getting too long for some systems. */
786shortlisp= \ 787shortlisp= \
787 ../lisp/loaddefs.el \ 788 ../lisp/loaddefs.el \
788 ../lisp/abbrev.elc \ 789 ../lisp/abbrev.elc \
@@ -866,11 +867,8 @@ shortlisp= \
866 ../lisp/window.elc \ 867 ../lisp/window.elc \
867 ../lisp/version.el 868 ../lisp/version.el
868 869
869/* Lisp files that may or may not be used. 870/* Like $shortlisp, but includes only those files from $lisp that are loaded
870 We must unconditionally put them in the DOC file. 871 conditionally (i.e., only on some platforms). */
871 We use ../lisp/ to start the file names
872 to reduce the size of the argument list for make-docfile
873 for the sake of systems which can''t handle large ones. */
874SOME_MACHINE_LISP = ../lisp/mouse.elc \ 872SOME_MACHINE_LISP = ../lisp/mouse.elc \
875 ../lisp/select.elc ../lisp/scroll-bar.elc \ 873 ../lisp/select.elc ../lisp/scroll-bar.elc \
876 ../lisp/ls-lisp.elc ../lisp/dos-fns.elc \ 874 ../lisp/ls-lisp.elc ../lisp/dos-fns.elc \