--- nono/doc/Makefile 2026/04/29 17:04:33 1.1.1.2 +++ nono/doc/Makefile 2026/04/29 17:05:11 1.1.1.5 @@ -11,13 +11,17 @@ TARGETS= \ index.html \ changes.html \ + upgrade-0.2.0.html \ + upgrade-0.3.0.html \ all: ${TARGETS} index.html: index.php common.php ../lib/header.h - php index.php ../lib/header.h > $@ + php index.php > $@ -changes.html: changes.php common.php - php changes.php > $@ +.for f in ${TARGETS:index.html=} +${f}: ${f:.html=.php} common.php + php ${f:.html=.php} > $@ +.endfor .include "../Makefile.rule"