Various enhancements to make life easier for someone getting started with

the library.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3100 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2004-08-27 02:41:39 +00:00
parent a9720fd905
commit 22b602f974
3 changed files with 25 additions and 14 deletions
+16
View File
@@ -9,6 +9,7 @@
<property name="app.name" value="narya"/>
<property name="deploy.dir" value="dist"/>
<property name="savedoc.dir" value="docs"/>
<property name="lib.version" value="1.0"/>
<!-- derived properties -->
<property name="javadoc.home" value="${deploy.dir}/docs"/>
@@ -209,4 +210,19 @@
</viztool>
</target>
<!-- creates a tarball for source distribution -->
<target name="distrib">
<echo message="Building ${lib.version} distribution..."/>
<echo message="You may want to stop and run 'ant savedoc' first."/>
<jar destfile="narya-${lib.version}.jar">
<fileset dir="..">
<exclude name="**/CVS"/>
<include name="narya/**"/>
<exclude name="narya/dist/**"/>
<exclude name="narya/code/**"/>
<exclude name="narya/*.jar"/>
</fileset>
</jar>
</target>
</project>