XSLTPROC = xsltproc

all : index.shtml

clean :
	rm -f index.shtml

index.shtml : code.xsl index.xml
	$(XSLTPROC) $^ > $@
