42 lines
1.2 KiB
XML
Raw Normal View History

2015-06-15 17:47:35 -07:00
<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="files"/>
2015-06-15 17:47:35 -07:00
<property name="excludedfiles" value=""/>
<import file="../Ant-Common.xml"/>
<import file="../Ant-Clean.xml"/>
<target name="run" description="Compile and run" depends="build">
2015-12-02 09:20:27 -08:00
<jrun cls="AddAndSubtractPaths" />
2015-12-06 11:45:16 -08:00
<jrun cls="Directories" />
2015-12-02 09:20:27 -08:00
<jrun cls="File_System" />
2015-12-06 11:45:16 -08:00
<jrun cls="Find" />
<jrun cls="ListOfLines" />
2015-12-16 22:51:48 -08:00
<jrun cls="PartsOfPaths" />
2015-12-02 09:20:27 -08:00
<jrun cls="PathAnalysis" />
<jrun cls="PathInfo" />
2015-12-06 11:45:16 -08:00
<jrun cls="PathWatcher" />
<jrun cls="ReadLineStream" />
<jrun cls="StreamInAndOut" />
<jrun cls="TreeWatcher" />
<jrun cls="Writing" />
2015-06-15 17:47:35 -07:00
</target>
2015-12-16 22:51:48 -08:00
<target name="runconsole" description="Compile and run" depends="build">
<jrunconsole cls="AddAndSubtractPaths" />
<jrunconsole cls="Directories" />
<jrunconsole cls="File_System" />
<jrunconsole cls="Find" />
<jrunconsole cls="ListOfLines" />
<jrunconsole cls="PathAnalysis" />
<jrunconsole cls="PathInfo" />
<jrunconsole cls="PathWatcher" />
<jrunconsole cls="ReadLineStream" />
<jrunconsole cls="StreamInAndOut" />
<jrunconsole cls="TreeWatcher" />
<jrunconsole cls="Writing" />
</target>
</project>