gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] fenfire build.xml


From: Tuomas J. Lukka
Subject: [Gzz-commits] fenfire build.xml
Date: Tue, 25 Mar 2003 13:20:08 -0500

CVSROOT:        /cvsroot/fenfire
Module name:    fenfire
Changes by:     Tuomas J. Lukka <address@hidden>        03/03/25 13:20:08

Modified files:
        .              : build.xml 

Log message:
        Deps right - now compiles rmi correctly after ant clean

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/fenfire/fenfire/build.xml.diff?tr1=1.16&tr2=1.17&r1=text&r2=text

Patches:
Index: fenfire/build.xml
diff -u fenfire/build.xml:1.16 fenfire/build.xml:1.17
--- fenfire/build.xml:1.16      Tue Mar 25 13:17:58 2003
+++ fenfire/build.xml   Tue Mar 25 13:20:08 2003
@@ -15,12 +15,18 @@
             description="Compile and test Fenfire">
     </target>
 
-    <target name="compile">
-        <mkdir dir="${build}"/>
-       <javac srcdir="${src}" destdir="${build}">
-           <classpath refid="theClassPath"/>
-       </javac>
-    </target>
+    <target name="compile" depends="compilejava,compilermi"/>
+
+       <target name="compilejava">
+           <mkdir dir="${build}"/>
+           <javac srcdir="${src}" destdir="${build}">
+               <classpath refid="theClassPath"/>
+           </javac>
+       </target>
+
+       <target name="compilermi" depends="compilejava">
+           <rmic base="${build}" includes="**/PPActionsImpl*.class"/>
+       </target>
 
     <target name="test">
         <java classname="org.python.util.jython" fork="true"
@@ -47,10 +53,6 @@
            <arg value="${file}"/>
            <classpath refid="theClassPath"/>
        </java>
-    </target>
-
-    <target name="rmi" depends="compile">
-        <rmic base="${build}" includes="**/PPActionsImpl*.class"/>
     </target>
 
     <target name="jar" depends="clean,fenfire,jar-only"/>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]