2008-06-25 01:05:34 +00:00
|
|
|
# Makefile for the Vim tutor.
|
2008-06-24 20:19:36 +00:00
|
|
|
#
|
2008-06-25 01:05:34 +00:00
|
|
|
# The Japanese tutor exists in three encodings. Use the UTF-8 version as the
|
|
|
|
# original and create the others with conversion.
|
2008-06-24 20:19:36 +00:00
|
|
|
#
|
2008-06-25 01:05:34 +00:00
|
|
|
# Similarly for Russian and Korean
|
2008-06-24 20:19:36 +00:00
|
|
|
|
2023-11-26 14:01:56 +00:00
|
|
|
# Common components
|
|
|
|
include Make_all.mak
|
|
|
|
|
2024-01-22 22:25:43 +03:00
|
|
|
.PHONY: all clean
|
|
|
|
|
2023-11-26 14:01:56 +00:00
|
|
|
all: $(CONVERTED)
|
2008-06-24 20:19:36 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.utf-8: tutor
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f ISO-8859-1 -t UTF-8 $? >$@
|
2008-06-24 20:19:36 +00:00
|
|
|
|
2011-03-22 17:40:10 +01:00
|
|
|
tutor.bar: tutor.bar.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t ISO-8859-1 $? >$@
|
2010-01-06 20:54:52 +01:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.ca.utf-8: tutor.ca
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f ISO-8859-1 -t UTF-8 $? >$@
|
2008-06-24 20:19:36 +00:00
|
|
|
|
2010-01-06 20:54:52 +01:00
|
|
|
tutor.eo: tutor.eo.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t ISO-8859-3 $? >$@
|
2010-01-06 20:54:52 +01:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.de.utf-8: tutor.de
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f ISO-8859-1 -t UTF-8 $? >$@
|
2008-06-24 20:19:36 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.el: tutor.el.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t ISO-8859-7 $? >$@
|
2008-06-24 20:19:36 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.el.cp737: tutor.el.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t CP737 $? >$@
|
2008-06-24 20:19:36 +00:00
|
|
|
|
2022-05-07 21:54:03 +01:00
|
|
|
tutor.es: tutor.es.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t ISO-8859-1 $? >$@
|
2008-06-24 20:19:36 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.fr.utf-8: tutor.fr
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f ISO-8859-1 -t UTF-8 $? >$@
|
2008-06-24 20:19:36 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.hu: tutor.hu.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t ISO-8859-2 $? >$@
|
2008-06-24 20:19:36 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.hu.cp1250: tutor.hu.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t CP1250 $? >$@
|
2023-11-26 14:01:56 +00:00
|
|
|
|
|
|
|
tutor.it.utf-8: tutor.it
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f ISO-8859-1 -t UTF-8 $? >$@
|
2008-06-24 20:19:36 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.hr: tutor.hr.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t ISO-8859-2 $? >$@
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.hr.cp1250: tutor.hr.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t CP1250 $? >$@
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.ja.sjis: tutor.ja.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t CP932 $? >$@
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.ja.euc: tutor.ja.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t EUC-JP $? >$@
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.ko.euc: tutor.ko.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t EUC-KR $? >$@
|
2006-09-02 12:50:52 +00:00
|
|
|
|
2013-05-06 05:58:55 +02:00
|
|
|
tutor.nl: tutor.nl.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t ISO-8859-1 $? >$@
|
2013-05-06 05:58:55 +02:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.no.utf-8: tutor.no
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f ISO-8859-1 -t UTF-8 $? >$@
|
2006-09-02 12:50:52 +00:00
|
|
|
|
2010-01-06 20:54:52 +01:00
|
|
|
# nb is an alias for no
|
|
|
|
tutor.nb: tutor.no
|
2024-08-15 21:51:32 +02:00
|
|
|
cp $? $@
|
2010-01-06 20:54:52 +01:00
|
|
|
|
|
|
|
tutor.nb.utf-8: tutor.no.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
cp $? $@
|
2010-01-06 20:54:52 +01:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.ru: tutor.ru.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t KOI8-R $? >$@
|
2006-09-10 11:24:31 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.ru.cp1251: tutor.ru.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t CP1251 $? >$@
|
2006-09-10 11:24:31 +00:00
|
|
|
|
2019-08-17 20:09:31 +02:00
|
|
|
tutor.tr.iso9: tutor.tr.utf-8
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f UTF-8 -t ISO-8859-9 $? >$@
|
2019-08-17 20:09:31 +02:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.sv.utf-8: tutor.sv
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f ISO-8859-1 -t UTF-8 $? >$@
|
2007-05-06 13:38:48 +00:00
|
|
|
|
2008-06-25 01:05:34 +00:00
|
|
|
tutor.zh.utf-8: tutor.zh.big5
|
2024-08-15 21:51:32 +02:00
|
|
|
iconv -f BIG-5 -t UTF-8 $? >$@
|
2024-01-22 22:25:43 +03:00
|
|
|
|
|
|
|
clean:
|
|
|
|
for G in $(CONVERTED); do if [ -f $$G ]; then rm -f $$G; fi; done
|