Changeset 3358 for trunk/ProjectFortress/build.xml
- Timestamp:
- 02/03/09 04:17:05 (10 months ago)
- Files:
-
- 1 modified
-
trunk/ProjectFortress/build.xml (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ProjectFortress/build.xml
r3319 r3358 198 198 <target name="help"> 199 199 <echo message="ant checkEnv, checkNodesUptodate, checkOperatorsUptodate, 200 checkParserUptodate, clean, cleanCache, compile, 200 checkParserUptodate, clean, cleanCache, compile, compileAll, 201 201 compileCommon, compileCommonLint, compileLint, doc, 202 202 grammarCoverage, help, init, interpreter-jar, … … 680 680 681 681 682 <target name="interpreter-jar" depends="compile "682 <target name="interpreter-jar" depends="compileAll" 683 683 description="Package up the interpreter in a jar."> 684 684 <jar … … 688 688 </target> 689 689 690 <target name="testOnly" depends="compile "690 <target name="testOnly" depends="compileAll" 691 691 description="Run specific tests (use -DtestPattern=...)."> 692 692 <mkdir dir="${test.results}"/> … … 756 756 </target> 757 757 758 <target name="testCruiseControl" depends="compile "758 <target name="testCruiseControl" depends="compileAll" 759 759 description="Run all unit and system tests expected to pass."> 760 760 <mkdir dir="${test.results}"/> … … 787 787 </target> 788 788 789 <target name="testNotPassing" depends="compile "789 <target name="testNotPassing" depends="compileAll" 790 790 description="Run system tests that aren't passing yet."> 791 791 <mkdir dir="${test.results}"/> … … 812 812 </target> 813 813 814 <target name="testSpecData" depends="compile "814 <target name="testSpecData" depends="compileAll" 815 815 description="Run SpecDataJUTests."> 816 816 <mkdir dir="${test.results}"/> … … 837 837 </target> 838 838 839 <target name="testSystem" depends="compile "839 <target name="testSystem" depends="compileAll" 840 840 description="Run SystemJUTests."> 841 841 <mkdir dir="${test.results}"/> … … 885 885 </target> 886 886 887 <target name="testsyntax" depends="compile "887 <target name="testsyntax" depends="compileAll" 888 888 description="Run SyntaxAbstractionJUTests."> 889 889 <mkdir dir="${test.results}"/> … … 911 911 </target> 912 912 913 <target name="testDemos" depends="compile "913 <target name="testDemos" depends="compileAll" 914 914 description="Run demos in a test harness."> 915 915 <mkdir dir="${test.results}"/> … … 1114 1114 </target> 1115 1115 1116 <target name="doc" depends="compile ">1116 <target name="doc" depends="compileAll"> 1117 1117 <javadoc overview="${src}/overview.html" destdir="${docs}" maxmemory="${junitMem}"> 1118 1118 <classpath refid="compile.classpath"/> … … 1131 1131 1132 1132 <target name="jar" 1133 depends="compile "1133 depends="compileAll" 1134 1134 description="Package up a Fortress distribution as a self-extracting jar."> 1135 1135 <tstamp> … … 1189 1189 </target> 1190 1190 1191 <target name="installer" depends="compile "1191 <target name="installer" depends="compileAll" 1192 1192 description="build a new installer as a jar"> 1193 1193 <delete dir="${installerDir}"/>

