emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master c2774f3: Say "ELC foo.elc" instead of "GEN foo.elc"


From: Paul Eggert
Subject: [Emacs-diffs] master c2774f3: Say "ELC foo.elc" instead of "GEN foo.elc"
Date: Mon, 12 Jan 2015 01:42:47 +0000

branch: master
commit c2774f3733a7bdd58616b42da172d1b32932dd03
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Say "ELC foo.elc" instead of "GEN foo.elc"
    
    * admin/unidata/Makefile.in, lisp/Makefile.in (AM_V_ELC)
    (am__v_ELC_, am__v_ELC_0, am__v_ELC_1): New macros.
    * admin/unidata/Makefile.in (%.elc):
    * lisp/Makefile.in ($(THEFILE)c, .el.elc): Use them.
---
 admin/ChangeLog           |    7 +++++++
 admin/unidata/Makefile.in |    7 ++++++-
 lisp/ChangeLog            |    7 +++++++
 lisp/Makefile.in          |    9 +++++++--
 4 files changed, 27 insertions(+), 3 deletions(-)

diff --git a/admin/ChangeLog b/admin/ChangeLog
index dc029a0..2b04281 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,10 @@
+2015-01-12  Paul Eggert  <address@hidden>
+
+       Say "ELC foo.elc" instead of "GEN foo.elc"
+       * unidata/Makefile.in (AM_V_ELC, am__v_ELC_, am__v_ELC_0)
+       (am__v_ELC_1): New macros.
+       (%.elc): Use them.
+
 2015-01-08  Glenn Morris  <address@hidden>
 
        * authors.el (authors-aliases): Add an entry to ignore.
diff --git a/admin/unidata/Makefile.in b/admin/unidata/Makefile.in
index 777d127..1396f09 100644
--- a/admin/unidata/Makefile.in
+++ b/admin/unidata/Makefile.in
@@ -34,6 +34,11 @@ emacs = "${EMACS}" -batch --no-site-file --no-site-lisp
 # 'make' verbosity.
 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 
+AM_V_ELC = $(address@hidden@)
+am__v_ELC_ = $(address@hidden@)
+am__v_ELC_0 = @echo "  ELC     " $@;
+am__v_ELC_1 =
+
 AM_V_GEN = $(address@hidden@)
 am__v_GEN_ = $(address@hidden@)
 am__v_GEN_0 = @echo "  GEN     " $@;
@@ -58,7 +63,7 @@ ${top_srcdir}/src/macuvs.h: ${srcdir}/uvs.el 
${srcdir}/IVD_Sequences.txt | \
          > $@
 
 %.elc: %.el
-       $(AM_V_GEN)${emacs} -f batch-byte-compile $<
+       $(AM_V_ELC)${emacs} -f batch-byte-compile $<
 
 unidata.txt: ${srcdir}/UnicodeData.txt
        $(AM_V_GEN)sed -e 's/\([^;]*\);\(.*\)/(#x\1 "\2")/' -e 's/;/" "/g' \
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 598f9c6..7a20822 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
+2015-01-12  Paul Eggert  <address@hidden>
+
+       Say "ELC foo.elc" instead of "GEN foo.elc"
+       * Makefile.in (AM_V_ELC, am__v_ELC_, am__v_ELC_0, am__v_ELC_1):
+       New macros.
+       ($(THEFILE)c, .el.elc): Use them.
+
 2015-01-11  Michael Albinus  <address@hidden>
 
        * files.el (directory-files-recursively): Do not include
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 565ca77..bb61cab 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -31,6 +31,11 @@ XARGS_LIMIT = @XARGS_LIMIT@
 # 'make' verbosity.
 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 
+AM_V_ELC = $(address@hidden@)
+am__v_ELC_ = $(address@hidden@)
+am__v_ELC_0 = @echo "  ELC     " $@;
+am__v_ELC_1 =
+
 AM_V_GEN = $(address@hidden@)
 am__v_GEN_ = $(address@hidden@)
 am__v_GEN_0 = @echo "  GEN     " $@;
@@ -260,7 +265,7 @@ TAGS: $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) 
$(lisptagsfiles4)
 THEFILE = no-such-file
 .PHONY: $(THEFILE)c
 $(THEFILE)c:
-       $(AM_V_GEN)$(emacs) $(BYTE_COMPILE_FLAGS) \
+       $(AM_V_ELC)$(emacs) $(BYTE_COMPILE_FLAGS) \
                -l bytecomp -f byte-compile-refresh-preloaded \
                -f batch-byte-compile $(THEFILE)
 
@@ -276,7 +281,7 @@ $(THEFILE)c:
 # An old-fashioned suffix rule, which, according to the GNU Make manual,
 # cannot have prerequisites.
 .el.elc:
-       $(AM_V_GEN)$(emacs) $(BYTE_COMPILE_FLAGS) -f batch-byte-compile $<
+       $(AM_V_ELC)$(emacs) $(BYTE_COMPILE_FLAGS) -f batch-byte-compile $<
 
 .PHONY: compile-first compile-main compile compile-always
 



reply via email to

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