]> code.delx.au - gnu-emacs/blobdiff - lisp/Makefile.in
*** empty log message ***
[gnu-emacs] / lisp / Makefile.in
index 345cd7f86415a45172ef693e53a6f93234f1b229..d1f5b43b762a549352a202365027000eb779bd2a 100644 (file)
@@ -42,6 +42,9 @@ ETAGS = ../lib-src/etags
 # Files which should not be compiled.  If you change the name `DONTCOMPILE'
 # to something different, you'll have to change make-dist as well, and
 # modify the lists in $lisp and $shortlisp on src/Makefile.in.
+#
+# - emacs-lisp/cl-specs.el:  only contains `def-edebug-spec's so there's
+#   no point compiling it, although it doesn't hurt.
 
 DONTCOMPILE = \
        $(lisp)/cus-load.el \
@@ -56,6 +59,8 @@ DONTCOMPILE = \
        $(lisp)/international/mule-conf.el \
        $(lisp)/language/czech.el \
        $(lisp)/language/devanagari.el \
+       $(lisp)/language/malayalam.el \
+       $(lisp)/language/tamil.el \
        $(lisp)/language/english.el \
        $(lisp)/language/greek.el \
        $(lisp)/language/hebrew.el \
@@ -127,7 +132,7 @@ setwins=subdirs=`find $$wd -type d -print`; \
           esac; \
         done
 
-finder_setwins=subdirs=`find $$wd -type d -print`; \
+setwins_almost=subdirs=`find $$wd -type d -print`; \
        for file in $$subdirs; do \
           case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term ) ;; \
                *) wins="$$wins $$file" ;; \
@@ -136,21 +141,19 @@ finder_setwins=subdirs=`find $$wd -type d -print`; \
 
 doit:
 
-cus-load.el:
+$(lisp)/cus-load.el:
        touch $@
-custom-deps: cus-load.el doit
-       wd=$(lisp); $(setwins); \
+custom-deps: $(lisp)/cus-load.el doit
+       wd=$(lisp); $(setwins_almost); \
        echo Directories: $$wins; \
-       LC_ALL=C $(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins
+       LC_ALL=C $(EMACS) $(EMACSOPT) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins
 
-finder-inf.el:
-       echo "(provide 'finder-inf)" >> $@
-finder-data: finder-inf.el doit
-       wd=$(lisp); $(finder_setwins); \
+finder-data: doit
+       wd=$(lisp); $(setwins_almost); \
        echo Directories: $$wins; \
-       LC_ALL=C $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins
+       LC_ALL=C $(EMACS) $(EMACSOPT) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins
 
-loaddefs.el:
+$(lisp)/loaddefs.el:
        echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@
        echo ";;" >> $@; echo ";;; Code:" >> $@
        echo "\f" >> $@
@@ -160,12 +163,12 @@ loaddefs.el:
        echo ";;; no-update-autoloads: t" >> $@
        echo ";;; End:" >> $@
        echo ";;; loaddefs.el ends here" >> $@
-autoloads: loaddefs.el doit
+autoloads: $(lisp)/loaddefs.el doit
        wd=$(lisp); $(setwins); \
        echo Directories: $$wins; \
        LC_ALL=C $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
 
-subdirs.el:
+$(lisp)/subdirs.el:
        $(MAKE) $(MFLAGS) update-subdirs
 update-subdirs: doit
        wd=$(lisp); $(setwins); \
@@ -190,7 +193,7 @@ TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
 
 .SUFFIXES: .elc .el
 
-.el.elc: subdirs.el
+.el.elc: $(lisp)/subdirs.el
        -$(emacs) -f batch-byte-compile $<
 
 $(DONTCOMPILE:.el=.elc):
@@ -207,36 +210,48 @@ $(DONTCOMPILE:.el=.elc):
 # current directory and its subdirectories, to make sure require's and
 # load's in the files being compiled find the right files.
 
-compile: subdirs.el doit
+# NOTE about DONTCOMPILE: in the `echo <foo> | sort | uniq -u' we pass
+# $(DONTCOMPILE) twice.  This is in case one of the files in DONTCOMPILE
+# is absent.  -stef
+
+compile: $(lisp)/subdirs.el doit
        find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \
        wd=$(lisp); $(setwins); \
        elpat=`echo $$wins | tr '       ' '\012\012' | \
                sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
-       els=`echo $$elpat $(DONTCOMPILE) $(COMPILE_FIRST) | \
+       els=`echo $$elpat $(DONTCOMPILE) $(DONTCOMPILE) $(COMPILE_FIRST) | \
                tr '     ' '\012\012' | sort | uniq -u`; \
        for el in $(COMPILE_FIRST) $$els; do \
-         echo Compiling $$el; \
-         LC_ALL=C $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \
+         if test -f $$el; \
+         then \
+           echo Compiling $$el; \
+           $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \
+         fi \
        done
 
 # Compile all Lisp files, except those from DONTCOMPILE.  This
 # is like `compile' but compiles files unconditionally.
-compile-always: subdirs.el doit
-       find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \
+compile-always: $(lisp)/subdirs.el doit
+       # `|| true' prevents old Bash versions from getting confused
+       # by an error.
+       find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
        wd=$(lisp); $(setwins); \
        elpat=`echo $$wins | tr '       ' '\012\012' | \
                sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
-       els=`echo $$elpat $(DONTCOMPILE) $(COMPILE_FIRST) | \
+       els=`echo $$elpat $(DONTCOMPILE) $(DONTCOMPILE) $(COMPILE_FIRST) | \
                tr '     ' '\012\012' | sort | uniq -u`; \
        for el in $(COMPILE_FIRST) $$els; do \
-         echo Compiling $$el; \
-         LC_ALL=C $(emacs) -f batch-byte-compile $$el || exit 1; \
+         if test -f $$el; \
+         then \
+           echo Compiling $$el; \
+           $(emacs) -f batch-byte-compile $$el || exit 1; \
+         fi \
        done
 
-compile-calc: 
-       for el in $(find $(lisp)/calc -name '*.el'); do \
+compile-calc:
+       for el in `find $(lisp)/calc -name '*.el'`; do \
          echo Compiling $$el; \
-         LC_ALL=C $(emacs) -f batch-byte-compile $$el || exit 1; \
+         $(emacs) -f batch-byte-compile $$el || exit 1; \
        done
 
 # Backup compiled Lisp files in elc.tar.gz.  If that file already
@@ -264,12 +279,17 @@ recompile: doit
 # bootstrap-emacs will be built from sources only.
 
 bootstrap-clean:
-       if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi
-       -rm -f $(lisp)/*.elc $(lisp)/*/*.elc
+       if test -x $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi
+       cd $(lisp); rm -f *.elc */*.elc
 
 # Generate/update files for the bootstrap process.
 
-bootstrap: autoloads compile-always custom-deps
+bootstrap: update-subdirs autoloads compile
+
+# Generate/update files after the bootstrap process.
+# custom-deps needs `preloaded-file-list'.
+
+bootstrap-after: finder-data custom-deps
 
 distclean:
        -rm -f ./Makefile