/share/i18n/csmapper/Makefile

https://bitbucket.org/freebsd/freebsd-head/ · Makefile · 35 lines · 25 code · 8 blank · 2 comment · 0 complexity · 650e0caeba5d4745502db997c97b8d6e MD5 · raw file

  1. # $FreeBSD$
  2. # $NetBSD: Makefile,v 1.13 2007/03/13 16:34:37 tnozaki Exp $
  3. FILESDIR= ${CSMAPPERDIR}
  4. SUBDIR= APPLE AST BIG5 CNS CP EBCDIC GB GEORGIAN ISO646 ISO-8859 JIS \
  5. KAZAKH KOI KS MISC TCVN
  6. mapper.dir: ${SUBDIR}
  7. touch ${.TARGET}
  8. .for i in ${SUBDIR}
  9. cat ${i}/mapper.dir.${i} >> ${.TARGET}
  10. .endfor
  11. mapper.dir.db: mapper.dir
  12. ${MKCSMAPPER} -m -o ${.TARGET} ${.ALLSRC}
  13. FILES+= mapper.dir mapper.dir.db
  14. CLEANFILES+= mapper.dir mapper.dir.db
  15. charset.pivot: ${SUBDIR}
  16. touch ${.TARGET}
  17. .for i in ${SUBDIR}
  18. cat ${i}/charset.pivot.${i} >> ${.TARGET}
  19. .endfor
  20. charset.pivot.pvdb: charset.pivot
  21. ${MKCSMAPPER} -p -o ${.TARGET} ${.ALLSRC}
  22. FILES+= charset.pivot charset.pivot.pvdb
  23. CLEANFILES+= charset.pivot charset.pivot.pvdb
  24. all: ${FILES}
  25. realall: ${FILES}
  26. .include "./Makefile.inc"
  27. .include <bsd.prog.mk>