blob: 1824c51e2af65b28e8b17901d854e7b469a8c1ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $NetBSD: Makefile,v 1.10 2001/09/02 23:00:30 wiz Exp $
.include <bsd.own.mk>
SUBDIR= common .WAIT info install-info makeinfo texi2dvi texindex
.if ${MKSHARE} != "no"
FILESDIR= /usr/share/misc
FILES= epsf.tex texinfo.tex
.endif
.if ${MKNLS} != "no"
.for F in cs.gmo de.gmo de_AT.gmo eo.gmo fr.gmo nl.gmo no.gmo ru.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-nl.tex \
# txi-no.tex txi-pt.tex
.endif
MAN= info.5 texinfo.5
TEXINFO= info-stnd.texi info.texi texinfo.txi
DIST= ${.CURDIR}/../../dist
INFOFLAGS= -I${DIST}/texinfo/doc
.PATH: ${DIST}/texinfo ${DIST}/texinfo/doc ${DIST}/texinfo/po
.include <bsd.man.mk>
.include <bsd.info.mk>
.include <bsd.files.mk>
.include <bsd.subdir.mk>
|