blob: cb4f66f460e105c72747486729fb42c3abf7aef4 (
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
|
# $NetBSD: Makefile,v 1.5 2000/06/11 13:07:49 veego Exp $
.include <bsd.own.mk>
SUBDIR= common 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 de.gmo fr.gmo
FILES+= ${F}
FILESDIR_${F}= /usr/share/locale/${F:.gmo=}/LC_MESSAGES
FILESNAME_${F}= texinfo.mo
.endfor
.endif
TEXINFO= info-stnd.texi info.texi texinfo.txi
DIST= ${.CURDIR}/../../dist
.PATH: ${DIST}/texinfo ${DIST}/texinfo/doc ${DIST}/texinfo/po
all-info all-install-info all-makeinfo all-texi2dvi all-texindex: all-common
.include <bsd.info.mk>
.include <bsd.files.mk>
.include <bsd.subdir.mk>
|