summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarvey Harrison <[email protected]>2013-06-15 13:45:16 -0700
committerHarvey Harrison <[email protected]>2013-06-15 13:45:16 -0700
commitbe715bd9b6747ed0d1ec1b7b3bfb2da8a213d0bd (patch)
tree324a6f4d68941ab06e11f0fb53a915d98d5cd92b
parent504648696d6099f292105027da2a49f185a9b31a (diff)
vecmath: make the default target build everything
Signed-off-by: Harvey Harrison <[email protected]>
-rw-r--r--build.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 2d1ba1c..f33f185 100644
--- a/build.xml
+++ b/build.xml
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
-<project name="vecmath" basedir="." default="jar">
+<project name="vecmath" basedir="." default="all">
<property name="src.dir" location="src"/>
<property name="build.dir" location="build"/>
@@ -79,4 +79,5 @@
</javadoc>
</target>
+ <target name="all" depends="jar,docs" />
</project>