Clean our our native libraries when we run clean.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4863 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2007-11-07 01:57:04 +00:00
parent aa10f80b16
commit 0cd1be4728
+7 -2
View File
@@ -156,6 +156,10 @@
<!-- common clean tasks --> <!-- common clean tasks -->
<target name="common-clean"> <target name="common-clean">
<ant dir="tests" target="clean"/> <ant dir="tests" target="clean"/>
<!-- clean the native libraries -->
<exec dir="src/java/com/threerings/util/signal/${os.name}" executable="make">
<arg line="clean"/>
</exec>
</target> </target>
<!-- build the java class files --> <!-- build the java class files -->
@@ -171,8 +175,9 @@
<!-- build the native libraries --> <!-- build the native libraries -->
<target name="ncompile" depends="prepare"> <target name="ncompile" depends="prepare">
<echo level="info" message="Doing native compilation on ${os.name}..."/> <echo level="info" message="Doing native compilation on ${os.name}..."/>
<exec dir="src/java/com/threerings/util/signal/${os.name}" <exec dir="src/java/com/threerings/util/signal/${os.name}" executable="make">
executable="make"><arg line="install"/></exec> <arg line="install"/>
</exec>
</target> </target>
<!-- build the javadoc documentation --> <!-- build the javadoc documentation -->