minix/share/i18n/esdb/UTF/Makefile.inc
Lionel Sambuc 36dcc4a4a9 Import locale tools and ressource files
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
2016-07-09 12:18:33 +02:00

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