diff options
| author | Andrew Innes | 2001-04-18 14:09:29 +0000 |
|---|---|---|
| committer | Andrew Innes | 2001-04-18 14:09:29 +0000 |
| commit | 9cbff816d5b7a78811ad9b5191fb2782a5ec0201 (patch) | |
| tree | 7bc8ba9f3626ff245a107d4b6da95836ffeeb525 | |
| parent | 039f725c72a7976d60c0d962b7c4667ef664f4d0 (diff) | |
| download | emacs-9cbff816d5b7a78811ad9b5191fb2782a5ec0201.tar.gz emacs-9cbff816d5b7a78811ad9b5191fb2782a5ec0201.zip | |
(EMACSLOADPATH): Define.
($(TIT)):
($(MISC_DIC)):
(.el.elc):
(leim-list.el): Remove stuff to set EMACSLOADPATH.
| -rw-r--r-- | leim/makefile.w32-in | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/leim/makefile.w32-in b/leim/makefile.w32-in index e7ea3aa613b..56a3be6f89f 100644 --- a/leim/makefile.w32-in +++ b/leim/makefile.w32-in | |||
| @@ -36,6 +36,9 @@ buildlisppath=$(CURDIR)/$(dot)$(dot)/lisp | |||
| 36 | # How to run Emacs. | 36 | # How to run Emacs. |
| 37 | RUN_EMACS = "$(BUILT_EMACS)" -batch --no-init-file --no-site-file --multibyte | 37 | RUN_EMACS = "$(BUILT_EMACS)" -batch --no-init-file --no-site-file --multibyte |
| 38 | 38 | ||
| 39 | # Set EMACSLOADPATH correctly (already defined in environment). | ||
| 40 | EMACSLOADPATH=$(buildlisppath) | ||
| 41 | |||
| 39 | # Subdirectories to be made if $(srcdir) is different from the current | 42 | # Subdirectories to be made if $(srcdir) is different from the current |
| 40 | # directory. | 43 | # directory. |
| 41 | SUBDIRS=quail | 44 | SUBDIRS=quail |
| @@ -148,30 +151,26 @@ $(SUBDIRS): | |||
| 148 | 151 | ||
| 149 | # Rule to generate quail/*.el from CXTERM-DIC/*.tit. | 152 | # Rule to generate quail/*.el from CXTERM-DIC/*.tit. |
| 150 | $(TIT): $(SUBDIRS) | 153 | $(TIT): $(SUBDIRS) |
| 151 | set EMACSLOADPATH=$(buildlisppath) | 154 | $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \ |
| 152 | $(SETLOADPATH) $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \ | ||
| 153 | --eval $(ARGQUOTE)(batch-titdic-convert t)$(ARGQUOTE) \ | 155 | --eval $(ARGQUOTE)(batch-titdic-convert t)$(ARGQUOTE) \ |
| 154 | -dir quail $(srcdir)/CXTERM-DIC | 156 | -dir quail $(srcdir)/CXTERM-DIC |
| 155 | $(SETLOADPATH) $(RUN_EMACS) -l $(buildlisppath)/international/quail \ | 157 | $(RUN_EMACS) -l $(buildlisppath)/international/quail \ |
| 156 | -f batch-byte-compile $(TIT:.elc=.el) | 158 | -f batch-byte-compile $(TIT:.elc=.el) |
| 157 | 159 | ||
| 158 | # Rule to generate quail/*.el from MISC_DIC/*.tit. | 160 | # Rule to generate quail/*.el from MISC_DIC/*.tit. |
| 159 | $(MISC_DIC): $(SUBDIRS) | 161 | $(MISC_DIC): $(SUBDIRS) |
| 160 | set EMACSLOADPATH=$(buildlisppath) | 162 | $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \ |
| 161 | $(SETLOADPATH) $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \ | ||
| 162 | -f batch-miscdic-convert -dir quail $(srcdir)/MISC-DIC | 163 | -f batch-miscdic-convert -dir quail $(srcdir)/MISC-DIC |
| 163 | $(SETLOADPATH) $(RUN_EMACS) -l $(buildlisppath)/international/quail \ | 164 | $(RUN_EMACS) -l $(buildlisppath)/international/quail \ |
| 164 | -f batch-byte-compile $(MISC_DIC:.elc=.el) | 165 | -f batch-byte-compile $(MISC_DIC:.elc=.el) |
| 165 | 166 | ||
| 166 | .SUFFIXES: .elc .el | 167 | .SUFFIXES: .elc .el |
| 167 | 168 | ||
| 168 | .el.elc: | 169 | .el.elc: |
| 169 | set EMACSLOADPATH=$(buildlisppath) | 170 | $(RUN_EMACS) -f batch-byte-compile $< |
| 170 | $(SETLOADPATH) $(RUN_EMACS) -f batch-byte-compile $< | ||
| 171 | 171 | ||
| 172 | leim-list.el: $(SUBDIRS) $(WORLD) | 172 | leim-list.el: $(SUBDIRS) $(WORLD) |
| 173 | set EMACSLOADPATH=$(buildlisppath) | 173 | $(RUN_EMACS) -l $(buildlisppath)/international/quail \ |
| 174 | $(SETLOADPATH) $(RUN_EMACS) -l $(buildlisppath)/international/quail \ | ||
| 175 | --eval $(ARGQUOTE)(update-leim-list-file $(DQUOTE).$(DQUOTE))$(ARGQUOTE) | 174 | --eval $(ARGQUOTE)(update-leim-list-file $(DQUOTE).$(DQUOTE))$(ARGQUOTE) |
| 176 | 175 | ||
| 177 | install: all | 176 | install: all |