aboutsummaryrefslogtreecommitdiff
path: root/make.xml
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-09-06 14:30:01 +0200
committerAdrian Kummerlaender2014-09-06 14:30:01 +0200
commit5ab0f971e767f190aceea48cc6aab6a2bfa42bea (patch)
tree99edee91becebd9fca450142cc054044804d9513 /make.xml
parentd6bd9dee26072f833f9263f04616b80887f08ce6 (diff)
downloadblog.kummerlaender.eu-5ab0f971e767f190aceea48cc6aab6a2bfa42bea.tar
blog.kummerlaender.eu-5ab0f971e767f190aceea48cc6aab6a2bfa42bea.tar.gz
blog.kummerlaender.eu-5ab0f971e767f190aceea48cc6aab6a2bfa42bea.tar.bz2
blog.kummerlaender.eu-5ab0f971e767f190aceea48cc6aab6a2bfa42bea.tar.lz
blog.kummerlaender.eu-5ab0f971e767f190aceea48cc6aab6a2bfa42bea.tar.xz
blog.kummerlaender.eu-5ab0f971e767f190aceea48cc6aab6a2bfa42bea.tar.zst
blog.kummerlaender.eu-5ab0f971e767f190aceea48cc6aab6a2bfa42bea.zip
Replaced custom build system with BuildXSLT
* the bootstrapping transformation is not specific to this project and may be used as a starting point for all kinds of projects making use of InputXSLT ** this is why it was extracted into the separate BuildXSLT repository * the new "make.xml" _Makefile_ has to be passed as input to "build.xsl" ** e.g. "ixslt --input make.xml --transformation ../BuildXSLT/build.xsl" * "make.xml" defines the basic transformation chain and its input
Diffstat (limited to 'make.xml')
-rw-r--r--make.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/make.xml b/make.xml
new file mode 100644
index 0000000..177189b
--- /dev/null
+++ b/make.xml
@@ -0,0 +1,16 @@
+<task type="generate">
+ <input mode="embedded">
+ <datasource>
+ <meta>
+ <source>source</source>
+ <target>target</target>
+ </meta>
+ </datasource>
+ </input>
+ <transformation mode="chain">
+ <link>detail/list.xsl</link>
+ <link>detail/plan.xsl</link>
+ <link>detail/process.xsl</link>
+ <link>detail/summarize.xsl</link>
+ </transformation>
+</task>