OUTPUTPREFIX=../html/development OUTPUTFILES = \ $(OUTPUTPREFIX)/default.css \ $(OUTPUTPREFIX)/welcome.html \ $(OUTPUTPREFIX)/betatest.html \ all : $(OUTPUTFILES) clean : rm -vf $(OUTPUTFILES) html/default.css : default.css cp -v $< $@ html/%.html :: %.xml default.xsl xalan -IN $< -OUT $@ -XSL default.xsl tidy -indent -quiet -modify $@ .PHONY: all clean # EOF #