<java> <java flags> -cp <validate classpath> <validate class> <XML schema> <XML file>
<java> <java flags> -cp <transform classpath> <transform class> <XSLT script> <XML file> <output>
<java> <java flags> -cp <transform classpath> <transform class> <XSLT script> <XML file> <output>
# The source root of this Component COMPONENT_ROOT=../.. # The root of the build system BS_ROOT=$(COMPONENT_ROOT)/build3 # Boostrap Build system definitions. include $(BS_ROOT)/defines.mk # validate an XML file XML_VALIDATE_TARGETS=bb-event.xml bb-event.xml_SCHEMA=md_2.0-PPEM.xsd bb-event.xml_SRC=bb-event-PPEM.md # split an XML file into multiple HTML files XML_TFSPLIT_TARGETS=bbeventhtml bbeventhtml_SRC=bb-event-PPEM.md bbeventhtml_SPLITXSL=md2html.xsl bbeventhtml_SPLITCMD=md2html.pl bbeventhtml_BASEOUT=bb-event.xml bbeventhtml_BASEXSL=md_trim.xsl # Finally, include the rules to make the build system go. include $(BS_ROOT)/rules.mk