XSLTPROC = xsltproc

all : chapter.html

clean :
	rm -f chapter.html

chapter.html : style.xsl chapter.xml
	$(XSLTPROC) $^ > $@
