--- nono/doc/Makefile 2026/04/29 17:04:30 1.1.1.1 +++ nono/doc/Makefile 2026/04/29 17:05:11 1.1.1.5 @@ -1,15 +1,27 @@ # # nono -# Copyright (C) 2020 isaki@NetBSD.org +# Copyright (C) 2020 nono project +# Licensed under nono-license.txt +# + # # doc # -all: index.html +TARGETS= \ + index.html \ + changes.html \ + upgrade-0.2.0.html \ + upgrade-0.3.0.html \ + +all: ${TARGETS} -index.html: index.php ../lib/header.h - php $> > $@ +index.html: index.php common.php ../lib/header.h + php index.php > $@ -CLEANFILES+= index.html +.for f in ${TARGETS:index.html=} +${f}: ${f:.html=.php} common.php + php ${f:.html=.php} > $@ +.endfor -.include "../Makefile.inc" +.include "../Makefile.rule"