This commit requires special steps, please checkout docs/UPDATING. Tools: - gencat - locale - mkcsmapper - mkesdb - mklocale Libs: - i18n_module - libintl Ressources: - i18n - locale Change-Id: I559d0399d8e98bcee15225cab786e43f31506207
35 lines
701 B
Makefile
35 lines
701 B
Makefile
# $NetBSD: Makefile.inc,v 1.5 2008/10/25 22:27:36 apb Exp $
|
|
|
|
.PATH: ${.CURDIR}/UTF
|
|
|
|
CODE:= UTF
|
|
.include "${.CURDIR}/Makefile.part"
|
|
|
|
UTF-16-mod= UTF1632
|
|
UTF-16-var= utf16
|
|
UTF-16BE-mod= UTF1632
|
|
UTF-16BE-var= utf16,big,force
|
|
UTF-16LE-mod= UTF1632
|
|
UTF-16LE-var= utf16,little,force
|
|
UTF-32-mod= UTF1632
|
|
UTF-32-var= utf32
|
|
UTF-32BE-mod= UTF1632
|
|
UTF-32BE-var= utf32,big,force
|
|
UTF-32LE-mod= UTF1632
|
|
UTF-32LE-var= utf32,little,force
|
|
UTF-8-mod= UTF8
|
|
UTF-8-var= utf8
|
|
UTF-7-mod= UTF7
|
|
UTF-7-var= utf7
|
|
|
|
.for i in ${UTF_PART}
|
|
UTF-$i.src: UTF.src
|
|
${_MKTARGET_CREATE}
|
|
${TOOL_SED} \
|
|
-e 's/UTF-x/UTF-$i/' \
|
|
-e 's/UTF-mod/${UTF-$i-mod}/' \
|
|
-e 's/UTF-var/${UTF-$i-var}/' \
|
|
$> > $@
|
|
CLEANFILES+= UTF-$i.src
|
|
.endfor
|