<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<!--
// // See license.txt for license information. // // jam.xml // // 7-Aug-2003 phamilton Created //
-->

<filedef name="jam">
    <filepath>$(filepath)</filepath>
    <extension>.jam</extension>
    <root>$(root)</root>
    <ignoreobjects>$(ignoreobjects)</ignoreobjects>
    <blocks>
        <import url="$(text_path)/copywrite.xml"/>
        <import url="$(text_path)/author_fullname.xml"/>
        <import url="$(text_path)/company.xml"/>
        <import url="$(text_path)/jam_disclaimer.xml"/>
        <import url="$(text_path)/author_uname.xml"/>
        <text name="jampathvar">
            <content>$(jampathvar)</content>
        </text>
        <text name="library">
            <content>$(library)</content>
        </text>
        <date name="date">
            <format>%e-%b-%Y</format>
        </date>
<!--
block which outputs all object class names (with an _ after them)
-->

        <foreachobject name="allgensources">
            <location>$(root)</location>
            <blocks>
                <stringmember name="classname">
                    <membername>classname</membername>
                </stringmember>
                <text name="object">
                    <conditions>
                        <isinlist>
                            <membername>name</membername>
                            <list>$(ignoreobjects)</list>
                            <fail/>
                        </isinlist>
                    </conditions>
                    <content>\t\(classname)_\n</content>
                </text>
            </blocks>
            <structure>\object</structure>
        </foreachobject>
        <forlist name="othersources">
            <list>$(othersources)</list>
            <structure>\t\item\n</structure>
        </forlist>
        <forlist name="otherlibs">
            <list>$(otherlibs)</list>
            <structure>#\t\t<lib>\item\n</structure>
        </forlist>
        <forlist name="otherdlls">
            <list>$(otherdlls)</list>
            <structure>#\t\t<dll>\item\n</structure>
        </forlist>
        <text name="register">
            <content>$(register)</content>
        </text>
        <text name="extradefs">
            <content>$(extradefs)</content>
        </text>
    </blocks>
    <structure> # # \copywrite # \author_fullname; \company # \jam_disclaimer # # \library.jam # # \date \author_uname Generated by tangle. Edit at your own risk! # CPP_SOURCES = \register \allgensources \othersources ; #dll \library : $(\jampathvar)/$(CPP_SOURCES).cpp \otherlibs \otherdlls # : <sysinclude>$(PROJECT_ROOT) <sysinclude>$(BOOST_ROOT) # <darwin><*><inlining>off # <darwin><*><optimization>off # : debug release # ; lib \library : $(\jampathvar)/$(CPP_SOURCES).cpp : <sysinclude>$(PROJECT_ROOT) <sysinclude>$(BOOST_ROOT) <darwin><*><inlining>off <darwin><*><optimization>off \extradefs : debug release ; </structure>
</filedef>