47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
|
# $NetBSD: Makefile,v 1.23 2008/10/25 22:35:36 apb Exp $
|
||
|
|
||
|
.include <bsd.own.mk>
|
||
|
|
||
|
SUBDIR= makedoc .WAIT common .WAIT info infokey install-info makeinfo \
|
||
|
texi2dvi texindex
|
||
|
|
||
|
.if ${MKSHARE} != "no"
|
||
|
FILESDIR= /usr/share/misc
|
||
|
FILES= epsf.tex texinfo.cat texinfo.dtd texinfo.tex texinfo.xsl
|
||
|
VERSION!= ${TOOL_SED} -n "s/^\#define VERSION \"\(.*\)\"/\1/p" \
|
||
|
${NETBSDSRCDIR}/gnu/usr.bin/texinfo/common/config.h
|
||
|
|
||
|
texinfo.cat: texinfo-cat.in
|
||
|
${TOOL_SED} 's/__VERSION__/${VERSION}/g' ${.ALLSRC} >${.TARGET}
|
||
|
|
||
|
realall: texinfo.cat
|
||
|
|
||
|
CLEANFILES+= texinfo.cat
|
||
|
.endif
|
||
|
|
||
|
.if ${MKNLS} != "no"
|
||
|
.for F in cs.gmo da.gmo de.gmo de_AT.gmo eo.gmo fr.gmo he.gmo hr.gmo ja.gmo \
|
||
|
nb.gmo nl.gmo no.gmo pl.gmo ro.gmo ru.gmo sv.gmo tr.gmo zh_CN.gmo zh_TW.gmo
|
||
|
FILES+= ${F}
|
||
|
FILESDIR_${F}= /usr/share/locale/${F:.gmo=}/LC_MESSAGES
|
||
|
FILESNAME_${F}= texinfo.mo
|
||
|
.endfor
|
||
|
# XXX: Do we want to install the following files too?
|
||
|
#FILES+= txi-cs.tex txi-de.tex txi-en.tex txi-es.tex txi-fr.tex txi-it.tex \
|
||
|
# txi-nl.tex txi-no.tex txi-pt.tex txi-tr.tex
|
||
|
.endif
|
||
|
|
||
|
MAN= info.5 texinfo.5
|
||
|
|
||
|
TEXINFO= info-stnd.texi info.texi texinfo.txi
|
||
|
|
||
|
DIST= ${NETBSDSRCDIR}/gnu/dist
|
||
|
IDIST= ${DIST}/texinfo
|
||
|
INFOFLAGS= -I${IDIST}/doc
|
||
|
|
||
|
.PATH: ${IDIST} ${IDIST}/doc ${IDIST}/po ${IDIST}/util
|
||
|
|
||
|
.include <bsd.info.mk>
|
||
|
.include <bsd.prog.mk>
|
||
|
.include <bsd.subdir.mk>
|