Changeset 1039
- Timestamp:
- 12/03/07 08:58:52 (1 year ago)
- Files:
-
- trunk/ProjectFortress/build.xml (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ProjectFortress/build.xml
r1037 r1039 79 79 checkParserUptodate, clean, compile, compileCommon, compileCommonLint, 80 80 compileLint, doc, help, init, interpreter-jar, makeAST, operatorsGen, 81 parser, reportNotPassing, systemProperties, test, testAll, testDemos,81 fortressparser, preparser, parser, reportNotPassing, systemProperties, test, testAll, testDemos, 82 82 testNotPassing, testOnly testCruiseControl interpreter"/> 83 83 </target> … … 335 335 description="Package up the interpreter in a jar."> 336 336 <jar 337 destfile="../ components/fortress/FORTRESS/lib/interpreter.jar"337 destfile="../bin/interpreter.jar" 338 338 basedir="${build}" 339 339 includes="**/*"/> … … 513 513 <srcfiles dir="${parser}" includes="**/*.rats"/> 514 514 </uptodate> 515 <!--516 515 <uptodate targetfile="${preparser}/PreFortress.java"> 517 516 <srcfiles dir="${preparser}" includes="**/*.rats"/> 518 517 </uptodate> 519 -->520 518 </and> 521 519 </condition> … … 545 543 classname="xtc.parser.Rats" 546 544 classpath="${xtc}/xtc.jar"> 547 <arg value="-html"/>548 <arg value="-instantiated"/>549 <arg value=" PreFortress.rats"/>545 <arg value="-in"/> 546 <arg value="${src}"/> 547 <arg value="Fortress.rats"/> 550 548 </java> 551 549 </target> … … 559 557 classname="xtc.parser.Rats" 560 558 classpath="${xtc}/xtc.jar"> 561 <arg value="-html"/>562 <arg value="-instantiated"/>559 <arg value="-in"/> 560 <arg value="${src}"/> 563 561 <arg value="PreFortress.rats"/> 564 562 </java> … … 568 566 depends="checkParserUptodate" 569 567 description="Fortress Parser"> 570 <echo message="Rebuilding parser..."/>568 <echo message="Rebuilding parser..."/> 571 569 <java fork="yes" 572 570 dir="${parser}" 573 571 classname="xtc.parser.Rats" 574 572 classpath="${xtc}/xtc.jar"> 573 <arg value="-in"/> 574 <arg value="${src}"/> 575 575 <arg value="Fortress.rats"/> 576 </java> 577 <echo message="Rebuilding the preparser..."/> 578 <java fork="yes" 579 dir="${preparser}" 580 classname="xtc.parser.Rats" 581 classpath="${xtc}/xtc.jar"> 582 <arg value="-in"/> 583 <arg value="${src}"/> 584 <arg value="PreFortress.rats"/> 576 585 </java> 577 586 </target>
