Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
<?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>
|
|
|