1# Makefile for the Vim tutor. 2# 3# The Japanese tutor exists in three encodings. Use the UTF-8 version as the 4# original and create the others with conversion. 5# 6# Similarly for Russian and Korean 7 8all: tutor.ja.sjis tutor.ja.euc \ 9 tutor.ko.euc \ 10 tutor.ru tutor.ru.cp1251 \ 11 tutor.gr tutor.gr.cp737 12 13tutor.ja.sjis: tutor.ja.utf-8 14 nkf -WXs tutor.ja.utf-8 > tutor.ja.sjis 15 16tutor.ja.euc: tutor.ja.utf-8 17 nkf -WXe tutor.ja.utf-8 > tutor.ja.euc 18 19tutor.ko.euc: tutor.ko.utf-8 20 iconv -f UTF-8 -t EUC-KR tutor.ko.utf-8 > tutor.ko.euc 21 22tutor.ru: tutor.ru.utf-8 23 iconv -f UTF-8 -t KOI8-R tutor.ru.utf-8 > tutor.ru 24 25tutor.ru.cp1251: tutor.ru.utf-8 26 iconv -f UTF-8 -t cp1251 tutor.ru.utf-8 > tutor.ru.cp1251 27 28tutor.gr: tutor.gr.utf-8 29 iconv -f UTF-8 -t ISO-8859-7 tutor.gr.utf-8 > tutor.gr 30 31tutor.gr.cp737: tutor.gr.utf-8 32 iconv -f UTF-8 -t cp737 tutor.gr.utf-8 > tutor.gr.cp737 33