OSDN Git Service

staticプロパティをインスタンスプロパティに変更
[kcd/KCD.git] / KCD / zh-Hant-TW.lproj / Makefile
1
2 RM=/bin/rm
3 SED=/usr/bin/sed
4 ICONV=/usr/bin/iconv
5
6 Localize_template=Localizable.strings.sed
7 temp_file=l.text
8 working_enc=utf-8
9
10 Localizable: Localizable.strings
11         ${ICONV} -f utf-16 -t ${working_enc} $< | ${SED} -f ${Localize_template} > ${temp_file}
12         ${ICONV} -f ${working_enc} -t utf-16 ${temp_file} > $<
13         ${RM} ${temp_file}
14
15 checkLocalizable:
16         plutil Localizable.strings
17