source: other-projects/rsyntax-textarea/devel-packages/jflex-1.4.3/examples/standalone/build.xml@ 25584

Last change on this file since 25584 was 25584, checked in by davidb, 12 years ago

Initial cut an a text edit area for GLI that supports color syntax highlighting

File size: 584 bytes
Line 
1<project name="standalone" default="run">
2
3 <taskdef classname="JFlex.anttask.JFlexTask" name="jflex" />
4
5 <target name="run" depends="compile">
6 <java classname="Subst"> <arg line="sample.inp"/> </java>
7 </target>
8
9 <target name="compile" depends="jflex">
10 <javac srcdir="." destdir="."/>
11 </target>
12
13 <target name="jflex"> <jflex file="standalone.flex"/> </target>
14
15 <target name="clean">
16 <delete file="Subst.java"/>
17 <delete>
18 <fileset dir="." includes="**/*~"/>
19 <fileset dir="." includes="**/*.class"/>
20 </delete>
21 </target>
22
23</project>
Note: See TracBrowser for help on using the repository browser.