Let's call that ninstall since we don't actually compile anything.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4866 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2007-11-07 02:20:54 +00:00
parent 238da969c0
commit 6e901ec83a
+3 -3
View File
@@ -169,7 +169,7 @@
</target> </target>
<!-- build the native libraries --> <!-- build the native libraries -->
<target name="ncompile" depends="prepare"> <target name="ninstall" 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}" executable="make"> <exec dir="src/java/com/threerings/util/signal/${os.name}" executable="make">
<arg line="install"/> <arg line="install"/>
@@ -208,10 +208,10 @@
</target> </target>
<!-- a target for rebuilding everything --> <!-- a target for rebuilding everything -->
<target name="all" depends="clean,prepare,compile,ncompile,javadoc,tests,dist"/> <target name="all" depends="clean,prepare,compile,ninstall,javadoc,tests,dist"/>
<!-- builds our distribution files (war and jar) --> <!-- builds our distribution files (war and jar) -->
<target name="dist" depends="prepare,compile,procstream,ncompile,tests"> <target name="dist" depends="prepare,compile,procstream,ninstall,tests">
<!-- build our various jar files --> <!-- build our various jar files -->
<jar destfile="${deploy.dir}/${app.name}-base.jar"> <jar destfile="${deploy.dir}/${app.name}-base.jar">
<fileset dir="${classes.dir}" includes="com/threerings/NaryaLog**"/> <fileset dir="${classes.dir}" includes="com/threerings/NaryaLog**"/>