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 6all: tutor.ja.sjis tutor.ja.euc tutor.ko.euc 7 8tutor.ja.sjis: tutor.ja.utf-8 9 nkf -WXs tutor.ja.utf-8 > tutor.ja.sjis 10 11tutor.ja.euc: tutor.ja.utf-8 12 nkf -WXe tutor.ja.utf-8 > tutor.ja.euc 13 14tutor.ko.euc: tutor.ko.utf-8 15 iconv -f UTF-8 -t EUC-KR tutor.ko.utf-8 > tutor.ko.euc 16