bsd.doc.mk (b4840de98d98cf5b26edf8922af11f9f353e3337) | bsd.doc.mk (d2893b161bbea64e099654c0dd78073cfb5667b0) |
---|---|
1# from: @(#)bsd.doc.mk 5.3 (Berkeley) 1/2/91 2# $FreeBSD$ 3# 4# The include file <bsd.doc.mk> handles installing BSD troff documents. 5# 6# 7# +++ variables +++ 8# --- 89 unchanged lines hidden (view full) --- 98.endif 99CLEANFILES+= ${DOC}.ascii ${DOC}.ascii${DCOMPRESS_EXT} \ 100 ${DOC}.ps ${DOC}.ps${DCOMPRESS_EXT} \ 101 ${DOC}.html ${DOC}-*.html 102 103realinstall: 104.if ${PRINTERDEVICE} == "html" 105 cd ${SRCDIR}; \ | 1# from: @(#)bsd.doc.mk 5.3 (Berkeley) 1/2/91 2# $FreeBSD$ 3# 4# The include file <bsd.doc.mk> handles installing BSD troff documents. 5# 6# 7# +++ variables +++ 8# --- 89 unchanged lines hidden (view full) --- 98.endif 99CLEANFILES+= ${DOC}.ascii ${DOC}.ascii${DCOMPRESS_EXT} \ 100 ${DOC}.ps ${DOC}.ps${DCOMPRESS_EXT} \ 101 ${DOC}.html ${DOC}-*.html 102 103realinstall: 104.if ${PRINTERDEVICE} == "html" 105 cd ${SRCDIR}; \ |
106 ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ | 106 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ |
107 ${DOC}*.html ${DESTDIR}${BINDIR}/${VOLUME} 108.else | 107 ${DOC}*.html ${DESTDIR}${BINDIR}/${VOLUME} 108.else |
109 ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ | 109 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ |
110 ${DFILE} ${DESTDIR}${BINDIR}/${VOLUME} 111.endif 112 113spell: ${SRCS} 114 (cd ${.CURDIR}; spell ${SRCS} ) | sort | \ 115 comm -23 - ${.CURDIR}/spell.ok > ${DOC}.spell 116 117BINDIR?= /usr/share/doc --- 24 unchanged lines hidden --- | 110 ${DFILE} ${DESTDIR}${BINDIR}/${VOLUME} 111.endif 112 113spell: ${SRCS} 114 (cd ${.CURDIR}; spell ${SRCS} ) | sort | \ 115 comm -23 - ${.CURDIR}/spell.ok > ${DOC}.spell 116 117BINDIR?= /usr/share/doc --- 24 unchanged lines hidden --- |