diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-01-11 17:41:57 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-01-11 17:42:43 -0800 |
commit | c2774f3733a7bdd58616b42da172d1b32932dd03 (patch) | |
tree | d8eb50416e7acd59f6662508f28e18705c3b068d /lisp/Makefile.in | |
parent | 23ffeb9015ca3669995b9a5d47cfc09b7643d9b9 (diff) | |
download | emacs-c2774f3733a7bdd58616b42da172d1b32932dd03.tar.gz |
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.
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r-- | lisp/Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 565ca77de3b..bb61cab8875 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 = $(am__v_ELC_@AM_V@) +am__v_ELC_ = $(am__v_ELC_@AM_DEFAULT_V@) +am__v_ELC_0 = @echo " ELC " $@; +am__v_ELC_1 = + AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) 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 |