summaryrefslogtreecommitdiff
path: root/runtime/tutor/Makefile
diff options
context:
space:
mode:
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 05a59615a..0562a7d1c 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