emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/Makefile.in


From: Colin Walters
Subject: [Emacs-diffs] Changes to emacs/lisp/Makefile.in
Date: Fri, 23 Nov 2001 12:27:29 -0500

Index: emacs/lisp/Makefile.in
diff -u emacs/lisp/Makefile.in:1.24 emacs/lisp/Makefile.in:1.25
--- emacs/lisp/Makefile.in:1.24 Sat Nov 10 08:55:22 2001
+++ emacs/lisp/Makefile.in      Fri Nov 23 12:27:28 2001
@@ -114,14 +114,14 @@
 
 setwins=subdirs=`find $$wd -type d -print`; \
        for file in $$subdirs; do \
-          case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */calc ) ;; \
+          case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \
                *) wins="$$wins $$file" ;; \
           esac; \
         done
 
 finder_setwins=subdirs=`find $$wd -type d -print`; \
        for file in $$subdirs; do \
-          case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | 
*/term | */calc ) ;; \
+          case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | 
*/term ) ;; \
                *) wins="$$wins $$file" ;; \
           esac; \
         done
@@ -205,6 +205,12 @@
        els=`echo $$elpat $(DONTCOMPILE) $(COMPILE_FIRST) | \
                tr '     ' '\012\012' | sort | uniq -u`; \
        for el in $(COMPILE_FIRST) $$els; do \
+         echo Compiling $$el; \
+         $(emacs) -f batch-byte-compile $$el || exit 1; \
+       done
+
+compile-calc: 
+       for el in $(find $(lisp)/calc -name '*.el'); do \
          echo Compiling $$el; \
          $(emacs) -f batch-byte-compile $$el || exit 1; \
        done



reply via email to

[Prev in Thread] Current Thread [Next in Thread]