diff options
author | Andrew Innes <andrewi@gnu.org> | 2001-01-06 21:37:21 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2001-01-06 21:37:21 +0000 |
commit | b9cd525de0ed933839d0ce83538d4840eba6aee1 (patch) | |
tree | c07ddc59402c62940141cd5f93b851bfc3ac889c /leim | |
parent | a4c23bd35dafc7f5508d93a3eb0668346f2b65b0 (diff) | |
download | emacs-b9cd525de0ed933839d0ce83538d4840eba6aee1.tar.gz |
($(TIT)): Map .elc to .el.
(buildlisppath): Make path relative to $(MAKEDIR).
Diffstat (limited to 'leim')
-rw-r--r-- | leim/makefile.nt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/leim/makefile.nt b/leim/makefile.nt index 39195ff1e55..546e00be221 100644 --- a/leim/makefile.nt +++ b/leim/makefile.nt @@ -36,7 +36,7 @@ dot = . # byte-compile Emacs Lisp files, and generate the file leim-list.el. BUILT_EMACS = $(dot)$(dot)\src\$(BLD)\emacs.exe -buildlisppath=$(dot)$(dot)/lisp +buildlisppath=$(MAKEDIR:\=/)/$(dot)$(dot)/lisp # How to run Emacs. RUN_EMACS = $(BUILT_EMACS) -batch --no-init-file --no-site-file --multibyte @@ -144,7 +144,7 @@ $(TIT): $(SUBDIRS) $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \ --eval "(batch-titdic-convert t)" -dir quail $(srcdir)/CXTERM-DIC $(RUN_EMACS) -l $(buildlisppath)/international/quail \ - -f batch-byte-compile $(TIT) + -f batch-byte-compile $(TIT:.elc=.el) .SUFFIXES: .elc .el |