diff options
author | tommy tomson <thomas.bierey@gmx.de> | 2012-03-02 04:58:37 +0100 |
---|---|---|
committer | tommy tomson <thomas.bierey@gmx.de> | 2012-03-02 04:58:37 +0100 |
commit | 1fac47a2470c392adc2f5a2201f618a804be5136 (patch) | |
tree | 0fc2c1a194989fab1948a2dff7f0e46af6facaa3 /build.xml | |
parent | 5183e737d0cb53aa9f380051ca130d010893009f (diff) | |
parent | 8207272fbc9cdc76988a2848552528e28951fe27 (diff) | |
download | volse-hubzilla-1fac47a2470c392adc2f5a2201f618a804be5136.tar.gz volse-hubzilla-1fac47a2470c392adc2f5a2201f618a804be5136.tar.bz2 volse-hubzilla-1fac47a2470c392adc2f5a2201f618a804be5136.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 38 |
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> |