aboutsummaryrefslogtreecommitdiffstats
path: root/leim/Makefile.in
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2012-04-09 16:37:08 -0400
committerGlenn Morris <[email protected]>2012-04-09 16:37:08 -0400
commit935396c0f0f97df05f0e41af517abed22655fd20 (patch)
tree4cf7146c001b2f87f40531a2aa66cb8d7264558c /leim/Makefile.in
parente98e405ed50a82bf1223b47f7ef4be324e4cd66b (diff)
Rename leim/Makefile's BUILT_EMACS to EMACS
* leim/Makefile.in (EMACS): Rename from BUILT_EMACS. (RUN_EMACS, compile-main): Update for this change. * src/Makefile.in ($(leimdir)/leim-list.el): Pass EMACS rather than BUILT_EMACS.
Diffstat (limited to 'leim/Makefile.in')
-rw-r--r--leim/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in
index bbae652b3e..21561a357d 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -41,13 +41,13 @@ GZIP_PROG = @GZIP_PROG@
# Which Emacs to use to convert TIT files to Emacs Lisp files,
# byte-compile Emacs Lisp files, and generate the file leim-list.el.
-BUILT_EMACS = ../src/emacs
+EMACS = ../src/emacs
buildlisppath=${srcdir}/../lisp
# How to run Emacs.
RUN_EMACS = EMACSLOADPATH=$(buildlisppath) LC_ALL=C \
- ${BUILT_EMACS} -batch --no-site-file --no-site-lisp
+ ${EMACS} -batch --no-site-file --no-site-lisp
# Subdirectories to be made if ${srcdir} is different from the current
# directory.
@@ -171,7 +171,7 @@ compile-main: ${TIT_MISC}
echo "$${el}c"; \
done | xargs echo) | \
while read chunk; do \
- $(MAKE) $(MFLAGS) compile-targets BUILT_EMACS="$(BUILT_EMACS)" TARGETS="$$chunk"; \
+ $(MAKE) $(MFLAGS) compile-targets EMACS="$(EMACS)" TARGETS="$$chunk"; \
done
MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done