Hey there,
I have the following xml file:
<project default="compile">
<target name = "compile">
<xslt in="menu.xml style="menu.xsl out="menu.html"/>
<xslt in="inhoud.xml" style="inhoud.xsl" out="inhoud.html"/>
<xslt in="news.xml" style="news.xsl" out="news.html"/>
</target>
<target name = "compilegens">
<xslt in="menu2.xml style="menu2.xsl out="menu2.html"/>
<xslt in="inhoud2.xml" style="inhoud2.xsl" out="inhoud2.html"/>
<xslt in="news2.xml" style="news2.xsl" out="news2.html"/>
</target>
</project>
I want to compile the childs of <target name = "compile"> if my parser says target = compile. When my parser says target = compilegens then he has to compile the childs of <target name = "compilegens">.
Any Idea's???
thnx