diff options
Diffstat (limited to 'gnu/groff/tmac/Makefile')
| -rw-r--r-- | gnu/groff/tmac/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/groff/tmac/Makefile b/gnu/groff/tmac/Makefile new file mode 100644 index 000000000000..145b9453c8ab --- /dev/null +++ b/gnu/groff/tmac/Makefile @@ -0,0 +1,26 @@ +# Makefile for groff macros + +TMACOWN?= bin +TMACGRP?= bin +TMACMODE?= 444 +TMACDIR?= /usr/share/tmac + +MAN7= groff_ms.7 +MLINKS= groff_ms.7 ms.7 + +FILES= tmac.pic tmac.ps tmac.psnew tmac.psold tmac.pspic tmac.psatk\ + tmac.dvi tmac.tty tmac.tty-char tmac.X tmac.Xps tmac.latin1\ + man.local eqnrc troffrc + +afterinstall: + for f in ${FILES}; do \ + install -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ + ${.CURDIR}/$$f ${DESTDIR}${TMACDIR}; \ + done + install -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ + ${.CURDIR}/tmac.s ${DESTDIR}${TMACDIR}/tmac.s + install -c -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ + ${.CURDIR}/tmac.an ${DESTDIR}${TMACDIR}/tmac.an.old + +.include <bsd.prog.mk> +.include "../Makefile.cfg" |
