Make ${INSTALL_COMPRESSED} and ${INSTALL_ONLY_COMPRESSED} truly optional.

PR:             docs/12978
Submitted by:   John Baldwin <jobaldwi@vt.edu>
This commit is contained in:
Nik Clayton 1999-08-05 20:22:49 +00:00
parent 99f23bc93e
commit 537037f404
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=5326

View file

@ -1,5 +1,5 @@
# #
# $Id: docproj.docbook.mk,v 1.5 1999-06-03 19:39:29 nik Exp $ # $Id: docproj.docbook.mk,v 1.6 1999-08-05 20:22:49 nik Exp $
# #
# This include file <docproj.docbook.mk> handles installing documentation # This include file <docproj.docbook.mk> handles installing documentation
# from the FreeBSD Documentation Project. # from the FreeBSD Documentation Project.
@ -183,7 +183,7 @@ CLEANFILES+= ${DOC}.doc
# ${_docs} and ${CLEANFILES} so they get built/cleaned by "all" and # ${_docs} and ${CLEANFILES} so they get built/cleaned by "all" and
# "clean". # "clean".
# #
.if !empty(INSTALL_COMPRESSED) .if defined(INSTALL_COMPRESSED) && !empty(INSTALL_COMPRESSED)
.for _curformat in ${FORMATS} .for _curformat in ${FORMATS}
_cf=${_curformat} _cf=${_curformat}
.for _curcomp in ${INSTALL_COMPRESSED} .for _curcomp in ${INSTALL_COMPRESSED}
@ -336,7 +336,7 @@ install: beforeinstall realinstall afterinstall
# Build a list of install-format targets to be installed. These will be # Build a list of install-format targets to be installed. These will be
# dependencies for the "realinstall" target. # dependencies for the "realinstall" target.
# #
.if empty(INSTALL_ONLY_COMPRESSED) .if !defined(INSTALL_ONLY_COMPRESSED) || empty(INSTALL_ONLY_COMPRESSED)
_curinst+= ${FORMATS:S/^/install-/g} _curinst+= ${FORMATS:S/^/install-/g}
.endif .endif