blob: 711ab7eba3a1f3780f4dbfd41a2db986ed1f9a1d (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# $NetBSD: Makefile,v 1.1 2016/01/13 19:02:01 christos Exp $
# $FreeBSD: src/gnu/usr.bin/groff/tmac/Makefile,v 1.41 2003/05/01 13:22:21 ru Exp $
SUBDIR= man mom mm
TMACOWN?= ${BINOWN}
TMACGRP?= ${BINGRP}
TMACMODE?= ${NOBINMODE}
# XXX: next depends on ../src/include/defs.h
TMACDIR?= /usr/share/tmac
MDOCDIR?= ${TMACDIR}/mdoc
CLEANFILES= ${MDOCFILES:S/$/-s/} ${STRIPFILES:S/$/-s/} ${SPECIALFILES:S/$/-s/}
# XXX: hyphen.ru
NORMALFILES= mandoc.tmac andoc.tmac an-old.tmac \
me.tmac \
mdoc.tmac \
pic.tmac \
a4.tmac \
papersize.tmac \
ec.tmac \
safer.tmac \
trace.tmac \
ps.tmac psold.tmac pspic.tmac psatk.tmac \
dvi.tmac \
tty.tmac tty-char.tmac \
latin1.tmac latin2.tmac latin9.tmac cp1047.tmac ascii.tmac \
unicode.tmac \
X.tmac Xps.tmac \
lj4.tmac \
lbp.tmac \
html.tmac html-end.tmac \
devtag.tmac \
europs.tmac \
composite.tmac \
eqnrc \
troffrc troffrc-end \
hyphen.us hyphenex.us
SPECIALFILES= an.tmac man.tmac s.tmac ms.tmac www.tmac
STRIPFILES= e.tmac doc.tmac man.local mdoc.local
MDOCFILES= doc-common doc-ditroff doc-nroff doc-syms \
fr.ISO8859-1 ru.KOI8-R
.include <bsd.own.mk>
.if ${MKSHARE} != "no"
FILESDIR= ${TMACDIR}
realall: ${MDOCFILES:S/$/-s/} ${STRIPFILES:S/$/-s/} ${SPECIALFILES:S/$/-s/}
.for f in ${MDOCFILES}
FILES+= $f-s
FILESNAME_$f-s=mdoc/$f
$f-s: $f
${_MKTARGET_CREATE}
${TOOL_SED} -f ${DIST_DIR}/strip.sed ${.ALLSRC} > ${.TARGET}
.endfor
.for f in ${STRIPFILES}
FILES+= $f-s
FILESNAME_$f-s=$f
$f-s: $f
${_MKTARGET_CREATE}
${TOOL_SED} -f ${DIST_DIR}/strip.sed ${.ALLSRC} > ${.TARGET}
.endfor
.for f in ${SPECIALFILES}
FILES+= $f-s
FILESNAME_$f-s=$f
$f-s: $f
${_MKTARGET_CREATE}
${TOOL_SED} -e "s;@TMAC_AN_PREFIX@;${tmac_an_prefix};g" \
-e "s;@TMAC_S_PREFIX@;${tmac_s_prefix};g" \
-e "s;@PNMTOPS_NOSETPAGE@;pnmtops -nosetpage;g" \
${.ALLSRC} > ${.TARGET}
.endfor
FILES+= ${NORMALFILES}
.endif
.include <bsd.prog.mk>
.include <bsd.subdir.mk>
|