--- nono/doc/Makefile 2026/04/29 17:04:57 1.1.1.3 +++ nono/doc/Makefile 2026/04/29 17:05:11 1.1.1.5 @@ -12,16 +12,16 @@ 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 > $@ - -upgrade-0.2.0.html: upgrade-0.2.0.php common.php - php upgrade-0.2.0.php > $@ +.for f in ${TARGETS:index.html=} +${f}: ${f:.html=.php} common.php + php ${f:.html=.php} > $@ +.endfor .include "../Makefile.rule"