summaryrefslogtreecommitdiffstats
path: root/runtime/tutor/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-09-02 12:50:52 +0000
committerBram Moolenaar <Bram@vim.org>2006-09-02 12:50:52 +0000
commitd9380f5c6d726c90a64697070f57b132ad9cba57 (patch)
tree915b04a65912c72d059b452b71dfb835f8051fab /runtime/tutor/Makefile
parent42dd2a16bf0bf0886ff628c3899c903427f697c5 (diff)
updated for version 7.0-079v7.0.079
Diffstat (limited to 'runtime/tutor/Makefile')
-rw-r--r--runtime/tutor/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/runtime/tutor/Makefile b/runtime/tutor/Makefile
index 05a59615a0..0562a7d1cf 100644
--- a/runtime/tutor/Makefile
+++ b/runtime/tutor/Makefile
@@ -2,8 +2,12 @@
#
# The Japanese tutor exists in three encodings. Use the UTF-8 version as the
# original and create the others with conversion.
+#
+# Similarly for Russian and Korean
-all: tutor.ja.sjis tutor.ja.euc tutor.ko.euc
+all: tutor.ja.sjis tutor.ja.euc \
+ tutor.ko.euc \
+ tutor.ru tutor.ru.cp1251
tutor.ja.sjis: tutor.ja.utf-8
nkf -WXs tutor.ja.utf-8 > tutor.ja.sjis
@@ -13,3 +17,9 @@ tutor.ja.euc: tutor.ja.utf-8
tutor.ko.euc: tutor.ko.utf-8
iconv -f UTF-8 -t EUC-KR tutor.ko.utf-8 > tutor.ko.euc
+
+tutor.ru: tutor.ru.utf-8
+ iconv -f UTF-8 -t KOI8-R tutor.ru.utf-8 > tutor.ru
+
+tutor.ru.cp1251: tutor.ru.utf-8
+ iconv -f UTF-8 -t cp1251 tutor.ru.utf-8 > tutor.ru.cp1251