-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
phing.xml
30 lines (25 loc) · 876 Bytes
/
phing.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<project name="IcingaEditor" default="deb" basedir=".">
<target name="prepare">
<mkdir dir="docs"/>
</target>
<target name="docs">
<phpdoc title="Phing Example" destdir="docs" output="HTML:Smarty:PHP" linksource="true" quiet="true">
<fileset dir="src">
<include name="*.php"/>
</fileset>
</phpdoc>
</target>
<target name="clean">
<delete dir="doc/resources"/>
<delete dir="debian/icinga-editor" />
</target>
<target name="deb">
<exec command="./deb-package.sh > /tmp/build.txt" dir="debian" escape="false" />
</target>
</project>