html.mk

static html creation framework using make(1) and cpp(1)
Log | Files | Refs | README | LICENSE

commit 8f002fce0acc4594889c980b071e8a5b1b06ca90
parent 1cbb8f68be73c1e8363b77b359c00b41ccaea120
Author: Kyle Milz <krwmilz@gmail.com>
Date:   Sat, 14 Aug 2021 21:31:40 +0000

site.mk: use regular variable assignment

These variables should not be set anywhere else already, so no need to
use ?=.

Diffstat:
Msite.mk.example | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/site.mk.example b/site.mk.example @@ -7,10 +7,10 @@ # set for in tree builds. # # Parent directory of root site directory. -# BSDSRCDIR ?= /nfs/src +# BSDSRCDIR= /nfs/src # # The directory to place built site files. -# BSDOBJDIR ?= /var/www/htdocs +# BSDOBJDIR= /var/www/htdocs # # This will likely be necessary for other processes to read the created files. # WOBJUMASK= 002