Processing

Example 1. Sample Makefile


-----------------------------------------------------------------------

index.html : Presentation.xml Presentation.xsl
        java com.icl.saxon.StyleSheet Presentation.xml Presentation.xsl

clean:
        rm -f *.html *~

-----------------------------------------------------------------------