MS-Windows followup to automation of ja-dic.el in 2013-03-18T04:30:20Z!eggert@cs.ucla.edu.

leim/makefile.w32-in ($(srcdir)/ja-dic/ja-dic.el): New target.

Fixes: debbugs:13984
This commit is contained in:
Eli Zaretskii 2013-03-18 20:56:27 +02:00
parent a22b4ca140
commit 2b9c0f44e4
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2013-03-18 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in ($(srcdir)/ja-dic/ja-dic.el): New target.
2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
Automate the build of ja-dic.el (Bug#13984).

View file

@ -189,6 +189,13 @@ $(MISC_DIC):
$(ARGQUOTE)$(buildlisppath)/international/quail$(ARGQUOTE) \
-f batch-byte-compile $(MISC_DIC:.elc=.el)
# Rule to generate ja-dic/ja-dic.el from SKK-DIC/SKK-JISYO.L.
$(srcdir)/ja-dic/ja-dic.el: $(srcdir)/SKK-DIC/SKK-JISYO.L
- mkdir ja-dic
$(RUN_EMACS) -l \
$(ARGQUOTE)$(buildlisppath)/international/ja-dic-cnv$(ARGQUOTE) \
-f batch-skkdic-convert -dir ja-dic $(srcdir)/SKK-DIC/SKK-JISYO.L
#
# WARNING: Do NOT split the parts inside $(ARGQUOTE)s into multiple lines as
# this can break with GNU Make 3.81 and later if sh.exe is used.