84 lines
1.9 KiB
Makefile
84 lines
1.9 KiB
Makefile
# $NetBSD: Makefile,v 1.25 2009/04/12 17:56:35 joerg Exp $
|
|
|
|
# $FreeBSD: src/gnu/usr.bin/groff/tmac/Makefile,v 1.41 2003/05/01 13:22:21 ru Exp $
|
|
|
|
SUBDIR= man
|
|
|
|
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>
|