aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
blob: 83c53002643eb5f668d7cfdd6e11076a25b3f17d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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>