# BuildXSLT ... is a simple XSLT build system built on [InputXSLT](https://github.com/KnairdA/InputXSLT). ## Current features: - processing tasks contained within XML _Makefiles_ - generating single transformations - generating chained transformations - using files or embedded XML-trees as transformation input ## Example: BuildXSLT can for example be used to build a [static website](https://github.com/KnairdA/blog.kummerlaender.eu) using the following generation chain called via `ixslt --input make.xml --transformation build.xsl`: ``` source target detail/list.xsl detail/plan.xsl detail/process.xsl detail/summarize.xsl ```