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: Dave Love
Subject: [Emacs-diffs] Changes to emacs/lisp/Makefile.in
Date: Thu, 27 Jun 2002 15:50:07 -0400

Index: emacs/lisp/Makefile.in
diff -c emacs/lisp/Makefile.in:1.33 emacs/lisp/Makefile.in:1.34
*** emacs/lisp/Makefile.in:1.33 Fri Mar 22 18:36:15 2002
--- emacs/lisp/Makefile.in      Wed Mar 27 09:44:41 2002
***************
*** 222,229 ****
        els=`echo $$elpat $(DONTCOMPILE) $(DONTCOMPILE) $(COMPILE_FIRST) | \
                tr '     ' '\012\012' | sort | uniq -u`; \
        for el in $(COMPILE_FIRST) $$els; do \
!         echo Compiling $$el; \
!         $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \
        done
  
  # Compile all Lisp files, except those from DONTCOMPILE.  This
--- 222,232 ----
        els=`echo $$elpat $(DONTCOMPILE) $(DONTCOMPILE) $(COMPILE_FIRST) | \
                tr '     ' '\012\012' | sort | uniq -u`; \
        for el in $(COMPILE_FIRST) $$els; do \
!         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
***************
*** 236,243 ****
        els=`echo $$elpat $(DONTCOMPILE) $(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: 
--- 239,249 ----
        els=`echo $$elpat $(DONTCOMPILE) $(DONTCOMPILE) $(COMPILE_FIRST) | \
                tr '     ' '\012\012' | sort | uniq -u`; \
        for el in $(COMPILE_FIRST) $$els; do \
!         if test -f $$el; \
!         then \
!           echo Compiling $$el; \
!           $(emacs) -f batch-byte-compile $$el || exit 1; \
!         fi \
        done
  
  compile-calc: 



reply via email to

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