]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - share/i18n/csmapper/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / share / i18n / csmapper / Makefile
1 # $FreeBSD$
2 # $NetBSD: Makefile,v 1.13 2007/03/13 16:34:37 tnozaki Exp $
3
4 FILESDIR= ${CSMAPPERDIR}
5
6 SUBDIR= APPLE AST BIG5 CNS CP EBCDIC GB GEORGIAN ISO646 ISO-8859 JIS \
7         KAZAKH KOI KS MISC TCVN
8
9 mapper.dir: ${SUBDIR}
10         touch ${.TARGET}
11 .for i in ${SUBDIR}
12         cat ${i}/mapper.dir.${i} >> ${.TARGET}
13 .endfor
14 mapper.dir.db: mapper.dir
15         ${MKCSMAPPER} -m -o ${.TARGET} ${.ALLSRC}
16
17 FILES+= mapper.dir mapper.dir.db
18 CLEANFILES+= mapper.dir mapper.dir.db
19
20 charset.pivot: ${SUBDIR}
21         touch ${.TARGET}
22 .for i in ${SUBDIR}
23         cat ${i}/charset.pivot.${i} >> ${.TARGET}
24 .endfor
25 charset.pivot.pvdb: charset.pivot
26         ${MKCSMAPPER} -p -o ${.TARGET} ${.ALLSRC}
27
28 FILES+= charset.pivot charset.pivot.pvdb
29 CLEANFILES+= charset.pivot charset.pivot.pvdb
30
31 all: ${FILES}
32 realall: ${FILES}
33
34 .include "./Makefile.inc"
35 .include <bsd.prog.mk>