aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorMichael <icarus@dabo.de>2012-03-02 10:34:18 +0100
committerMichael <icarus@dabo.de>2012-03-02 10:34:18 +0100
commit20817b4b8ea8b7d074d57a3fd752862931cf711c (patch)
treefd0344bd209043c4d8191ef68dceb1499cf7dd9a /build.xml
parent52ea842e872cc004fd012496c828e9fb6186bec9 (diff)
parentf1bf6dcdfb89bf3c21e498ba3d76c600dafed934 (diff)
downloadvolse-hubzilla-20817b4b8ea8b7d074d57a3fd752862931cf711c.tar.gz
volse-hubzilla-20817b4b8ea8b7d074d57a3fd752862931cf711c.tar.bz2
volse-hubzilla-20817b4b8ea8b7d074d57a3fd752862931cf711c.zip
Merge remote branch 'upstream/master'
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/build.xml b/build.xml
new file mode 100644
index 000000000..83c530026
--- /dev/null
+++ b/build.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project name="friendica" default="test">
+
+ <!-- =================================== -->
+ <!-- Target: test -->
+ <!-- this target runs all test files -->
+ <!-- =================================== -->
+
+ <target name="test">
+ <!-- there are no tests by now, so, nothing to do -->
+ </target>
+
+ <!-- ===================================================== -->
+ <!-- Target: clean-doc -->
+ <!-- this target removes documentation from a previous run -->
+ <!-- ===================================================== -->
+ <target name="doc-clean">
+ <echo msg="Removing old documentation..." />
+ <delete dir="./doc/api/" />
+ <echo msg="Generate documentation directory..." />
+ <mkdir dir="./doc/api/" />
+ </target>
+
+ <!-- ====================================== -->
+ <!-- Target: doc -->
+ <!-- this target builds all documentation -->
+ <!-- ====================================== -->
+ <target name="doc" depends="doc-clean">
+ <echo msg="Building documentation..." />
+ <docblox title="Friendica API" destdir="./doc/api">
+ <fileset dir=".">
+ <include name="**/*.php" />
+ </fileset>
+ </docblox>
+ </target>
+
+</project>