1 <?xml version="1.0" encoding="UTF-8"?>
3 <project name="friendica" default="test">
5 <!-- =================================== -->
7 <!-- this target runs all test files -->
8 <!-- =================================== -->
11 <!-- there are no tests by now, so, nothing to do -->
14 <!-- ===================================================== -->
15 <!-- Target: clean-doc -->
16 <!-- this target removes documentation from a previous run -->
17 <!-- ===================================================== -->
18 <target name="doc-clean">
19 <echo msg="Removing old documentation..." />
20 <delete dir="./doc/api/" />
21 <echo msg="Generate documentation directory..." />
22 <mkdir dir="./doc/api/" />
25 <!-- ====================================== -->
27 <!-- this target builds all documentation -->
28 <!-- ====================================== -->
29 <target name="doc" depends="doc-clean">
30 <echo msg="Building documentation..." />
31 <docblox title="Friendica API" destdir="./doc/api">
33 <include name="**/*.php" />