2015-05-05 11:20:13 -07:00

27 lines
739 B
XML

<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="control"/>
<property name="excludedfiles" value=""/>
<import file="../Ant-Common.xml"/>
<target name="run" description="Compile and run" depends="build">
<touch file="failures"/>
<jrun cls="BreakAndContinue" />
<jrun cls="CommaOperator" />
<jrun cls="ForEachFloat" />
<jrun cls="ForEachInt" />
<jrun cls="ForEachString" />
<jrun cls="IfElse" />
<jrun cls="IfElse2" />
<jrun cls="LabeledFor" />
<jrun cls="LabeledWhile" />
<jrun cls="ListCharacters" />
<jrun cls="StringSwitch" />
<jrun cls="VowelsAndConsonants" />
<jrun cls="WhileTest" />
<delete file="failures"/>
</target>
</project>