[Bprocessor-commit] bprocessor/src build.xml,NONE,1.1
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2010-12-03 10:12:19
|
Update of /cvsroot/bprocessor/bprocessor/src In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv16847/src Added Files: build.xml Log Message: --- NEW FILE: build.xml --- <project name="src" default="compile" basedir="."> <path id="build.path"> <fileset dir="${lib.dir}"> <include name="**/*.jar"/> </fileset> <pathelement location="."/> <pathelement location="${tools.dir}/antlr/antlr.jar"/> </path> <target name="init"> <mkdir dir="${build.dir}"/> </target> <target name="compile"> <javac srcdir="${src.dir}" destdir="${build.dir}" deprecation="yes" debug="yes" target="1.5" source="1.5" includes="net/**"> <classpath refid="build.path"/> </javac> </target> <target name="dep" depends="init"> <depend srcdir="${src.dir}" destdir="${build.dir}" cache="${build.dir}/depcache" closure="yes" /> </target> </project> |