diff options
author | Harvey Harrison <[email protected]> | 2013-06-15 13:45:16 -0700 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2013-06-15 13:45:16 -0700 |
commit | be715bd9b6747ed0d1ec1b7b3bfb2da8a213d0bd (patch) | |
tree | 324a6f4d68941ab06e11f0fb53a915d98d5cd92b /build.xml | |
parent | 504648696d6099f292105027da2a49f185a9b31a (diff) |
vecmath: make the default target build everything
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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> |