[Bprocessor-commit] model/src build.xml,1.4,1.5
Status: Pre-Alpha
Brought to you by:
henryml
|
From: Michael L. <he...@us...> - 2006-03-23 12:24:19
|
Update of /cvsroot/bprocessor/model/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26705/src Modified Files: build.xml Log Message: Simplified building Index: build.xml =================================================================== RCS file: /cvsroot/bprocessor/model/src/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.xml 18 Oct 2005 08:17:07 -0000 1.4 --- build.xml 23 Mar 2006 12:24:03 -0000 1.5 *************** *** 6,18 **** </fileset> <pathelement location="."/> ! <pathelement location="${build.code.dir}"/> </path> <target name="init"> ! <mkdir dir="${build.code.dir}"/> </target> <target name="compile" depends="dep"> ! <javac srcdir="${src.dir}" destdir="${build.code.dir}" deprecation="yes" debug="yes" includes="net/**"> --- 6,18 ---- </fileset> <pathelement location="."/> ! <pathelement location="${build.dir}"/> </path> <target name="init"> ! <mkdir dir="${build.dir}"/> </target> <target name="compile" depends="dep"> ! <javac srcdir="${src.dir}" destdir="${build.dir}" deprecation="yes" debug="yes" includes="net/**"> *************** *** 23,27 **** <target name="dep" depends="init"> <depend srcdir="${src.dir}" ! destdir="${build.code.dir}" cache="${build.dir}/depcache" closure="yes" --- 23,27 ---- <target name="dep" depends="init"> <depend srcdir="${src.dir}" ! destdir="${build.dir}" cache="${build.dir}/depcache" closure="yes" |