blob: ccc7e6e845f3a0a58a344ffc6c898d3fdb24a0d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?xml version="1.0" encoding="ISO-8859-15" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/" mode="fcode">
<xsl:text> # # fcode rules # </xsl:text>
<!-- Create linker targets for FCode roms -->
<xsl:for-each select="//fcode">
<xsl:variable name="outer-conditions">
<xsl:text>0</xsl:text>
<xsl:for-each select="(ancestor-or-self::*)[@condition!='']">
<xsl:call-template name="resolve-condition">
<xsl:with-param select="@condition" name="expression"/>
</xsl:call-template>
</xsl:for-each>
</xsl:variable>
<xsl:if test="$outer-conditions = 0">
<xsl:if test="(ancestor-or-self::*)">
<xsl:variable name="path">
<xsl:for-each select="ancestor::build">
<xsl:call-template name="get-dirname">
<xsl:with-param select="@base" name="path"/>
</xsl:call-template>
</xsl:for-each>
</xsl:variable>
<!-- Fcode name -->
<xsl:text>$(ODIR)/</xsl:text>
<xsl:value-of select="@name"/>
<xsl:text>:</xsl:text>
<xsl:text> $(SRCDIR)/</xsl:text>
<xsl:value-of select="$path"/>
<xsl:value-of select="@source"/>
<!-- FIXME this requires strict spaces in rules.xml -->
<xsl:value-of select="document('rules.xml',.)//rule[@target='host'][@entity='fcode']"/>
<xsl:text> </xsl:text>
</xsl:if>
</xsl:if>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
|