Update of /cvsroot/bprocessor/gl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16535
Modified Files:
build.xml
Log Message:
Added a "fast" target that builds with stylecheck
Index: build.xml
===================================================================
RCS file: /cvsroot/bprocessor/gl/build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** build.xml 10 Aug 2005 12:42:46 -0000 1.3
--- build.xml 29 Sep 2005 21:00:37 -0000 1.4
***************
*** 90,94 ****
</target>
! <target name="compile" depends="checkstyle,copylib">
<ant dir="src" target="compile"/>
</target>
--- 90,94 ----
</target>
! <target name="compile" depends="copylib">
<ant dir="src" target="compile"/>
</target>
***************
*** 125,129 ****
</target>
! <target name="dist" depends="jar">
<copy todir="${basedir}/../build/dist/plugin">
<fileset dir="${dist.dir}">
--- 125,137 ----
</target>
! <target name="dist" depends="checkstyle,jar">
! <copy todir="${basedir}/../build/dist/plugin">
! <fileset dir="${dist.dir}">
! <include name="**/*"/>
! </fileset>
! </copy>
! </target>
!
! <target name="fast" depends="jar">
<copy todir="${basedir}/../build/dist/plugin">
<fileset dir="${dist.dir}">
|