2004-06-13 20:20:40 +00:00
|
|
|
# Makefile for the Vim tutor.
|
|
|
|
#
|
|
|
|
# The Japanese tutor exists in three encodings. Use the UTF-8 version as the
|
|
|
|
# original and create the others with conversion.
|
2006-09-02 12:50:52 +00:00
|
|
|
#
|
|
|
|
# Similarly for Russian and Korean
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2006-09-02 12:50:52 +00:00
|
|
|
all: tutor.ja.sjis tutor.ja.euc \
|
|
|
|
tutor.ko.euc \
|
2006-09-10 11:24:31 +00:00
|
|
|
tutor.ru tutor.ru.cp1251 \
|
2007-05-06 13:38:48 +00:00
|
|
|
tutor.gr tutor.gr.cp737 \
|
|
|
|
tutor.hu
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
tutor.ja.sjis: tutor.ja.utf-8
|
|
|
|
nkf -WXs tutor.ja.utf-8 > tutor.ja.sjis
|
|
|
|
|
|
|
|
tutor.ja.euc: tutor.ja.utf-8
|
|
|
|
nkf -WXe tutor.ja.utf-8 > tutor.ja.euc
|
|
|
|
|
|
|
|
tutor.ko.euc: tutor.ko.utf-8
|
|
|
|
iconv -f UTF-8 -t EUC-KR tutor.ko.utf-8 > tutor.ko.euc
|
2006-09-02 12:50:52 +00:00
|
|
|
|
|
|
|
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
|
2006-09-10 11:24:31 +00:00
|
|
|
|
|
|
|
tutor.gr: tutor.gr.utf-8
|
|
|
|
iconv -f UTF-8 -t ISO-8859-7 tutor.gr.utf-8 > tutor.gr
|
|
|
|
|
|
|
|
tutor.gr.cp737: tutor.gr.utf-8
|
|
|
|
iconv -f UTF-8 -t cp737 tutor.gr.utf-8 > tutor.gr.cp737
|
2007-05-06 13:38:48 +00:00
|
|
|
|
|
|
|
tutor.hu: tutor.hu.utf-8
|
|
|
|
iconv -f UTF-8 -t ISO-8859-2 tutor.hu.utf-8 > tutor.hu
|