TML=$(shell find -name '*.tml'|sed 's/ /\\\\\\ /g') HTML=$(TML:.tml=.html) %.html : %.tml tml -q "$<" > $@ all: $(HTML) clean: rm -f $(HTML:\\=)