all: ../books.html ../bookLog.html ../comics.html ../flash.html .PHONY: all clean ../books.html: books.xml books.xsl xsltproc -o ../books.html books.xsl books.xml ../bookLog.html: books.xml log.xsl xsltproc -o ../bookLog.html log.xsl books.xml ../comics.html: comics.xml comics.xsl xsltproc -o ../comics.html comics.xsl comics.xml ../flash.html: flash.xml flash.xsl xsltproc -o ../flash.html flash.xsl flash.xml clean: rm -f ../books.html ../bookLog.html ../comics.html ../flash.html