# Makefile generating the list of the concerts # # Copyright (c) 2006 Hugo Haas VERSION=20001020 SOURCE= concerts.xml DATE= date-${VERSION}.xsl NAME= name-${VERSION}.xsl DEP= concert-list-${VERSION}.dtd \ header-footer.xsl \ format-concert-${VERSION}.xsl all: bydate.html byname.html bydate.html: $(SOURCE) $(DATE) $(DEP) xsltproc $(DATE) $(SOURCE) > bydate.html byname.html: $(SOURCE) $(NAME) $(DEP) xsltproc $(NAME) $(SOURCE) > byname.html commit: all svn commit .