nuclear@25: rstfiles = $(wildcard *.rst) nuclear@25: htmlfiles = $(rstfiles:.rst=.html) nuclear@25: nuclear@25: .PHONY: html nuclear@25: html: $(htmlfiles) nuclear@25: nuclear@25: %.html: %.rst nuclear@25: rst2html $(RSTFLAGS) $< >$@ nuclear@25: nuclear@25: .PHONY: clean nuclear@25: clean: nuclear@25: rm -f $(htmlfiles)