html.mk

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

commit 2ed6a3a75eb4fc23b53db0b906503bb96e9cf76f
parent 8777277a564c397b7bf205e987df3005f7eb66e6
Author: Kyle Milz <krwmilz@gmail.com>
Date:   Sun, 25 Jul 2021 00:55:58 +0000

mk: move helper targets

Helper targets were erroneosly pasted in the middle of a loop, move them
outside.

Diffstat:
Mbsd.html.mk | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/bsd.html.mk b/bsd.html.mk @@ -164,6 +164,10 @@ all: ${.OBJDIR}/${file}: ${.CURDIR}/${file} cp ${.CURDIR}/${file} $@ +all: ${.OBJDIR}/${file} + +.endif +.endfor # # Helper targets for misc tasks. @@ -184,10 +188,6 @@ trailingspace: _SUBDIRUSE spell: _SUBDIRUSE spell +${.CURDIR}/${TOP}/spell_ok ${.CURDIR}/${SRCS} -all: ${.OBJDIR}/${file} - -.endif -.endfor .include <bsd.obj.mk> .include <bsd.subdir.mk>